/* ============================================================
   Angeli Carnes — Tema Frigorífico Institucional
   Paleta: Borgonha · Carvão · Creme Quente · Ouro
   ============================================================ */

/* ============================================================
   VARIÁVEIS
   ============================================================ */
:root {
    /* Paleta principal (extraída do logotipo) */
    --burgundy: #8B1A1A;
    /* vermelho/borgonha — cor "ANGELI" */
    --burgundy2: #6E1414;
    /* hover */
    --burgundy3: #A52020;
    /* variação clara */
    --charcoal: #1C1C1C;
    /* carvão escuro — cor "CARNES" */
    --charcoal2: #111111;
    --gold: #C8A452;
    /* ouro quente — acento */
    --gold2: #A8863C;
    --cream: #F5F1EB;
    /* fundo principal */
    --cream2: #EDE8DF;
    /* fundo secundário */
    --muted: #6B5A4E;
    /* texto suave */
    --border: #D9D1C5;
    --white: #FFFFFF;

    /* Aliases para compatibilidade com blocos catalogo-default */
    --brand: var(--burgundy);
    --brand-hover: var(--burgundy2);
    --bg: var(--cream);
    --text: var(--charcoal);
    --surface: var(--cream2);
    --success: #16A34A;
    --warning: #F59E0B;
    --danger: #DC2626;

    /* Tipografia */
    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Lato', system-ui, -apple-system, sans-serif;

    /* Espaçamento (8pt — compatível com catalogo-default) */
    --space-1: 0.5rem;
    --space-2: 1rem;
    --space-3: 1.5rem;
    --space-4: 2rem;
    --space-5: 2.5rem;
    --space-6: 3rem;
    --space-8: 4rem;
    --space-10: 5rem;
    --space-12: 6rem;

    /* Layout */
    --container: 1160px;
    --gap: 2rem;
    --section: 5rem;

    /* Bordas e sombras */
    --radius: 6px;
    --radius-sm: 4px;
    --radius-lg: 10px;
    --shadow: 0 2px 12px rgba(0, 0, 0, .09);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, .15);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, .07);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--charcoal);
    background: var(--cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: var(--burgundy);
    text-decoration: none;
    transition: color .2s;
}

a:hover {
    color: var(--burgundy2);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--charcoal);
    margin-bottom: var(--space-2);
}

h1 {
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
}

h3 {
    font-size: clamp(1.2rem, 2vw, 1.6rem);
}

h4 {
    font-size: clamp(1.1rem, 1.8vw, 1.3rem);
}

p {
    margin-bottom: 1rem;
}

p:last-child {
    margin-bottom: 0;
}

ul {
    margin-left: 15px;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: var(--section) 0;
}

.section--cream2 {
    background: var(--cream2);
}

.section--white {
    background: var(--white);
}

.section--dark {
    background: var(--charcoal);
    color: var(--white);
}

.section--burgundy {
    background: var(--burgundy);
    color: var(--white);
}

.section__header {
    text-align: center;
    margin-bottom: 3rem;
}

.section__eyebrow {
    font-family: var(--font-body);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .6rem;
    display: block;
}

.section__title {
    font-family: var(--font-heading);
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: .5rem;
}

.section--dark .section__title,
.section--burgundy .section__title {
    color: var(--white);
}

.section__subtitle {
    font-size: 1rem;
    color: var(--muted);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.75;
}

.divider-gold {
    width: 48px;
    height: 2px;
    background: var(--gold);
    margin: .75rem auto 0;
}

/* ============================================================
   GRID
   ============================================================ */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap);
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gap);
}

/* Aliases catalogo-default */
.grid {
    display: grid;
    gap: var(--gap);
}

