:root {
    --color-bg: #ffffff;
    --color-text: #262626;
    --color-text-secondary: #666666;
    --color-accent: #FFD700;
    --font-base: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --font-Destaque: "Italianno", cursive;
    --font-title: 'Pinyon Script', cursive;

}

a,
a:hover {
    text-decoration: none;
}


.texto-dif {
    -webkit-mask-image: linear-gradient(-75deg, #050505 50%, #fff8dc 50%, #d4af37 70%);
    -webkit-mask-size: 200%;
    position: relative;
    color: var(--color-bg);
    font-size: 36px;
    line-height: 30px;
    display: block;
    animation: shine 3s infinite;

}

.TitleDesk {
    font-family: var(--font-Destaque);
    font-weight: 500;
    font-style: normal;
    font-optical-sizing: auto;

}

.Animation-Title {
    position: relative;
    display: inline-block;
    font-size: 36px;
    /* Ajuste conforme necessário */
    padding-bottom: 10px;
    /* Espaço entre o texto e a borda */
}

.Animation-Title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    /* A altura máxima da borda */
    background: linear-gradient(to right,
            transparent 0%,
            #FFD700 50%,
            /* Cor dourada no meio */
            transparent 100%);
    /* A borda afina nos extremos */

}

/* .headerTop {
    display: flex;
    background-color: #262626a6;
    padding: 25px 20px;
    color: white;
}

.headerTop div {
    width: 50%;
    text-align: center
} */

.btnTel {
    padding: 10px 15px;
    background-color: red;
    color: white;
    border-radius: 30px;
    border: none;
    font-size: 0.85em;
}

.btnTel:hover {
    cursor: pointer;
    transform: scale(0.95);
    transition: 0.3s ease;
}

:root {
    --black: #111;
    --white: #fff;
    --gray-light: #f8f8f8;
    --hover-bg: #000;
    --hover-text: #fff;
    --font-title: 'Playfair Display', serif;
    --font-body: 'Helvetica Neue', sans-serif;
}

.container-cards {
    padding: 50px 30px;
    background-color: var(--white);
    color: var(--black);
}

.container-cards .titulo h3 {
    font-family: var(--font-body);
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
    font-size: 25px;
}

.grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    /* sempre 3 colunas */
    gap: 30px;
    justify-content: center;
    /* centraliza os itens no eixo horizontal */
    align-items: center;
    /* centraliza os itens no eixo vertical */
}

.card {
    background-color: var(--gray-light);
    overflow: hidden;
    border-bottom: 1px solid #ccc;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
    height: 500px;
    /* define altura uniforme do card */
}

.card:hover {
    background-color: var(--hover-bg);
}

.card img {
    width: 100%;
    height: 80%;
    /* controla quanto da altura o img ocupa */
    object-fit: cover;
    display: block;
    object-position: center bottom;
}

.card .desc {
    padding: 20px;
    font-family: var(--font-body);
    font-size: 1.1rem;
    text-align: center;
    background-color: var(--white);
    transition: background 0.3s ease, color 0.3s ease;
    height: 20%;
    /* ocupa o resto da altura */

}

.card:hover .desc {
    background-color: var(--hover-bg);
    color: var(--hover-text);
}

.produto-destaque {
    margin: 32px 0;
}

.texto-destaque {
    text-align: center;
    margin-bottom: 24px;
}

.banner-destaque {
    display: flex;
    gap: 32px;
    align-items: stretch;
    background: #f7f7f7;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
    flex-wrap: wrap;
}

.banner-imagens {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
    align-items: center;
    background: var(--color-text);
    padding: 24px 12px;
    box-shadow: 0 2px 16px rgba(231, 163, 15, 0.07);
    flex: 1 1 320px;


}

.banner-imagens img {
    width: 90%;
    max-width: 800px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    margin: 15px;
}

.banner-descricao {
    flex: 1 1 320px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.banner-descricao h2 {
    font-size: 4rem;
    margin-bottom: 8px;
    color: #222;
    border-bottom: 1px solid var(--color-text);
}

.banner-descricao .info-destaque {
    font-weight: 600;
    color: #666;
    margin-bottom: 12px;
}

.banner-descricao p {
    margin-bottom: 12px;
}

.banner-descricao ul {
    list-style: none;
    padding: 0;
    margin: 0 0 10px 0;
    font-size: 1rem;
    color: #444;
}

.banner-descricao ul li {
    margin-bottom: 4px;
}

.banner-descricao .info-extra {
    font-size: 0.95rem;
    color: #888;
}



@media (max-width: 950px) {
    .banner-imagens {
        flex-direction: column;
        align-items: center;
    }

    .banner-imagens img {
        width: 80vw;
        max-width: 400px;
    }

    .banner-descricao h2 {
        font-size: 2.5rem;
    }
}