/* ============================================
   COMERCIAL SÃO PEDRO — Design System v2
   Premium · Clean · Animated · Responsive
   ============================================ */

/* ===== TOKENS ===== */
:root {
    /* Marca — Gold */
    --gold-50:  #FFFBEE;
    --gold-100: #FEF6D6;
    --gold-200: #FEEBA2;
    --gold-300: #FDE06E;
    --gold-400: #FCD749;
    --gold-500: #FCD230;
    --gold-600: #D9B529;
    --gold-700: #B09322;
    --gold-800: #836D19;

    /* Marca — Maroon */
    --maroon-50:  #ECE7E7;
    --maroon-100: #D0C4C2;
    --maroon-300: #987C7A;
    --maroon-500: #572925;
    --maroon-700: #44110D;
    --maroon-900: #330D0A;

    /* Neutros */
    --white:    #FFFFFF;
    --gray-50:  #F9F9F9;
    --gray-100: #F2F2F2;
    --gray-200: #E4E4E4;
    --gray-400: #9A9A9A;
    --gray-700: #545454;
    --ink:      #222222;
    --black:    #111111;

    /* Semânticos */
    --success:  #1E8E3E;
    --error:    #C5221F;
    --warning:  #E6A817;
    --info:     #1A73E8;
    --whatsapp: #25D366;

    /* Semantic tokens */
    --color-bg:           var(--white);
    --color-bg-subtle:    var(--gray-50);
    --color-bg-inverse:   var(--maroon-900);
    --color-text:         var(--ink);
    --color-text-muted:   var(--gray-700);
    --color-muted:        var(--gray-700);
    --color-text-on-brand:var(--maroon-700);
    --color-text-inverse: var(--white);
    --color-primary:      var(--gold-500);
    --color-primary-hover:var(--gold-600);
    --color-on-primary:   var(--maroon-700);
    --color-secondary:    var(--maroon-700);
    --color-link:         var(--maroon-700);
    --color-link-hover:   var(--gold-700);
    --color-border:       var(--gray-200);

    /* Tipografia */
    --font-display: 'Archivo', system-ui, sans-serif;
    --font-body:    'Inter', system-ui, sans-serif;

    /* Spacing 8px grid */
    --sp-1:  0.25rem;
    --sp-2:  0.5rem;
    --sp-3:  0.75rem;
    --sp-4:  1rem;
    --sp-5:  1.5rem;
    --sp-6:  2rem;
    --sp-8:  3rem;
    --sp-10: 4rem;
    --sp-12: 6rem;

    /* Radii */
    --radius-sm:   6px;
    --radius-md:   12px;
    --radius-lg:   20px;
    --radius-xl:   28px;
    --radius-full: 9999px;

    /* Shadows — premium elevation system */
    --shadow-xs:  0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-sm:  0 2px 8px rgba(0,0,0,0.07), 0 1px 3px rgba(0,0,0,0.04);
    --shadow-md:  0 6px 24px rgba(0,0,0,0.09), 0 2px 8px rgba(0,0,0,0.05);
    --shadow-lg:  0 16px 40px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06);
    --shadow-xl:  0 24px 64px rgba(0,0,0,0.16);
    --shadow-gold:0 8px 32px rgba(252,210,48,0.35);
    --shadow-cta: 0 6px 20px rgba(252,210,48,0.4);
    --shadow-maroon:0 8px 28px rgba(68,17,13,0.25);

    /* Layout */
    --container: 1200px;

    /* Motion */
    --ease-out:   cubic-bezier(0.0, 0.0, 0.2, 1);
    --ease-in:    cubic-bezier(0.4, 0.0, 1, 1);
    --ease-inout: cubic-bezier(0.4, 0.0, 0.2, 1);
    --ease-spring:cubic-bezier(0.34, 1.56, 0.64, 1);
    --t-fast: 150ms var(--ease-inout);
    --t-base: 220ms var(--ease-inout);
    --t-slow: 380ms var(--ease-out);
    --t-spring:400ms var(--ease-spring);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--color-text);
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--t-base); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 800;
    line-height: 1.12;
    color: var(--color-text-on-brand);
    letter-spacing: -0.02em;
}

/* ===== LAYOUT ===== */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--sp-4);
}

@media (min-width: 640px)  { .container { padding: 0 var(--sp-5); } }
@media (min-width: 1024px) { .container { padding: 0 var(--sp-8); } }

.section-pad { padding: var(--sp-10) 0; }
@media (min-width: 768px) { .section-pad { padding: var(--sp-12) 0; } }

/* ===== SKIP LINK ===== */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--maroon-700);
    color: var(--white);
    padding: var(--sp-3) var(--sp-5);
    z-index: 9999;
    border-radius: 0 0 var(--radius-md) 0;
    font-weight: 600;
}
.skip-link:focus { top: 0; }

/* ===== TOPBAR ===== */
.topbar {
    background: var(--maroon-900);
    color: rgba(255,255,255,0.82);
    font-size: 0.8125rem;
    padding: var(--sp-2) 0;
    min-height: 36px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--sp-4);
    flex-wrap: wrap;
}

.topbar-info {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
}

.topbar-info svg { color: var(--gold-400); flex-shrink: 0; }

.topbar-social {
    display: inline-flex;
    gap: var(--sp-1);
}

.topbar-social a {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    border-radius: var(--radius-sm);
    transition: all var(--t-base);
}

.topbar-social a:hover {
    background: var(--gold-500);
    color: var(--maroon-700);
    transform: translateY(-1px);
}

@media (max-width: 640px) {
    .topbar-info { font-size: 0.75rem; }
    .topbar-info-detail { display: none; }
}

/* ===== HEADER ===== */
.header {
    background: var(--gold-500);
    position: sticky;
    top: 0;
    z-index: 200;
    border-bottom: 2px solid var(--gold-600);
    transition: background var(--t-slow), box-shadow var(--t-slow), backdrop-filter var(--t-slow);
}

.header.scrolled {
    background: rgba(252, 210, 48, 0.92);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    box-shadow: 0 4px 24px rgba(68,17,13,0.18);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-4);
    padding: var(--sp-3) 0;
    min-height: 68px;
    transition: min-height var(--t-slow);
}

.header.scrolled .header-inner { min-height: 60px; }

/* ===== LOGO ===== */
.logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    transition: transform var(--t-spring);
}

.logo:hover { transform: scale(1.02); }

.logo-img {
    height: 38px;
    width: auto;
    display: block;
    transition: height var(--t-slow);
}

@media (min-width: 768px) { .logo-img { height: 44px; } }
.header.scrolled .logo-img { height: 36px; }

/* ===== NAV ===== */
.nav ul {
    display: flex;
    gap: var(--sp-1);
    align-items: center;
}