.grid.grid-cols-1 { grid-template-columns: 1fr; }
.grid.grid-cols-2 { grid-template-columns: 1fr 1fr; }
.grid.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) {
    .grid.grid-cols-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .grid-3,
    .grid-4,
    .grid.grid-cols-3 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
    .grid.grid-cols-2 { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .grid-2,
    .grid-3,
    .grid-4,
    .grid.grid-cols-3,
    .grid.grid-cols-4 { grid-template-columns: 1fr; }
}

/* Utilidades herdadas de catalogo-default */
.text-center  { text-align: center; }
.mt-2         { margin-top: var(--space-2); }
.mt-3         { margin-top: var(--space-3); }
.mt-8         { margin-top: var(--space-8); }
.flex         { display: flex; }
.gap-3        { gap: var(--space-3); }
.items-center { align-items: center; }
.ms-2         { margin-left: .5rem; }
.col-span-4   { grid-column: span 4; }
.col-span-3   { grid-column: span 3; }

/* ============================================================
   BOTÕES
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-family: var(--font-body);
    font-size: .84rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    padding: .75rem 1.75rem;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all .22s;
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--burgundy);
    color: var(--white);
    border-color: var(--burgundy);
}

.btn-primary:hover {
    background: var(--burgundy2);
    border-color: var(--burgundy2);
    color: var(--white);
}

.btn-secondary {
    background: var(--cream2);
    color: var(--charcoal);
    border-color: var(--border);
}

.btn-secondary:hover {
    background: var(--border);
    color: var(--charcoal);
}

.btn-outline {
    background: transparent;
    color: var(--burgundy);
    border-color: var(--burgundy);
}

.btn-outline:hover {
    background: var(--burgundy);
    color: var(--white);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, .7);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, .15);
    color: var(--white);
    border-color: var(--white);
}

.btn-gold {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

.btn-gold:hover {
    background: var(--gold2);
    border-color: var(--gold2);
    color: var(--white);
}

.btn-wa {
    background: #25D366;
    color: #fff;
    border-color: #25D366;
    font-size: .95rem;
    padding: .9rem 2rem;
}

.btn-wa:hover {
    background: #1EAE54;
    border-color: #1EAE54;
    color: #fff;
}

.btn-sm {
    font-size: .78rem;
    padding: .5rem 1.1rem;
}

.btn-lg {
    font-size: .95rem;
    padding: 1rem 2.25rem;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    transition: box-shadow .25s;
}

.site-header.scrolled {
    box-shadow: var(--shadow);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 1rem;
}

.site-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--burgundy);
    letter-spacing: .02em;
    flex-shrink: 0;
    line-height: 1;
    text-decoration: none;
}

.site-logo:hover {
    color: var(--burgundy2);
}

.site-logo img {
    height: 52px;
    width: auto;
    object-fit: contain;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.site-nav a {
    font-family: var(--font-body);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
    padding-bottom: 2px;
    border-bottom: 2px solid transparent;
    transition: color .2s, border-color .2s;
}

.site-nav a:hover,
.site-nav a.active {
    color: var(--charcoal);
    border-bottom-color: var(--burgundy);
}

.nav-wa-btn {
    display: inline-flex !important;
    align-items: center;
    gap: .3rem;
    font-family: var(--font-body);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--burgundy) !important;
    background: transparent;
    padding: .4rem .9rem !important;
    border-radius: var(--radius);
    border: 1.5px solid var(--burgundy) !important;
    cursor: pointer;
    transition: background .2s, color .2s;
    text-decoration: none !important;
    white-space: nowrap;
    line-height: 1;
}

.nav-wa-btn:hover {
    background: var(--burgundy) !important;
    color: var(--white) !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.hamburger span {
    display: block;
    height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: all .25s;
    width: 100%;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .site-nav {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: .5rem 0;
        box-shadow: var(--shadow);
        z-index: 99;
    }

    .site-nav.open {
        display: flex;
    }

    .site-nav li {
        width: 100%;
    }

    .site-nav a {
        display: block;
        padding: .75rem 1.5rem;
        border-bottom: none;
        width: 100%;
        font-size: .82rem;
    }

    .nav-wa-btn {
        margin: .5rem 1.5rem !important;
        padding: .6rem 1.1rem !important;
    }

    .site-header {
        position: sticky;
    }

    nav[role="navigation"] {
        position: relative;
    }
}

/* ============================================================
   HERO PRINCIPAL
   ============================================================ */
.hero-main {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: var(--charcoal);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-main__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg,
            rgba(17, 17, 17, .82) 0%,
            rgba(0, 0, 0, .55) 60%,
            rgba(17, 17, 17, .70) 100%);
    z-index: 1;
}

.hero-main__content {
    position: relative;
    z-index: 2;
    max-width: var(--container);
    margin: 0 auto;
    padding: 5rem 1.5rem;
    width: 100%;
}

.hero-main__eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.hero-main__title {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    max-width: 680px;
    margin-bottom: 1.25rem;
}

.hero-main__desc {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: rgba(255, 255, 255, .80);
    max-width: 540px;
    line-height: 1.75;
    margin-bottom: 2.25rem;
}

.hero-main__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

@media (max-width: 600px) {
    .hero-main {
        min-height: 70vh;
    }

    .hero-main__actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-main__actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
    background: var(--burgundy);
    padding: 1.1rem 0;
}

.trust-bar__grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-bar__item {
    display: flex;
    align-items: center;
    gap: .6rem;
    color: var(--white);
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.trust-bar__item i {
    font-size: 1.1rem;
    color: var(--gold);
}

@media (max-width: 600px) {
    .trust-bar__grid {
        gap: 1.5rem;
        justify-content: flex-start;
    }
}

/* ============================================================
   CTA WHATSAPP
   ============================================================ */
.cta-wa {
    background: var(--charcoal2);
}

.cta-wa .section__subtitle {
    color: rgba(255, 255, 255, .72);
}

/* ============================================================
   CARDS (usados pelos blocos catalogo-default)
   ============================================================ */
.card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-4);
    box-shadow: var(--shadow-sm);
    transition: box-shadow .22s, transform .22s;
}

.card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

/* ============================================================
   PRODUCT CARDS (portfólio de produtos)
   ============================================================ */
.product-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow .22s, transform .22s;
}

.product-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.product-card__image-container {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.product-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
}

.product-card:hover .product-card__image {
    transform: scale(1.04);
}

.product-card__badge {
    position: absolute;
    top: .75rem;
    left: .75rem;
    background: var(--burgundy);
    color: #fff;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: .25rem .6rem;
    border-radius: var(--radius-sm);
}

.product-card__content {
    padding: var(--space-3);
}

.product-card__category {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .35rem;
}

.product-card__title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: .35rem;
}

.product-card__title a {
    color: var(--charcoal);
}

.product-card__title a:hover {
    color: var(--burgundy);
}

.product-card__sku {
    font-size: .75rem;
    color: var(--muted);
    margin-bottom: .5rem;
}

.product-card__price {
    font-size: .95rem;
    font-weight: 700;
    color: var(--burgundy);
    margin-bottom: .75rem;
}

.product-card__price del {
    font-weight: 400;
    color: var(--muted);
}

.product-card__actions {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
}

.product-card__wishlist-btn {
    position: absolute;
    top: .75rem;
    right: .75rem;
    background: rgba(255, 255, 255, .9);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s;
}

.product-card__wishlist-btn:hover {
    background: var(--white);
}

/* ============================================================
   BLOCO ABOUT MVV (home onepage)
   ============================================================ */
.sobre-mvv-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 3.5rem;
}

.sobre-mvv-top--no-img {
    grid-template-columns: 1fr;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3.5rem;
}

.sobre-mvv-img img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    max-height: 480px;
}

.sobre-mvv-heading {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 600;
    color: var(--charcoal);
    margin: .5rem 0 1.25rem;
}

.sobre-mvv-desc {
    color: var(--muted);
    font-size: .97rem;
    line-height: 1.85;
}

.sobre-mvv-desc p { margin-bottom: 1rem; }
.sobre-mvv-desc p:last-child { margin-bottom: 0; }

.sobre-mvv-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
}

@media (max-width: 860px) {
    .sobre-mvv-top { grid-template-columns: 1fr; gap: 2rem; }
    .sobre-mvv-img { order: -1; }
    .sobre-mvv-img img { max-height: 320px; }
    .sobre-mvv-cards { grid-template-columns: 1fr; }
}

/* ============================================================
   BLOCO DIFERENCIAIS
   ============================================================ */
.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.diferencial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.25rem 1.75rem;
    border-bottom: 3px solid var(--burgundy);
    box-shadow: var(--shadow-sm);
    transition: box-shadow .22s, transform .22s;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: .9rem;
}

.diferencial-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.diferencial-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(139,26,26,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.diferencial-card__icon i {
    font-size: 1.4rem;
    color: var(--burgundy);
}

.diferencial-card__title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--charcoal);
    line-height: 1.3;
    margin: 0;
}

.diferencial-card__desc {
    font-size: .92rem;
    color: var(--muted);
    line-height: 1.75;
    margin: 0;
}

@media (max-width: 860px) {
    .diferenciais-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
    .diferenciais-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   SECTION SERVICES (blocos de serviços)
   ============================================================ */
.servicos .card {
    text-align: center;
}

.servicos .card h3 {
    font-size: 1.1rem;
    color: var(--charcoal);
    margin-bottom: .5rem;
}

.servicos .card p {
    font-size: .92rem;
    color: var(--muted);
}

.servicos .card i[class*="fa-"] {
    color: var(--burgundy) !important;
}

/* ============================================================
   SECTION METRICS
   ============================================================ */
.metricas {
    background: var(--charcoal);
}

.metricas .section__title {
    color: var(--white);
}

.metricas .text-center p {
    color: rgba(255, 255, 255, .7);
    font-size: .9rem;
}

.metricas [style*="font-size:clamp"] {
    color: var(--gold) !important;
    font-family: var(--font-heading);
}

.metricas i {
    color: var(--gold) !important;
}

/* ============================================================
   SECTION ABOUT
   ============================================================ */
.sobre img {
    max-height: 600px;
    width: auto !important;
    max-width: 100%;
    border-radius: var(--radius-lg);
}

.mvv i {
    color: var(--burgundy);
    font-size: 2.2rem;
}

/* ============================================================
   BLOCO TESTIMONIALS / DEPOIMENTOS
   ============================================================ */
.depoimento-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    box-shadow: var(--shadow-sm);
    border-top: 3px solid var(--gold);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
}

.depoimento-card__quote i {
    font-size: 1.5rem;
    color: var(--gold);
    opacity: .7;
}

.depoimento-card__text {
    font-size: .95rem;
    color: var(--muted);
    line-height: 1.8;
    font-style: italic;
    flex: 1;
    margin: 0;
}