.nav a {
    display: inline-block;
    padding: 8px var(--sp-3);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--maroon-700);
    border-radius: var(--radius-md);
    transition: all var(--t-base);
    position: relative;
    letter-spacing: -0.01em;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: var(--sp-3);
    right: var(--sp-3);
    height: 2px;
    background: var(--maroon-700);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform var(--t-base);
    border-radius: 1px;
}

.nav a:hover::after,
.nav a.active::after { transform: scaleX(1); }

.nav a:hover {
    background: rgba(68,17,13,0.08);
    color: var(--maroon-700);
}

.nav a.active {
    color: var(--maroon-700);
    font-weight: 700;
}

/* Header CTA */
.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--whatsapp);
    color: var(--white);
    padding: 10px var(--sp-4);
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.875rem;
    transition: all var(--t-base);
    min-height: 44px;
    box-shadow: 0 3px 12px rgba(37,211,102,0.35);
    letter-spacing: -0.01em;
}

.header-cta:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37,211,102,0.45);
}

.header-cta:active { transform: translateY(0); }

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
}

/* ===== MENU TOGGLE ===== */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--sp-3);
    border-radius: var(--radius-md);
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    color: var(--maroon-700);
    transition: background var(--t-base);
}

.menu-toggle:hover { background: rgba(68,17,13,0.08); }

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--maroon-700);
    border-radius: 2px;
    transition: all 280ms var(--ease-spring);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1024px) {
    .menu-toggle { display: flex; }
    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(252,210,48,0.97);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        box-shadow: 0 8px 32px rgba(68,17,13,0.18);
        max-height: 0;
        overflow: hidden;
        transition: max-height 350ms var(--ease-out);
        border-top: 1px solid rgba(68,17,13,0.12);
    }
    .nav.open { max-height: 600px; }
    .nav ul {
        flex-direction: column;
        gap: 0;
        padding: var(--sp-2) var(--sp-4);
    }
    .nav a {
        display: block;
        padding: var(--sp-3) var(--sp-2);
        border-bottom: 1px solid rgba(68,17,13,0.1);
        border-radius: 0;
        font-size: 1rem;
    }
    .nav a::after { display: none; }
    .nav ul li:last-child a { border-bottom: none; }
    .header-cta-text { display: none; }
    .header-cta { padding: 10px; }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--sp-2);
    padding: 13px var(--sp-6);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 700;
    text-align: center;
    border-radius: var(--radius-md);
    transition: all var(--t-base);
    min-height: 48px;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    user-select: none;
    line-height: 1.2;
    letter-spacing: -0.01em;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.18) 50%, transparent 100%);
    transform: translateX(-100%);
    transition: transform 500ms var(--ease-out);
    pointer-events: none;
}

.btn:hover::before { transform: translateX(100%); }

.btn:focus-visible {
    outline: 3px solid var(--maroon-700);
    outline-offset: 3px;
}

.btn-primary {
    background: var(--gold-500);
    color: var(--maroon-700);
    box-shadow: var(--shadow-cta);
}

.btn-primary:hover {
    background: var(--gold-400);
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(252,210,48,0.55);
}

.btn-primary:active { transform: translateY(-1px); box-shadow: var(--shadow-cta); }

.btn-secondary {
    background: var(--maroon-700);
    color: var(--white);
    box-shadow: var(--shadow-maroon);
}

.btn-secondary:hover {
    background: var(--maroon-900);
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(68,17,13,0.35);
}

.btn-secondary:active { transform: translateY(-1px); }

.btn-outline {
    background: transparent;
    color: var(--maroon-700);
    border: 2px solid var(--maroon-700);
}

.btn-outline:hover {
    background: var(--gold-50);
    border-color: var(--maroon-900);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(37,211,102,0.35);
}

.btn-whatsapp:hover {
    background: #1ebe5d;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(37,211,102,0.45);
}

.btn-block { width: 100%; }

/* ===== HERO ===== */
.hero {
    position: relative;
    background: linear-gradient(145deg, var(--maroon-900) 0%, var(--maroon-700) 55%, var(--maroon-500) 100%);
    overflow: hidden;
    padding: 100px 0 var(--sp-12);
    min-height: 92vh;
    display: flex;
    align-items: center;
}

@media (min-width: 768px) { .hero { min-height: 88vh; padding-top: 100px; } }

/* Wallpaper: telhado do logo em duas alturas sobre trama diagonal,
   sumindo da esquerda para a direita antes do boneco */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='104'%3E%3Cg fill='none' stroke-width='2'%3E%3Cpath d='M-10 72 L100 10 L210 72' stroke='%23FCD230' stroke-opacity='0.12'/%3E%3Cpath d='M-10 98 L100 36 L210 98' stroke='%23FFFFFF' stroke-opacity='0.06'/%3E%3C/g%3E%3C/svg%3E"),
        repeating-linear-gradient(118deg, rgba(255,255,255,0.025) 0 2px, transparent 2px 11px);
    background-size: 200px 104px, auto;
    -webkit-mask-image: linear-gradient(105deg, #000 0%, rgba(0,0,0,0.7) 36%, rgba(0,0,0,0.25) 68%, transparent 100%);
    mask-image: linear-gradient(105deg, #000 0%, rgba(0,0,0,0.7) 36%, rgba(0,0,0,0.25) 68%, transparent 100%);
}

/* Grao de material, por cima do padrao */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    mix-blend-mode: overlay;
    opacity: 0.055;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-10);
    align-items: center;
    width: 100%;
}

@media (min-width: 900px) {
    .hero-inner { grid-template-columns: 1.25fr 1fr; gap: var(--sp-8); }
}

.hero-content { max-width: 620px; }

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    padding: 7px 16px;
    background: rgba(252,210,48,0.15);
    color: var(--gold-400);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    margin-bottom: var(--sp-5);
    border: 1px solid rgba(252,210,48,0.25);
    backdrop-filter: blur(8px);
    animation: fadeInDown 600ms var(--ease-out) both;
}

.hero-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--gold-400);
    border-radius: 50%;
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.3; }
}

.hero h1 {
    font-size: clamp(2.25rem, 5.5vw, 3.5rem);
    color: var(--white);
    margin-bottom: var(--sp-5);
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.05;
    animation: fadeInUp 600ms 100ms var(--ease-out) both;
}

.hero h1 .accent {
    color: var(--gold-400);
    position: relative;
    display: inline-block;
}

.hero h1 .accent::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-400);
    border-radius: 2px;
    opacity: 0.5;
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: rgba(255,255,255,0.8);
    margin-bottom: var(--sp-6);
    max-width: 520px;
    line-height: 1.7;
    animation: fadeInUp 600ms 200ms var(--ease-out) both;
}

.hero-actions {
    display: flex;
    gap: var(--sp-3);
    flex-wrap: wrap;
    margin-bottom: var(--sp-8);
    animation: fadeInUp 600ms 300ms var(--ease-out) both;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-3);
    max-width: 520px;
    animation: fadeInUp 600ms 400ms var(--ease-out) both;
}