.depoimento-card__author {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-top: .5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.depoimento-card__photo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.depoimento-card__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--cream2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.depoimento-card__avatar i { color: var(--border); font-size: 1rem; }

.depoimento-card__name {
    display: block;
    font-size: .9rem;
    font-weight: 700;
    color: var(--charcoal);
}

.depoimento-card__company {
    display: block;
    font-size: .78rem;
    color: var(--burgundy);
    font-weight: 600;
    letter-spacing: .04em;
    margin-top: .1rem;
}

.depoimentos-pagination {
    margin-top: 2rem;
    text-align: center;
}

.depoimentos-section .swiper-pagination-bullet        { background: var(--burgundy); opacity: .35; }
.depoimentos-section .swiper-pagination-bullet-active { opacity: 1; }

/* ============================================================
   SECTION TEAM
   ============================================================ */
.team .card {
    text-align: center;
}

.team .card img {
    border-radius: 50%;
    width: 96px;
    height: 96px;
    object-fit: cover;
    margin: 0 auto var(--space-2);
}

/* ============================================================
   SECTION CLIENTES / PARCEIROS
   ============================================================ */
.clientes img {
    max-height: 52px;
    width: auto;
    filter: grayscale(1) opacity(.6);
    transition: filter .25s;
}

.clientes img:hover {
    filter: grayscale(0) opacity(1);
}

/* ============================================================
   SECTION DIFERENCIAIS
   ============================================================ */
.diferenciais i {
    color: var(--burgundy) !important;
}

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-section {
    background: var(--burgundy);
    text-align: center;
    padding: var(--section) 0;
}

.cta-section h2 {
    color: var(--white);
}

.cta-section p {
    color: rgba(255, 255, 255, .8);
    max-width: 520px;
    margin: 0 auto var(--space-4);
}

/* ============================================================
   BLOCO FAQ
   ============================================================ */
.faq-section { background: var(--charcoal); }

.faq-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.faq-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700;
    color: var(--white);
    margin: .5rem 0 .75rem;
}

.faq-section .section__eyebrow { color: var(--gold); }

.faq-intro {
    font-size: .95rem;
    color: rgba(255,255,255,.55);
    max-width: 280px;
    line-height: 1.7;
    margin: 0;
    text-align: right;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.faq-item {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: background .2s, border-color .2s;
}

.faq-item[open] {
    background: rgba(255,255,255,.07);
    border-color: var(--burgundy);
}

.faq-item__question {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.35rem 1.5rem;
    cursor: pointer;
    list-style: none;
    user-select: none;
}

.faq-item__question::-webkit-details-marker { display: none; }

.faq-item__num {
    font-family: var(--font-heading);
    font-size: .85rem;
    font-weight: 700;
    color: var(--burgundy);
    flex-shrink: 0;
    width: 28px;
    opacity: .8;
}

.faq-item[open] .faq-item__num { opacity: 1; }

.faq-item__text {
    flex: 1;
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255,255,255,.88);
    line-height: 1.4;
}

.faq-item[open] .faq-item__text { color: var(--white); }

.faq-item__toggle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .2s, border-color .2s;
}

.faq-item[open] .faq-item__toggle {
    background: var(--burgundy);
    border-color: var(--burgundy);
}

.faq-item__toggle i {
    font-size: .7rem;
    color: rgba(255,255,255,.7);
    transition: opacity .2s;
}

.faq-item[open] .faq-item__toggle i { color: var(--white); }

/* Mostrar/ocultar ícones +/- */
.faq-item .faq-icon-minus        { display: none; }
.faq-item[open] .faq-icon-plus   { display: none; }
.faq-item[open] .faq-icon-minus  { display: block; }

.faq-item__answer {
    padding: 0 1.5rem 1.35rem calc(1.5rem + 28px + 1.25rem);
}

.faq-item__answer-inner {
    font-size: .95rem;
    color: rgba(255,255,255,.62);
    line-height: 1.8;
    border-top: 1px solid rgba(255,255,255,.07);
    padding-top: 1rem;
}

.faq-item__answer-inner p { margin-bottom: .5rem; }
.faq-item__answer-inner p:last-child { margin-bottom: 0; }

@media (max-width: 640px) {
    .faq-header { flex-direction: column; align-items: flex-start; }
    .faq-intro { text-align: left; max-width: 100%; }
    .faq-item__answer { padding-left: 1.5rem; }
}

/* ============================================================
   BOTÃO FLUTUANTE WHATSAPP
   ============================================================ */
.wa-float {
    position: fixed;
    bottom: 1.75rem;
    right: 1.75rem;
    z-index: 999;
    width: 58px;
    height: 58px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 4px 16px rgba(37,211,102,.45);
    text-decoration: none;
    transition: transform .2s, box-shadow .2s;
}

.wa-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37,211,102,.6);
    color: #fff;
}

/* Anel pulsante para chamar atenção */
.wa-float::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #25D366;
    animation: wa-pulse 2.2s ease-out infinite;
    z-index: -1;
}

@keyframes wa-pulse {
    0%   { transform: scale(1);   opacity: .6; }
    70%  { transform: scale(1.55); opacity: 0; }
    100% { transform: scale(1.55); opacity: 0; }
}

/* Esconde badge reCAPTCHA v3 (texto de atribuição está no formulário) */
.grecaptcha-badge { visibility: hidden !important; }

/* ============================================================
   WISHLIST TRIGGER (header)
   ============================================================ */
.wishlist-trigger {
    position: relative;
    background: none;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--charcoal);
    font-size: 1rem;
    transition: border-color .2s, color .2s;
    flex-shrink: 0;
}
.wishlist-trigger:hover { border-color: var(--burgundy); color: var(--burgundy); }

.wishlist-trigger__badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--burgundy);
    color: #fff;
    font-size: .65rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* ============================================================
   WISHLIST DRAWER (off-canvas)
   ============================================================ */
.wishlist-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 200;
}
.wishlist-overlay.open { display: block; }