.stat {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    padding: var(--sp-4) var(--sp-3);
    border-radius: var(--radius-md);
    text-align: center;
    backdrop-filter: blur(8px);
    transition: all var(--t-base);
}

.stat:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(252,210,48,0.3);
    transform: translateY(-3px);
}

.stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4.5vw, 2.5rem);
    font-weight: 900;
    color: var(--gold-400);
    line-height: 1;
    letter-spacing: -0.03em;
}

.stat > span {
    display: block;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.65);
    margin-top: var(--sp-1);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-mascot {
    display: none;
    justify-content: center;
    align-items: flex-end;
    position: relative;
}

@media (min-width: 900px) { .hero-mascot { display: flex; } }

.hero-mascot img {
    width: 100%;
    max-width: 380px;
    height: auto;
    filter: drop-shadow(0 24px 48px rgba(0,0,0,0.4));
    animation: float 4s ease-in-out infinite, fadeInRight 700ms 200ms var(--ease-out) both;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-16px); }
}

/* ===== SECTION HEAD ===== */
.section-head { margin-bottom: var(--sp-8); }
.section-head-center { text-align: center; }

.eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-700);
    margin-bottom: var(--sp-3);
}

.eyebrow-light { color: var(--gold-400); }

.section-head h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--maroon-700);
    margin-bottom: var(--sp-3);
    text-transform: uppercase;
    letter-spacing: -0.01em;
    font-weight: 800;
}

.divider {
    width: 48px;
    height: 3px;
    background: var(--gold-500);
    border-radius: 2px;
}

.section-head-center .divider { margin: 0 auto; }

.section-sub {
    margin-top: var(--sp-4);
    color: var(--color-text-muted);
    font-size: 1.0625rem;
    max-width: 580px;
    line-height: 1.7;
}

.section-head-center .section-sub {
    margin-left: auto;
    margin-right: auto;
}

/* ===== MARCAS ===== */
.marcas {
    background: var(--white);
    padding: var(--sp-8) 0;
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
}

.marcas-head {
    text-align: center;
    margin-bottom: var(--sp-6);
}

.marcas-head .eyebrow { color: var(--gold-700); }

.marcas-head h2 {
    font-size: clamp(1.125rem, 3vw, 1.375rem);
    color: var(--maroon-700);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    font-weight: 700;
}

.marcas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-3);
    align-items: center;
}

@media (min-width: 600px)  { .marcas-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 900px)  { .marcas-grid { grid-template-columns: repeat(7, 1fr); gap: var(--sp-4); } }

.marca-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--sp-3) var(--sp-4);
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-md);
    min-height: 76px;
    transition: all var(--t-base);
}

.marca-item:hover {
    background: var(--white);
    border-color: var(--gold-300);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

a.marca-item { cursor: pointer; }

.marca-item img {
    max-height: 48px;
    max-width: 100%;
    width: auto;
    object-fit: contain;
    display: block;
    filter: grayscale(20%);
    transition: filter var(--t-base);
}

.marca-item:hover img { filter: grayscale(0%); }

/* ===== EMPRESA ===== */
.empresa { background: var(--color-bg); }

.empresa-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-10);
    align-items: start;
}

@media (min-width: 900px) { .empresa-grid { grid-template-columns: 1.2fr 1fr; } }

.empresa-text p {
    margin-bottom: var(--sp-4);
    color: var(--color-text);
    font-size: 1.0625rem;
    line-height: 1.75;
}

.features {
    margin-top: var(--sp-5);
    display: grid;
    gap: var(--sp-3);
}

.features li {
    display: flex;
    align-items: flex-start;
    gap: var(--sp-3);
    font-size: 0.9375rem;
    color: var(--color-text);
    line-height: 1.55;
    padding: var(--sp-3);
    border-radius: var(--radius-md);
    transition: background var(--t-base);
}

.features li:hover { background: var(--gray-50); }

.features svg {
    color: var(--maroon-700);
    flex-shrink: 0;
    background: var(--gold-500);
    padding: 4px;
    border-radius: var(--radius-full);
    width: 26px;
    height: 26px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: var(--sp-3);
}

.value-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    padding: var(--sp-6) var(--sp-5);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--t-spring);
    box-shadow: var(--shadow-xs);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-500), var(--gold-400));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 350ms var(--ease-out);
}

.value-card:hover::before { transform: scaleX(1); }

.value-card:hover {
    border-color: var(--gold-200);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: var(--maroon-700);
    color: var(--gold-500);
    border-radius: var(--radius-lg);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--sp-4);
    transition: all var(--t-spring);
    box-shadow: var(--shadow-maroon);
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(-3deg);
    background: var(--gold-500);
    color: var(--maroon-700);
}

.value-card h3 {
    font-size: 1rem;
    color: var(--maroon-700);
    margin-bottom: var(--sp-2);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 800;
}

.value-card p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* ===== QUEM SOMOS ===== */
.qs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-8);
}

@media (min-width: 900px) {
    .qs-grid { grid-template-columns: 1.15fr 1fr; align-items: start; }
}

.qs-historia p {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--color-text);
    margin-bottom: var(--sp-4);
}

/* Stats strip */
.qs-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

@media (max-width: 599px) {
    .qs-stats { grid-template-columns: repeat(2, 1fr); }
}

.qs-stat {
    background: var(--maroon-700);
    color: var(--white);
    padding: var(--sp-8) var(--sp-5);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: var(--sp-2);
    border-right: 1px solid rgba(255,255,255,0.08);
}

.qs-stat:last-child { border-right: none; }

.qs-stat strong {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 900;
    color: var(--gold-500);
    line-height: 1;
}

.qs-stat > span {
    font-size: 0.75rem;
    color: var(--maroon-100);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Missão, Visão e Valores — 3 cards */
.qs-mvv {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-5);
    margin-bottom: var(--sp-6);
}

@media (max-width: 767px) {
    .qs-mvv { grid-template-columns: 1fr; gap: var(--sp-4); }
}

.mvv-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: var(--sp-8) var(--sp-6) var(--sp-6);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--t-spring), box-shadow var(--t-slow), border-color var(--t-base);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mvv-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-500), var(--gold-400));
}

.mvv-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-200);
}

.mvv-icon {
    width: 64px;
    height: 64px;
    background: var(--maroon-700);
    color: var(--gold-500);
    border-radius: var(--radius-lg);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--sp-5);
    flex-shrink: 0;
    transition: all var(--t-spring);
    box-shadow: var(--shadow-maroon);
}

.mvv-card:hover .mvv-icon {
    background: var(--gold-500);
    color: var(--maroon-700);
    transform: scale(1.08) rotate(-3deg);
    box-shadow: var(--shadow-gold);
}

.mvv-card h3 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--maroon-700);
    margin-bottom: var(--sp-3);
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.mvv-card p {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* Valores individuais — 4 cards */
.qs-valores {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-4);
}

@media (max-width: 899px) {
    .qs-valores { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 479px) {
    .qs-valores { grid-template-columns: 1fr 1fr; gap: var(--sp-3); }
}

.valor-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-left: 3px solid var(--gold-500);
    border-radius: var(--radius-md);
    padding: var(--sp-5) var(--sp-4);
    box-shadow: var(--shadow-xs);
    transition: all var(--t-base);
}

.valor-card:hover {
    border-left-color: var(--maroon-700);
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
    border-color: var(--maroon-100);
    border-left-color: var(--maroon-700);
}

.valor-card h4 {
    font-family: var(--font-display);
    font-size: 0.9375rem;
    font-weight: 800;
    color: var(--maroon-700);
    margin-bottom: var(--sp-2);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.valor-card p {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    line-height: 1.65;
}

/* ===== NOTÍCIAS ===== */
.noticias-page-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-8);
    align-items: start;
}

@media (min-width: 1024px) {
    .noticias-page-grid { grid-template-columns: 1fr 296px; }
}

/* Lista de artigos */
.noticias-lista {
    display: flex;
    flex-direction: column;
    gap: var(--sp-5);
}

/* Card de notícia */
.noticia-card-full {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--t-slow), transform var(--t-spring), border-color var(--t-base);
    display: grid;
    grid-template-columns: 200px 1fr;
}

@media (max-width: 767px) {
    .noticia-card-full { grid-template-columns: 1fr; }
}

.noticia-card-full:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--gold-200);
}

/* Thumbnail */
.noticia-thumb {
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .noticia-thumb { min-height: 130px; }
}

/* Área de conteúdo */
.noticia-body {
    padding: var(--sp-6);
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
}

/* Meta: categoria + data */
.noticia-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--sp-3);
}

.noticia-meta > span:last-child {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
}

/* Badge de categoria */
.noticia-tag-cat {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    background: var(--gold-100);
    color: var(--maroon-700);
    font-size: 0.6875rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border: 1px solid var(--gold-300);
    white-space: nowrap;
}

/* Título */
.noticia-body h2 {
    font-family: var(--font-display);
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: 800;
    color: var(--ink);
    line-height: 1.4;
    margin: 0;
    transition: color var(--t-base);
}

.noticia-card-full:hover .noticia-body h2 { color: var(--maroon-700); }

.noticia-body p {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin: 0;
}

/* Sidebar */
.noticias-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--sp-5);
}

@media (min-width: 1024px) {
    .noticias-sidebar { position: sticky; top: 96px; }
}

/* Widget da sidebar */
.sidebar-widget {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: var(--sp-5);
    box-shadow: var(--shadow-xs);
}

.sidebar-widget h3 {
    font-family: var(--font-display);
    font-size: 0.8125rem;
    font-weight: 800;
    color: var(--maroon-700);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: var(--sp-4);
    padding-bottom: var(--sp-3);
    border-bottom: 2px solid var(--gold-500);
}

.sidebar-widget ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--sp-1);
}

.sidebar-widget ul li a {
    display: flex;
    align-items: center;
    gap: var(--sp-2);
    font-size: 0.875rem;
    color: var(--color-text-muted);
    padding: var(--sp-2) var(--sp-3);
    border-radius: var(--radius-sm);
    transition: all var(--t-base);
    text-decoration: none;
}

.sidebar-widget ul li a::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold-500);
    flex-shrink: 0;
}

.sidebar-widget ul li a:hover {
    color: var(--maroon-700);
    background: var(--gold-50);
}

/* ===== PRODUTOS / DESTAQUES ===== */
.destaques { background: var(--gray-50); }

.produtos-controls {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-4);
    margin-bottom: var(--sp-6);
    padding: var(--sp-4) var(--sp-5);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
}

@media (min-width: 768px) {
    .produtos-controls {
        grid-template-columns: 1fr auto;
        align-items: center;
    }
}

.search-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.search-wrap svg {
    position: absolute;
    left: 14px;
    color: var(--gray-400);
    pointer-events: none;
}

/* .search-input foi removida: nenhuma pagina a usa. A busca do catalogo e
   #searchProd, estilizada por .filtro-grupo input[type="search"] mais abaixo —
   inclusive com o 1rem no mobile que evita o zoom automatico do iOS, que esta
   regra orfa (0.9375rem) nao tinha. */

.filters {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-2);
}

.chip {
    padding: 7px var(--sp-3);
    background: var(--white);
    border: 1.5px solid var(--color-border);
    color: var(--maroon-700);
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--t-base);
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    letter-spacing: -0.01em;
}

.chip:hover {
    border-color: var(--maroon-700);
    background: var(--gold-50);
    transform: translateY(-1px);
}

.chip[aria-pressed="true"] {
    background: var(--maroon-700);
    color: var(--white);
    border-color: var(--maroon-700);
    box-shadow: var(--shadow-maroon);
}

.produtos-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-5);
}

@media (min-width: 600px)  { .produtos-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .produtos-grid { grid-template-columns: repeat(3, 1fr); } }

/* Grid principal da página de catálogo */
.produtos-grid-full {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-4);
}

@media (min-width: 900px)  { .produtos-grid-full { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1200px) { .produtos-grid-full { grid-template-columns: repeat(4, 1fr); } }

@media (max-width: 479px) { .produtos-grid-full { grid-template-columns: 1fr; } }

.produto-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--t-spring);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-xs);
}

.produto-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-300);
}

.produto-img {
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--sp-5);
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-100);
    overflow: hidden;
}

.produto-img-text {
    color: rgba(255,255,255,0.92);
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 0.8125rem;
    text-align: center;
    line-height: 1.25;
    padding: var(--sp-3);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.produto-img svg {
    height: 100%;
    width: auto;
    max-height: 200px;
    filter: drop-shadow(0 8px 16px rgba(0,0,0,0.1));
    transition: transform 400ms var(--ease-spring);
}

.produto-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 400ms var(--ease-spring);
}

.produto-card:hover .produto-img svg,
.produto-card:hover .produto-img img { transform: scale(1.06); }

.produto-img-link { display: block; }

.produto-info h3 a {
    color: inherit;
    text-decoration: none;
    transition: color var(--t-base);
}

.produto-info h3 a:hover { color: var(--gold-700); }

.produto-info {
    padding: var(--sp-4) var(--sp-4) var(--sp-5);
    display: flex;
    flex-direction: column;
    gap: var(--sp-2);
    flex: 1;
}

.produto-tag {
    display: inline-block;
    align-self: flex-start;
    padding: 4px 10px;
    background: var(--gold-100);
    color: var(--maroon-700);
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: var(--radius-full);
}