.wishlist-drawer {
    position: fixed;
    top: 0;
    right: -420px;
    width: 380px;
    max-width: 95vw;
    height: 100%;
    background: var(--white);
    z-index: 201;
    display: flex;
    flex-direction: column;
    box-shadow: -4px 0 24px rgba(0,0,0,.12);
    transition: right .3s ease;
}
.wishlist-drawer.open { right: 0; }

.wishlist-drawer__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
}
.wishlist-drawer__title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--charcoal);
    display: flex;
    align-items: center;
    gap: .5rem;
    margin: 0;
}
.wishlist-drawer__close {
    background: none;
    border: none;
    font-size: 1.1rem;
    color: var(--muted);
    cursor: pointer;
    padding: .25rem;
    transition: color .2s;
}
.wishlist-drawer__close:hover { color: var(--charcoal); }

.wishlist-drawer__content {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 1.5rem;
}

.wishlist-drawer__footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--border);
    flex-shrink: 0;
    background: var(--cream);
}
.wishlist-drawer__totals { margin-bottom: .75rem; }
.wishlist-drawer__total-row {
    display: flex;
    justify-content: space-between;
    font-size: .875rem;
    color: var(--charcoal);
    margin-bottom: .3rem;
}

/* Wishlist item */
.wishlist-item {
    display: flex;
    gap: .75rem;
    align-items: flex-start;
    padding: .75rem 0;
    border-bottom: 1px solid var(--border);
}
.wishlist-item:last-child { border-bottom: none; }

.wishlist-item__image {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: var(--radius);
    flex-shrink: 0;
    background: var(--cream2);
}
.wishlist-item__content { flex: 1; min-width: 0; }
.wishlist-item__title { font-size: .875rem; font-weight: 600; color: var(--charcoal); margin-bottom: .15rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.wishlist-item__sku { font-size: .75rem; color: var(--muted); }
.wishlist-item__price { font-size: .875rem; color: var(--burgundy); font-weight: 700; margin-top: .2rem; }

.wishlist-item__actions { display: flex; flex-direction: column; align-items: flex-end; gap: .4rem; flex-shrink: 0; }
.wishlist-item__quantity {
    width: 52px;
    padding: .2rem .4rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: .8rem;
    text-align: center;
}
.wishlist-item__remove {
    background: none;
    border: none;
    font-size: .72rem;
    color: var(--muted);
    cursor: pointer;
    text-decoration: underline;
    padding: 0;
    transition: color .2s;
}
.wishlist-item__remove:hover { color: var(--danger); }

/* Card sem foto — placeholder SVG já tem fundo creme, garantir aspect-ratio */
.product-card__image[src*="placeholder-product"] {
    object-fit: contain;
    background: var(--cream2);
    padding: 1rem;
}

/* product card wishlist btn active state */
.product-card__wishlist-btn.active i { font-weight: 900; color: var(--burgundy); }
.product-card__wishlist-btn.active { background: rgba(139,26,26,.08); }

/* ============================================================
   TOAST
   ============================================================ */
#toast-container {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    pointer-events: none;
}

.toast {
    background: var(--charcoal);
    color: var(--white);
    padding: .7rem 1.25rem;
    border-radius: var(--radius-lg);
    font-size: .875rem;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transform: translateX(1rem);
    transition: opacity .25s, transform .25s;
    pointer-events: auto;
    max-width: 320px;
}
.toast.show { opacity: 1; transform: translateX(0); }
.toast-success { border-left: 3px solid #22c55e; }
.toast-warning { border-left: 3px solid var(--gold); }
.toast-error   { border-left: 3px solid var(--danger); }
.toast-info    { border-left: 3px solid var(--burgundy); }

/* ============================================================
   PÁGINA CONTATO
   ============================================================ */
.contact-layout {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info__heading {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 2rem;
}

.contact-info__list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-info__item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.1rem 1.25rem;
    background: var(--cream);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    text-decoration: none;
    transition: border-color .2s, box-shadow .2s;
    color: inherit;
}

.contact-info__item:hover {
    border-color: var(--burgundy);
    box-shadow: var(--shadow-sm);
    color: inherit;
}

.contact-info__item--highlight {
    border-color: rgba(37,211,102,.3);
    background: rgba(37,211,102,.04);
}
.contact-info__item--highlight:hover { border-color: #25D366; }

.contact-info__icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(139,26,26,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.05rem;
    color: var(--burgundy);
}

.contact-info__label {
    display: block;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: .15rem;
}
.contact-info__value {
    display: block;
    font-size: .95rem;
    font-weight: 600;
    color: var(--charcoal);
}
.contact-info__sub {
    display: block;
    font-size: .78rem;
    color: var(--muted);
    margin-top: .1rem;
}

.contact-social__label {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: .6rem;
}
.contact-social__links { display: flex; gap: .6rem; }
.contact-social__links a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--cream2);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--charcoal);
    font-size: .95rem;
    text-decoration: none;
    transition: background .2s, border-color .2s, color .2s;
}
.contact-social__links a:hover { background: var(--burgundy); border-color: var(--burgundy); color: #fff; }

.contact-map__embed iframe {
    width: 100%;
    height: 480px;
    border-radius: var(--radius-lg);
    display: block;
    border: none;
}

.contact-map__link-btn {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    background: var(--cream2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: .9rem 1.25rem;
    font-size: .9rem;
    font-weight: 600;
    color: var(--charcoal);
    text-decoration: none;
    transition: border-color .2s, background .2s;
    width: 100%;
    justify-content: center;
}
.contact-map__link-btn:hover { border-color: var(--burgundy); color: var(--burgundy); background: var(--cream); }

/* Formulário */
.contact-form__heading {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: .5rem;
}

.contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-form__field {
    display: flex;
    flex-direction: column;
    gap: .4rem;
    margin-bottom: 1.1rem;
}

.contact-form__label {
    font-size: .82rem;
    font-weight: 700;
    color: var(--charcoal);
    letter-spacing: .02em;
}

.contact-form__error {
    font-size: .75rem;
    color: var(--danger);
}

.input--error {
    border-color: var(--danger) !important;
}

.contact-alert {
    padding: .85rem 1.1rem;
    border-radius: var(--radius);
    font-size: .88rem;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: .5rem;
}
.contact-alert--success { background: rgba(22,163,74,.08); border: 1px solid rgba(22,163,74,.25); color: #166534; }
.contact-alert--error   { background: rgba(220,38,38,.06); border: 1px solid rgba(220,38,38,.2);  color: #991b1b; flex-direction: column; }

@media (max-width: 640px) {
    .contact-form__row { grid-template-columns: 1fr; }
}

.contact-map__placeholder {
    background: var(--cream2);
    border: 2px dashed var(--border);
    border-radius: var(--radius-lg);
    height: 380px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--muted);
    text-align: center;
    padding: 2rem;
}
.contact-map__placeholder i { font-size: 2.5rem; opacity: .3; }
.contact-map__placeholder p { font-size: .9rem; line-height: 1.6; margin: 0; }

@media (max-width: 900px) {
    .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
    .contact-map__embed iframe { height: 320px; }
}

/* ============================================================
   CATÁLOGO — LAYOUT
   ============================================================ */
.catalog-breadcrumb {
    background: var(--cream2);
    padding: .75rem 0;
    border-bottom: 1px solid var(--border);
}
.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: .5rem;
    list-style: none;
    margin: 0;
    font-size: .82rem;
    color: var(--muted);
}
.breadcrumb-list a { color: var(--burgundy); }
.breadcrumb-list a:hover { color: var(--burgundy2); }

.catalog-header {
    background: var(--white);
    padding: 2rem 0 1.5rem;
    border-bottom: 1px solid var(--border);
}
.catalog-header__inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}
.catalog-header__title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--charcoal);
    margin: 0 0 .25rem;
}
.catalog-header__sub { font-size: .9rem; color: var(--muted); margin: 0; }

.catalog-body { padding: 2.5rem 0 4rem; }

.catalog-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 2.5rem;
    align-items: start;
}

/* Sidebar */
.catalog-sidebar {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    position: sticky;
    top: 90px;
}
.catalog-sidebar__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    padding-bottom: .75rem;
    border-bottom: 1px solid var(--border);
}
.catalog-sidebar__title {
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--charcoal);
}
.catalog-sidebar__reset {
    font-size: .75rem;
    color: var(--burgundy);
    text-decoration: none;
}
.catalog-sidebar__reset:hover { text-decoration: underline; }

.catalog-filter-group { margin-bottom: 1.25rem; }
.catalog-filter-group__label {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: .6rem;
}

.catalog-filter-option {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .875rem;
    color: var(--charcoal);
    cursor: pointer;
    margin-bottom: .4rem;
}
.catalog-filter-option input[type="checkbox"] {
    accent-color: var(--burgundy);
    width: 15px;
    height: 15px;
}

/* Grid area */
.catalog-grid-area {}

.catalog-empty {
    text-align: center;
    padding: 5rem 2rem;
    color: var(--muted);
}
.catalog-empty h3 { color: var(--charcoal); margin-bottom: .5rem; }
.catalog-empty p { margin-bottom: 1.5rem; }

.catalog-filter-toggle { display: none; }

/* Botão aplicar — sutil, não compete com os filtros */
.catalog-apply-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    width: 100%;
    padding: .55rem;
    background: none;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--muted);
    cursor: pointer;
    transition: border-color .2s, color .2s;
    margin-top: .25rem;
}
.catalog-apply-btn:hover { border-color: var(--burgundy); color: var(--burgundy); }

@media (max-width: 900px) {
    .catalog-layout { grid-template-columns: 1fr; }
    .catalog-sidebar { position: static; }
    .catalog-filter-toggle { display: inline-flex !important; }
    .catalog-sidebar[data-filters-sidebar] { display: none; }
    .catalog-sidebar[data-filters-sidebar].open { display: block; }
}

/* ============================================================
   FORM / INPUT (blocos de contato)
   ============================================================ */
.input,
input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
    width: 100%;
    padding: .7rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: .95rem;
    background: var(--white);
    color: var(--charcoal);
    transition: border-color .2s;
}

.input:focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--burgundy);
}

/* ============================================================
   MAP BLOCK
   ============================================================ */
.map-section iframe {
    border-radius: var(--radius-lg);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--charcoal);
    color: rgba(255, 255, 255, .75);
    padding-top: 3.5rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    display: inline-block;
    margin-bottom: .6rem;
    text-decoration: none;
}