.produto-info h3 {
    font-size: 1.0625rem;
    color: var(--maroon-700);
    margin-top: var(--sp-1);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.produto-cat {
    font-size: 0.8125rem;
    color: var(--gray-700);
    font-weight: 500;
}

.produto-desc {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    flex: 1;
    margin-top: var(--sp-1);
}

.produto-actions {
    display: flex;
    flex-direction: column;
    gap: var(--sp-2);
    margin-top: auto;
    padding-top: var(--sp-3);
}

.produto-actions .btn {
    width: 100%;
    padding: 10px var(--sp-3);
    font-size: 0.8125rem;
    min-height: 44px;
}

.produtos-empty {
    grid-column: 1 / -1;
    padding: var(--sp-10);
    text-align: center;
    background: var(--white);
    border: 1.5px dashed var(--color-border);
    border-radius: var(--radius-lg);
    color: var(--color-text-muted);
}

.produtos-empty svg { margin: 0 auto var(--sp-3); color: var(--gray-400); }
.produtos-empty h3 { color: var(--maroon-700); margin-bottom: var(--sp-2); font-size: 1.125rem; }

/* ===== CATÁLOGO CTA ===== */
.catalogo-cta {
    background: var(--maroon-900);
    position: relative;
    overflow: hidden;
}

.catalogo-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 70% at 100% 50%, rgba(252,210,48,0.1) 0%, transparent 70%),
        url("data:image/svg+xml,%3Csvg width='48' height='48' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='p' x='0' y='0' width='24' height='24' patternUnits='userSpaceOnUse'%3E%3Ccircle cx='12' cy='12' r='0.6' fill='%23FCD230' fill-opacity='0.08'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='48' height='48' fill='url(%23p)'/%3E%3C/svg%3E");
    pointer-events: none;
}

.catalogo-cta-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-10);
    align-items: center;
}

@media (min-width: 900px) { .catalogo-cta-inner { grid-template-columns: 1.1fr 1fr; } }

.catalogo-cta-content .eyebrow { color: var(--gold-400); }

.catalogo-cta-content h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: var(--sp-4);
}

.catalogo-lead {
    color: rgba(255,255,255,0.75);
    font-size: 1.0625rem;
    line-height: 1.7;
    margin-bottom: var(--sp-6);
}

.cat-pills {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-2);
    margin-bottom: var(--sp-6);
}

.cat-pill {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(252,210,48,0.12);
    color: var(--gold-400);
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: 1px solid rgba(252,210,48,0.2);
    transition: all var(--t-base);
}

.cat-pill:hover {
    background: rgba(252,210,48,0.2);
    border-color: rgba(252,210,48,0.4);
}

.catalogo-nums {
    display: flex;
    align-items: center;
    gap: var(--sp-4);
    flex-wrap: wrap;
    margin-bottom: var(--sp-6);
}

.catalogo-num {
    display: flex;
    flex-direction: column;
}

.catalogo-num strong {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold-400);
    line-height: 1;
    letter-spacing: -0.04em;
}

.catalogo-num > span {
    font-size: 0.6875rem;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 2px;
}

.catalogo-num-sep {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.15);
}

.btn-catalogo { min-width: 220px; }

/* Cat mosaic */
.catalogo-cta-visual { width: 100%; }

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

.cat-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--sp-2);
    padding: var(--sp-4) var(--sp-3);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all var(--t-base);
    text-decoration: none;
    cursor: pointer;
}

.cat-tile svg { color: var(--color); color: var(--ct); opacity: 0.9; }

.cat-tile:hover {
    background: rgba(252,210,48,0.12);
    border-color: rgba(252,210,48,0.3);
    color: var(--gold-400);
    transform: translateY(-3px);
}

.cat-tile:hover svg { color: var(--gold-400); }

.cat-tile-more {
    background: rgba(252,210,48,0.1);
    border-color: rgba(252,210,48,0.2);
    color: var(--gold-400);
}

/* ===== SOLUÇÕES ===== */
.solucoes {
    background: var(--maroon-700);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.solucoes::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(ellipse 60% 40% at 90% 20%, rgba(252,210,48,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.solucoes-head {
    text-align: center;
    max-width: 560px;
    margin: 0 auto var(--sp-8);
    position: relative;
    z-index: 1;
}

.solucoes-head h2 {
    color: var(--gold-400);
    font-size: clamp(2rem, 5vw, 3rem);
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: var(--sp-3);
}

.solucoes-head h2 span {
    display: block;
    color: var(--white);
    font-size: 0.75em;
    font-weight: 600;
}

.solucoes-head p {
    color: rgba(255,255,255,0.7);
    font-size: 1.0625rem;
    line-height: 1.7;
}

.mapa-wrap {
    margin: var(--sp-8) 0 var(--sp-6);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 1;
}

.mapa-container {
    position: relative;
    width: 100%;
    padding-bottom: 67%;
    height: 0;
    background: #e8e2d8;
    overflow: hidden;
}

.mapa-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mapa-btn {
    position: absolute;
    width: 30px;
    height: 30px;
    background: var(--gold-500);
    color: var(--maroon-900);
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 0.7rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
    text-decoration: none;
    transition: all var(--t-spring);
    z-index: 2;
    box-shadow: 0 3px 10px rgba(0,0,0,0.45);
    cursor: pointer;
}

.mapa-btn:hover,
.mapa-btn:focus-visible {
    background: var(--maroon-700);
    color: var(--white);
    transform: translate(-50%, -50%) scale(1.5);
    box-shadow: 0 6px 18px rgba(0,0,0,0.55);
    outline: none;
    z-index: 20;
}

.mapa-btn::after {
    content: attr(data-label);
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--maroon-900);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.6875rem;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 6px;
    white-space: normal;
    width: max-content;
    max-width: 160px;
    text-align: center;
    line-height: 1.3;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--t-fast);
    box-shadow: var(--shadow-md);
    z-index: 1;
}

.mapa-btn:hover::after,
.mapa-btn:focus-visible::after { opacity: 1; }

.mapa-btn.tip-left::after { left: auto; right: 50%; transform: none; }
.mapa-btn.tip-right::after { left: 50%; right: auto; transform: none; }

.solucoes-legenda {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-2) var(--sp-5);
    list-style: none;
    padding: 0;
    margin: var(--sp-2) 0 var(--sp-8);
    color: rgba(255,255,255,0.75);
    font-size: 0.8125rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 480px)  { .solucoes-legenda { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px)  { .solucoes-legenda { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1024px) { .solucoes-legenda { grid-template-columns: repeat(5, 1fr); } }

.solucoes-legenda li {
    display: flex;
    align-items: center;
    gap: var(--sp-2);
    line-height: 1.3;
}

.leg-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    background: var(--gold-500);
    color: var(--maroon-900);
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 0.6875rem;
    border-radius: 50%;
    flex-shrink: 0;
}

.solucoes-footer {
    text-align: center;
    margin-top: var(--sp-8);
    position: relative;
    z-index: 1;
}

/* ===== NOTÍCIAS ===== */
.noticias { background: var(--gray-50); }

.noticias-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-5);
}

@media (min-width: 700px) {
    .noticias-grid { grid-template-columns: 1fr 1fr; }
    .noticia-featured { grid-column: 1 / -1; }
}

@media (min-width: 1024px) {
    .noticias-grid { grid-template-columns: 1.4fr 1fr 1fr; }
    .noticia-featured { grid-column: auto; }
}

.noticia-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--t-spring);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-xs);
}

.noticia-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-200);
}

.noticia-img {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.noticia-img svg { width: 100%; height: 100%; }

.noticia-info {
    padding: var(--sp-4) var(--sp-5) var(--sp-5);
    display: flex;
    flex-direction: column;
    gap: var(--sp-2);
    flex: 1;
}

.noticia-data {
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--gold-700);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.noticia-info h3 {
    font-size: 1.0625rem;
    color: var(--maroon-700);
    line-height: 1.3;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.noticia-featured .noticia-info h3 { font-size: 1.3rem; }

.noticia-info p {
    color: var(--color-text-muted);
    font-size: 0.9375rem;
    line-height: 1.6;
    flex: 1;
}

.noticia-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--maroon-700);
    font-weight: 700;
    font-size: 0.8125rem;
    margin-top: var(--sp-2);
    transition: all var(--t-base);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.noticia-link:hover {
    color: var(--gold-700);
    gap: 10px;
}

/* ===== CONTATO ===== */
.contato { background: var(--white); }

.contato-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-10);
}

@media (min-width: 900px) {
    .contato-inner {
        grid-template-columns: 1fr 1.3fr;
        align-items: start;
    }
}

.contato-info .eyebrow { color: var(--gold-700); }

.contato-info h2 {
    color: var(--maroon-700);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: var(--sp-4);
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.contato-info > p {
    color: var(--color-text);
    margin-bottom: var(--sp-6);
    font-size: 1.0625rem;
    line-height: 1.7;
}

/* Contato page — layout grid */
.contato-page-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-8);
    align-items: start;
}

@media (min-width: 900px) {
    .contato-page-grid { grid-template-columns: 1.2fr 1fr; }
}

/* Info blocks — cartões de contato */
.info-blocks {
    display: grid;
    gap: var(--sp-3);
}

.info-block {
    display: flex;
    align-items: flex-start;
    gap: var(--sp-4);
    padding: var(--sp-4) var(--sp-5);
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-left: 3px solid transparent;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xs);
    transition: all var(--t-base);
}

.info-block:hover {
    border-left-color: var(--gold-500);
    border-color: var(--gold-200);
    border-left-color: var(--gold-500);
    box-shadow: var(--shadow-md);
    transform: translateX(3px);
}

.info-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--maroon-700);
    color: var(--gold-500);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-maroon);
    transition: all var(--t-spring);
}

.info-block:hover .info-icon {
    background: var(--gold-500);
    color: var(--maroon-700);
    transform: scale(1.06) rotate(-3deg);
    box-shadow: var(--shadow-gold);
}

.info-block strong {
    display: block;
    font-family: var(--font-display);
    font-size: 0.6875rem;
    font-weight: 800;
    color: var(--maroon-700);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 5px;
}

.info-block p {
    font-size: 0.9375rem;
    color: var(--color-text);
    line-height: 1.55;
    margin: 0;
}

.info-block p a {
    color: var(--color-text);
    text-decoration: none;
    transition: color var(--t-base);
}

.info-block p a:hover {
    color: var(--maroon-700);
    text-decoration: underline;
}

/* Mapa embed */
.mapa-embed {
    margin-top: var(--sp-5);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
    background: var(--white);
}

.mapa-embed iframe {
    width: 100%;
    height: 260px;
    display: block;
    border: none;
}

@media (min-width: 600px) {
    .mapa-embed iframe { height: 300px; }
}

.mapa-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--sp-2);
    padding: var(--sp-3) var(--sp-4);
    background: var(--gray-50);
    border-top: 1px solid var(--gray-100);
    color: var(--maroon-700);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--t-base);
}

.mapa-link:hover {
    background: var(--gold-50);
    color: var(--maroon-700);
    gap: var(--sp-3);
}

.mapa-link svg {
    flex-shrink: 0;
    transition: transform var(--t-base);
}

.mapa-link:hover svg { transform: scale(1.15); }

.contato-list { display: grid; gap: var(--sp-4); }

.contato-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--sp-3);
    padding: var(--sp-4);
    background: var(--gray-50);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-100);
    transition: all var(--t-base);
}

.contato-list li:hover {
    border-color: var(--gold-200);
    box-shadow: var(--shadow-sm);
}

.contato-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--maroon-700);
    color: var(--gold-500);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-maroon);
}

.contato-list strong {
    display: block;
    color: var(--maroon-700);
    margin-bottom: 4px;
    font-size: 0.8125rem;
    font-weight: 700;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.contato-list span,
.contato-list a {
    color: var(--color-text);
    font-size: 0.9375rem;
    line-height: 1.55;
    display: block;
}

.contato-list a:hover {
    color: var(--gold-700);
    text-decoration: underline;
}

/* ===== FORM ===== */
.contato-form {
    background: var(--white);
    color: var(--color-text);
    padding: var(--sp-6);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
}

@media (min-width: 600px) { .contato-form { padding: var(--sp-8); } }

.contato-form h3 {
    font-size: 1.5rem;
    color: var(--maroon-700);
    margin-bottom: var(--sp-2);
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.contato-form .form-lead {
    color: var(--color-text-muted);
    font-size: 0.9375rem;
    margin-bottom: var(--sp-6);
    line-height: 1.6;
}

.form-group { margin-bottom: var(--sp-4); }

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-4);
}

@media (min-width: 500px) { .form-row { grid-template-columns: 1fr 1fr; } }

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--maroon-700);
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.form-group .req { color: var(--error); margin-left: 2px; }

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px var(--sp-4);
    font-family: inherit;
    font-size: 1rem;
    color: var(--color-text);
    background: var(--gray-50);
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: all var(--t-base);
    min-height: 48px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--maroon-700);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(68,17,13,0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-400); }

.form-group textarea { resize: vertical; min-height: 120px; line-height: 1.55; }

.form-group input.error,
.form-group textarea.error,
.form-group select.error {
    border-color: var(--error);
    background: #FFF5F5;
}

.form-error {
    display: block;
    margin-top: 5px;
    font-size: 0.8125rem;
    color: var(--error);
    min-height: 1rem;
    font-weight: 500;
}

.form-helper { display: block; margin-top: 4px; font-size: 0.75rem; color: var(--gray-700); }

.form-success {
    margin-top: var(--sp-4);
    padding: var(--sp-4);
    background: #E8F5E9;
    color: #1B5E20;
    border: 1px solid #A5D6A7;
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
    font-weight: 500;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--sp-2);
}

.form-success[hidden] { display: none; }
.contato-form .btn { margin-top: var(--sp-2); }

/* ===== FOOTER CTA ===== */
.footer-cta {
    background: var(--gold-500);
    padding: var(--sp-12) 0;
    position: relative;
    overflow: hidden;
}