.footer-logo:hover {
    color: var(--gold);
}

.footer-logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    margin-bottom: .5rem;
}

.footer-tagline {
    font-size: .88rem;
    color: rgba(255, 255, 255, .55);
    line-height: 1.6;
    margin-bottom: 0;
    max-width: 280px;
}

.footer-social {
    display: flex;
    gap: .75rem;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .65);
    font-size: .9rem;
    transition: background .2s, color .2s;
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--burgundy);
    color: var(--white);
}

/* WhatsApp CTA no footer */
.footer-wa-cta {
    display: flex;
    align-items: center;
    gap: .75rem;
    background: rgba(37,211,102,.1);
    border: 1px solid rgba(37,211,102,.25);
    border-radius: var(--radius-lg);
    padding: .75rem 1rem;
    text-decoration: none;
    transition: background .2s;
}
.footer-wa-cta:hover { background: rgba(37,211,102,.18); }
.footer-wa-cta__icon { font-size: 1.6rem; color: #25D366; flex-shrink: 0; }
.footer-wa-cta__label {
    display: block;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.45);
    margin-bottom: .1rem;
}
.footer-wa-cta__num { display: block; font-size: .95rem; font-weight: 700; color: #fff; }

.footer-col-title {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .4);
    margin-bottom: .9rem;
}

.footer-nav {
    list-style: none;
    margin: 0;
}

.footer-nav li {
    margin-bottom: .5rem;
}

.footer-nav a {
    font-size: .875rem;
    color: rgba(255, 255, 255, .65);
    text-decoration: none;
    transition: color .2s;
}

.footer-nav a:hover {
    color: var(--gold);
}

.footer-contact-list {
    list-style: none;
    margin: 0;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: .5rem;
    font-size: .875rem;
    color: rgba(255, 255, 255, .65);
    margin-bottom: .65rem;
}

.footer-contact-list i {
    color: var(--gold);
    font-size: .85rem;
    margin-top: .2rem;
    flex-shrink: 0;
}

.footer-contact-list a {
    color: rgba(255, 255, 255, .65);
    text-decoration: none;
    transition: color .2s;
}

.footer-contact-list a:hover {
    color: var(--gold);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 0;
    font-size: .78rem;
    color: rgba(255, 255, 255, .35);
    flex-wrap: wrap;
}

@media (max-width: 900px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 580px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ============================================================
   PAGINAS INTERNAS (politicas, faq page, institucional)
   ============================================================ */
.pagina h3 {
    margin-top: 30px;
    font-weight: 700;
}

.pagina h3 strong {
    font-weight: 700;
}

.pagina hr {
    margin: 30px 0;
}

.pagina p,
.pagina li {
    font-size: .96rem;
    line-height: 1.8;
    color: var(--muted);
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .92);
    z-index: 9000;
    justify-content: center;
    align-items: center;
}

.lightbox.open {
    display: flex;
}

.lightbox__img {
    max-width: 90vw;
    max-height: 88vh;
    object-fit: contain;
    border-radius: var(--radius);
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
    position: absolute;
    background: rgba(255, 255, 255, .12);
    border: none;
    color: #fff;
    font-size: 1.75rem;
    cursor: pointer;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}

.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
    background: var(--burgundy);
}

.lightbox__close {
    top: 1.25rem;
    right: 1.25rem;
    font-size: 1.5rem;
}

.lightbox__prev {
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox__next {
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
}

/* ============================================================
   UTILITIES
   ============================================================ */
.socialmedia a {
    margin: 0 5px;
}

.socialmedia a i {
    font-size: 24px;
}

/* ============================================================
   PÁGINA PRODUTO DETALHE
   ============================================================ */
.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.product-detail-gallery__main {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--cream2);
    aspect-ratio: 1;
    margin-bottom: .75rem;
}
.product-detail-gallery__main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-detail-badge {
    position: absolute;
    top: .75rem;
    left: .75rem;
    background: var(--burgundy);
    color: #fff;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: .3rem .7rem;
    border-radius: var(--radius-sm);
}
.product-detail-badge--promo { background: var(--gold); }

.product-detail-gallery__thumbs {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
}
.product-detail-gallery__thumb {
    width: 72px;
    height: 72px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 2px solid var(--border);
    cursor: pointer;
    padding: 0;
    background: var(--cream2);
    transition: border-color .2s;
}
.product-detail-gallery__thumb:hover { border-color: var(--burgundy); }
.product-detail-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

.product-detail-info__cat {
    display: inline-block;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    margin-bottom: .6rem;
}
.product-detail-info__cat:hover { color: var(--gold2); }

.product-detail-info__name {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: .35rem;
    line-height: 1.2;
}

.product-detail-info__sku {
    font-size: .78rem;
    color: var(--muted);
    margin-bottom: 1.25rem;
    font-family: ui-monospace, monospace;
}

.product-detail-info__price-box { margin-bottom: 1.5rem; }

.product-detail-info__price {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--burgundy);
    line-height: 1;
    margin-bottom: .35rem;
}
.product-detail-info__price--consult {
    font-size: 1.25rem;
    color: var(--muted);
}
.product-detail-info__price-old { font-size: .875rem; color: var(--muted); }
.product-detail-info__price-note { font-size: .78rem; color: var(--muted); margin-top: .35rem; margin-bottom: 0; }

.product-detail-info__desc {
    font-size: .97rem;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    border-top: 1px solid var(--border);
    padding-top: 1.25rem;
}

.product-detail-info__tags { margin-bottom: 1.5rem; }
.product-detail-info__tags-label {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
    display: block;
    margin-bottom: .5rem;
}
.product-detail-info__tags-list { display: flex; flex-wrap: wrap; gap: .4rem; }
.product-tag {
    background: var(--cream2);
    border: 1px solid var(--border);
    border-radius: 99px;
    font-size: .78rem;
    color: var(--charcoal);
    padding: .25rem .75rem;
}

.product-detail-info__actions {
    margin-bottom: .75rem;
}

.product-add-btn {
    width: 100%;
    justify-content: center;
    padding: .9rem;
    font-size: .9rem;
}

/* Botão WhatsApp no produto — estilo card link */
.product-wa-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(37,211,102,.07);
    border: 1.5px solid rgba(37,211,102,.3);
    border-radius: var(--radius-lg);
    padding: .85rem 1.1rem;
    text-decoration: none;
    margin-bottom: 1.25rem;
    transition: background .2s, border-color .2s;
}
.product-wa-btn:hover {
    background: rgba(37,211,102,.14);
    border-color: rgba(37,211,102,.55);
}

.product-wa-btn__icon {
    font-size: 1.75rem;
    color: #25D366;
    flex-shrink: 0;
}

.product-wa-btn__text { flex: 1; }

.product-wa-btn__label {
    display: block;
    font-size: .72rem;
    color: var(--muted);
    margin-bottom: .1rem;
}

.product-wa-btn__cta {
    display: block;
    font-size: .9rem;
    font-weight: 700;
    color: var(--charcoal);
}

.product-wa-btn__arrow {
    font-size: .7rem;
    color: var(--muted);
    flex-shrink: 0;
}

.product-detail-info__back {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .82rem;
    color: var(--muted);
    text-decoration: none;
    transition: color .2s;
}
.product-detail-info__back:hover { color: var(--burgundy); }

/* Specs */
.product-specs {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
}
.product-specs__title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}
.product-specs__table {
    width: 100%;
    border-collapse: collapse;
    font-size: .9rem;
}
.product-specs__table th, .product-specs__table td {
    padding: .75rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}
.product-specs__table th {
    width: 40%;
    color: var(--muted);
    font-weight: 600;
    background: var(--cream2);
}
.product-specs__table tr:last-child th,
.product-specs__table tr:last-child td { border-bottom: none; }

@media (max-width: 860px) {
    .product-detail-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ============================================================
   PÁGINAS INTERNAS — HERO BANNER
   ============================================================ */
.page-hero {
    background: var(--charcoal);
    padding: 4rem 0 3.5rem;
    border-bottom: 3px solid var(--burgundy);
}

.page-hero .section__eyebrow {
    color: var(--gold);
}

.page-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--white);
    margin: .5rem 0 1rem;
    line-height: 1.15;
}

.page-hero__sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,.68);
    max-width: 560px;
    line-height: 1.75;
    margin: 0;
}

/* ============================================================
   SOBRE — LAYOUT IMAGEM + TEXTO
   ============================================================ */
.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.sobre-grid--no-img {
    grid-template-columns: 1fr;
    max-width: 760px;
    margin: 0 auto;
}

.sobre-grid__img img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    max-height: 520px;
}

.sobre-grid__heading {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 600;
    color: var(--charcoal);
    margin: .5rem 0 1.25rem;
}

.sobre-grid__body {
    color: var(--muted);
    font-size: .97rem;
    line-height: 1.85;
}

.sobre-grid__body p {
    margin-bottom: 1rem;
}

@media (max-width: 860px) {
    .sobre-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .sobre-grid__img { order: -1; }
    .sobre-grid__img img { max-height: 340px; }
}

/* ============================================================
   MVV — MISSÃO, VISÃO, VALORES
   ============================================================ */
.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.mvv-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.25rem 2rem;
    border-top: 3px solid var(--burgundy);
    box-shadow: var(--shadow-sm);
    transition: box-shadow .22s, transform .22s;
}

.mvv-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.mvv-card__icon {
    width: 52px;
    height: 52px;
    background: rgba(139,26,26,.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.mvv-card__icon i {
    font-size: 1.3rem;
    color: var(--burgundy);
}

.mvv-card__title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: .75rem;
}

.mvv-card__text {
    font-size: .92rem;
    color: var(--muted);
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 760px) {
    .mvv-grid { grid-template-columns: 1fr; gap: 1rem; }
}

/* ============================================================
   EQUIPE
   ============================================================ */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.team-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.team-card__photo {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    border: 3px solid var(--cream2);
}

.team-card__avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: var(--cream2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.team-card__avatar i {
    font-size: 2rem;
    color: var(--border);
}

.team-card__name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: .25rem;
}

.team-card__role {
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: .75rem;
}

.team-card__bio {
    font-size: .875rem;
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 760px) {
    .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .team-grid { grid-template-columns: 1fr; }
}