.footer-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse 60% 60% at 0% 100%, rgba(68,17,13,0.06) 0%, transparent 70%),
        repeating-linear-gradient(135deg, transparent, transparent 30px, rgba(68,17,13,0.03) 30px, rgba(68,17,13,0.03) 32px);
    pointer-events: none;
}

.footer-cta-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-6);
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .footer-cta-inner {
        grid-template-columns: auto 1fr;
        gap: var(--sp-10);
    }
}

.mascot-wrap {
    display: flex;
    justify-content: center;
}

.mascot-wrap svg,
.mascot-wrap img {
    width: 160px;
    height: auto;
    filter: drop-shadow(0 12px 28px rgba(68,17,13,0.25));
    animation: float 4s ease-in-out infinite;
}

@media (min-width: 768px) {
    .mascot-wrap svg,
    .mascot-wrap img { width: 200px; }
}

.footer-cta-content h2 {
    color: var(--maroon-700);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: var(--sp-2);
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.footer-cta-content > p {
    color: rgba(68,17,13,0.8);
    font-size: 1.0625rem;
    margin-bottom: var(--sp-5);
    line-height: 1.65;
    font-weight: 500;
}

.footer-cta-blocks {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-3);
    margin-bottom: var(--sp-6);
}

@media (min-width: 600px) { .footer-cta-blocks { grid-template-columns: repeat(3, 1fr); } }

.cta-block {
    display: flex;
    align-items: flex-start;
    gap: var(--sp-3);
    color: var(--maroon-700);
    font-size: 0.9375rem;
    line-height: 1.5;
    padding: var(--sp-3);
    background: rgba(68,17,13,0.06);
    border-radius: var(--radius-md);
}

.cta-block svg { flex-shrink: 0; color: var(--maroon-700); margin-top: 2px; }

.cta-block strong {
    display: block;
    font-family: var(--font-display);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.75rem;
    margin-bottom: 3px;
}

.cta-block a:hover { text-decoration: underline; }

/* ===== FOOTER ===== */
.footer {
    background: var(--maroon-900);
    color: rgba(255,255,255,0.7);
    padding: var(--sp-12) 0 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-6);
    padding-bottom: var(--sp-10);
}

@media (min-width: 600px)  { .footer-inner { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-inner { grid-template-columns: 1.5fr 1fr 1fr 1.3fr; } }

.footer-col h4 {
    color: var(--gold-400);
    margin-bottom: var(--sp-4);
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 700;
    font-family: var(--font-display);
}

.footer-col p {
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-top: var(--sp-4);
    color: rgba(255,255,255,0.6);
}

.footer-col ul { display: grid; gap: var(--sp-2); }

.footer-col ul a {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.65);
    transition: all var(--t-base);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-col ul a::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold-600);
    flex-shrink: 0;
    transition: background var(--t-base);
}

.footer-col ul a:hover {
    color: var(--gold-400);
    padding-left: 4px;
}

.footer-col ul a:hover::before { background: var(--gold-400); }

.contact-info li {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.55;
    display: flex;
    align-items: flex-start;
    gap: var(--sp-2);
}

.contact-info svg { flex-shrink: 0; color: var(--gold-400); margin-top: 3px; }
.contact-info a:hover { color: var(--gold-400); }

.social {
    display: flex;
    gap: var(--sp-2);
    margin-top: var(--sp-4);
}

.social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(252,210,48,0.1);
    color: var(--gold-400);
    border-radius: var(--radius-md);
    transition: all var(--t-base);
    border: 1px solid rgba(252,210,48,0.18);
}

.social a:hover {
    background: var(--gold-500);
    color: var(--maroon-700);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(252,210,48,0.3);
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: var(--sp-4);
}

.footer-logo-img {
    display: block;
    height: 50px;
    width: auto;
    background: #fff;
    padding: 10px 14px;
    border-radius: 10px;
    box-sizing: content-box;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: var(--sp-5) 0;
    font-size: 0.8125rem;
}

.footer-bottom .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--sp-2);
    text-align: center;
    color: rgba(255,255,255,0.45);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    background: var(--whatsapp);
    color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(37,211,102,0.45);
    z-index: 500;
    transition: all var(--t-spring);
    animation: wha-pulse 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 12px 40px rgba(37,211,102,0.6);
    animation: none;
}

@keyframes wha-pulse {
    0%, 70%, 100% {
        box-shadow: 0 8px 32px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.5);
    }
    35% {
        box-shadow: 0 8px 32px rgba(37,211,102,0.45), 0 0 0 16px rgba(37,211,102,0);
    }
}

/* ===== SUB-PÁGINAS ===== */
.page-hero {
    background: linear-gradient(145deg, var(--maroon-900) 0%, var(--maroon-700) 100%);
    padding: 100px 0 var(--sp-8);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 70% at 90% 50%, rgba(252,210,48,0.1) 0%, transparent 70%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FCD230' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero .container { position: relative; z-index: 1; }

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: var(--sp-2);
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: var(--sp-4);
    flex-wrap: wrap;
}

.breadcrumb-nav a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color var(--t-base);
}

.breadcrumb-nav a:hover { color: var(--gold-400); }
.breadcrumb-nav span[aria-current] { color: var(--gold-400); }

.page-hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--white);
    margin-bottom: var(--sp-3);
    line-height: 1.1;
}

.page-hero h1 em { color: var(--gold-400); font-style: normal; }
.page-hero p { font-size: 1.0625rem; color: rgba(255,255,255,0.72); max-width: 560px; line-height: 1.7; }

/* ===== FILTROS PRODUTOS ===== */
.filtros-bar {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: var(--sp-5);
    margin-bottom: var(--sp-6);
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-4);
    align-items: flex-end;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 68px;
    z-index: 20;
    backdrop-filter: blur(12px);
    background: rgba(255,255,255,0.95);
}

.filtro-grupo {
    display: flex;
    flex-direction: column;
    gap: var(--sp-1);
    flex: 1;
    min-width: 180px;
}

.filtro-grupo label {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--maroon-700);
}

.filtro-grupo select,
.filtro-grupo input[type="search"] {
    height: 44px;
    padding: 0 var(--sp-3);
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--color-text);
    background: var(--gray-50);
    transition: all var(--t-base);
    width: 100%;
}

.filtro-grupo select:focus-visible,
.filtro-grupo input:focus-visible {
    outline: none;
    border-color: var(--maroon-700);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(68,17,13,0.1);
}

.filtros-count {
    font-size: 0.875rem;
    color: var(--gray-700);
    align-self: center;
    white-space: nowrap;
    padding: var(--sp-2) 0;
}

.filtros-count strong { color: var(--maroon-700); }

.btn-limpar {
    height: 44px;
    padding: 0 var(--sp-4);
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-md);
    background: transparent;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
    cursor: pointer;
    transition: all var(--t-base);
    white-space: nowrap;
}

.btn-limpar:hover { border-color: var(--maroon-700); color: var(--maroon-700); }

.btn-limpar:focus-visible {
    outline: none;
    border-color: var(--maroon-700);
    color: var(--maroon-700);
    box-shadow: 0 0 0 3px rgba(68,17,13,0.1);
}

/* ===== PRODUTO DETALHE ===== */
.produto-detalhe {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-6);
    align-items: start;
}

@media (min-width: 900px) { .produto-detalhe { grid-template-columns: 5fr 6fr; gap: var(--sp-8); } }

.produto-detalhe-media {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-xl);
    padding: var(--sp-6);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 88px;
}

.produto-detalhe-media img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* Badges: categoria + marca */
.produto-detalhe-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-2);
    margin-bottom: var(--sp-3);
}

.produto-detalhe-marca {
    display: inline-block;
    padding: var(--sp-1) var(--sp-3);
    border-radius: var(--radius-full);
    background: var(--gray-100);
    color: var(--gray-700);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

/* Corpo textual: descricao e detalhes do produto */
.produto-detalhe-desc {
    color: var(--color-text-muted);
    line-height: 1.7;
}

.produto-detalhe-desc p { margin: 0 0 var(--sp-3); }
.produto-detalhe-desc p:last-child { margin-bottom: 0; }

.produto-detalhe-desc ul {
    margin: 0 0 var(--sp-3);
    padding-left: var(--sp-5);
    list-style: disc;
}

.produto-detalhe-desc li { margin-bottom: var(--sp-1); }

/* Rotulos de secao dentro do texto tecnico ("Consumo:", "VANTAGENS",
   "Preparacao da superficie"). Discretos de proposito: o criterio que
   identifica esses rotulos e heuristico, entao quando ele erra o resultado
   ainda le como uma linha enfatizada, nao como um titulo fora de lugar. */
.produto-detalhe-desc h4 {
    font-size: 0.9375rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0;
    color: var(--color-text);
    margin: var(--sp-5) 0 var(--sp-2);
}

.produto-detalhe-desc > h4:first-child { margin-top: 0; }

/* Placeholder da miniatura de produto sem foto (63 dos 117 ainda nao tem). */
.produto-img-vazia {
    background: #572925;
    color: rgba(252, 210, 48, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
}

/* Blocos secundarios: Detalhes do produto, Embalagens disponiveis */
.produto-detalhe-bloco {
    margin-top: var(--sp-5);
    padding-top: var(--sp-5);
    border-top: 1px solid var(--color-border);
}

.produto-detalhe-bloco > h2 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 0 0 var(--sp-3);
    color: var(--color-text);
}

.produto-embalagens {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-2);
    margin: 0;
    padding: 0;
    list-style: none;
}

.produto-embalagens li {
    padding: var(--sp-2) var(--sp-4);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: var(--gray-50);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text);
}

/* Tabela de especificacoes tecnicas (vem do catalogo do fabricante) */
.produto-tabela-wrap {
    overflow-x: auto;
    margin: 0 0 var(--sp-4);
    -webkit-overflow-scrolling: touch;
}

.produto-especificacoes {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
    min-width: 320px;
}

.produto-especificacoes td {
    border: 1px solid var(--color-border);
    padding: var(--sp-2) var(--sp-3);
    text-align: left;
    vertical-align: top;
    color: var(--color-text-muted);
}

.produto-especificacoes tr:nth-child(odd) td { background: var(--gray-50); }
.produto-especificacoes td:first-child { font-weight: 600; color: var(--color-text); }

/* Aviso no fim da descricao comercial: o texto do site nao substitui a FT */
.produto-detalhe-desc p.produto-aviso {
    margin-top: var(--sp-4);
    padding: var(--sp-3) var(--sp-4);
    border-left: 3px solid var(--color-primary, #FCD230);
    background: var(--gray-50);
    border-radius: var(--radius-sm);
    font-size: 0.8125rem;
    line-height: 1.6;
}

/* ===== FICHA TECNICA DO FABRICANTE ===== */
.produto-ficha {
    margin-top: var(--sp-8);
    background: var(--white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.produto-ficha > summary {
    cursor: pointer;
    list-style: none;
    padding: var(--sp-4) var(--sp-6);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--color-text);
    display: flex;
    align-items: center;
    gap: var(--sp-3);
}

.produto-ficha > summary::-webkit-details-marker { display: none; }

.produto-ficha > summary::after {
    content: "+";
    margin-left: auto;
    font-size: 1.25rem;
    line-height: 1;
    color: var(--color-text-muted);
}

.produto-ficha[open] > summary::after { content: "\2212"; }
.produto-ficha > summary:hover { background: var(--gray-50); }
.produto-ficha > summary:focus-visible { outline: 2px solid var(--color-primary, #FCD230); outline-offset: -2px; }

.produto-ficha-corpo {
    padding: 0 var(--sp-6) var(--sp-6);
    border-top: 1px solid var(--color-border);
    color: var(--color-text-muted);
    line-height: 1.7;
    font-size: 0.9375rem;
}

.produto-ficha-corpo p { margin: var(--sp-4) 0 0; }

.produto-ficha-corpo h4 {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--color-text);
    margin: var(--sp-6) 0 0;
    padding-top: var(--sp-4);
    border-top: 1px solid var(--color-border);
}

.produto-ficha-fonte {
    margin: var(--sp-3) 0 0;
    padding-left: var(--sp-5);
    list-style: disc;
    font-size: 0.875rem;
}

.produto-ficha-fonte li { margin-bottom: var(--sp-1); }
.produto-ficha-fonte a { color: var(--color-text); text-decoration: underline; word-break: break-all; }

/* CTA, meta e relacionados */
.produto-detalhe-cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-3);
    margin-top: var(--sp-6);
}

.produto-detalhe-meta {
    margin-top: var(--sp-4);
    font-size: 0.8125rem;
    color: var(--color-text-muted);
}

.produto-relacionados { margin-top: var(--sp-10); }

.produto-relacionados > h2 {
    font-family: var(--font-display);
    margin-bottom: var(--sp-5);
}

/* ===== SCROLL REVEAL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 600ms var(--ease-out),
        transform 600ms var(--ease-out);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays via nth-child */
.reveal:nth-child(2) { transition-delay: 80ms; }
.reveal:nth-child(3) { transition-delay: 160ms; }
.reveal:nth-child(4) { transition-delay: 240ms; }
.reveal:nth-child(5) { transition-delay: 320ms; }

/* ===== KEYFRAMES ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* ===== SCROLL PROGRESS BAR ===== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-500), var(--gold-400));
    z-index: 9999;
    width: 0%;
    transition: width 80ms linear;
    pointer-events: none;
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal { opacity: 1; transform: none; }
    .hero-mascot img { animation: none; }
    .mascot-wrap img { animation: none; }
    .whatsapp-float { animation: none; }
}
