/* ═══════════════════════════════════════════
   DESIGN TOKENS
   ═══════════════════════════════════════════ */
:root {
    --color-espresso: #2C1A14;
    --color-cream: #F5F1E7;
    --color-gold: #C9A26A;
    --color-red: #C41E3A;
    --color-red-dark: #9B1830;
    --color-paper: #F4EFE6;
    --color-coffee-dark: #3B2A23;
    --color-coffee-mid: #6B4F3A;
    --color-text-light: #FAFAFA;
    --color-text-dark: #382A22;
    --color-text-muted: #4A3A35;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --section-padding: clamp(5rem, 10vw, 10rem);
    --inner-max: 1280px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    background-color: var(--color-espresso);
    color: var(--color-cream);
    font-family: var(--font-body);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

/* ═══════════════════════════════════════════
   HERO (NÃO ALTERAR)
   ═══════════════════════════════════════════ */
.scroll-container { height: 1000vh; position: relative; width: 100%; }
.hero-sticky {
    position: sticky; top: 0; left: 0;
    width: 100vw; height: 100vh; overflow: hidden;
    background-color: var(--color-espresso);
}
#hero-canvas { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(44,26,20,.95) 0%, rgba(44,26,20,.6) 35%, rgba(44,26,20,0) 65%);
    z-index: 2; pointer-events: none;
}
.hero-text-container {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 3;
    display: flex; align-items: center; justify-content: flex-start; text-align: left;
    padding: 2rem 6vw;
}
.hero-text-step {
    position: absolute; opacity: 0; transform: translateY(30px) scale(.98);
    transition: opacity 1.2s cubic-bezier(.25,.46,.45,.94), transform 1.2s cubic-bezier(.25,.46,.45,.94);
    max-width: 600px; width: 100%; pointer-events: none;
}
.hero-text-step.active { opacity: 1; transform: translateY(0) scale(1); }
.hero-text-step.fade-out-up { opacity: 0; transform: translateY(-30px) scale(.98); }
.hero-text-step h1 {
    font-family: var(--font-heading); font-size: clamp(3.5rem,6vw,5.5rem);
    font-weight: 400; color: var(--color-cream); margin-bottom: 1.2rem; line-height: 1.1;
}
.hero-text-step h2 {
    font-family: var(--font-heading); font-size: clamp(2.8rem,5vw,4.5rem);
    font-weight: 400; color: var(--color-cream); margin-bottom: 1.2rem; line-height: 1.15;
}
.hero-text-step p {
    font-family: var(--font-body); font-size: clamp(1.1rem,1.5vw,1.4rem);
    font-weight: 300; color: var(--color-cream); opacity: .9; letter-spacing: 1px; line-height: 1.7;
}

/* ═══════════════════════════════════════════
   SHARED SECTION UTILITIES
   ═══════════════════════════════════════════ */
.section { position: relative; z-index: 10; overflow: hidden; }
.section__inner {
    max-width: var(--inner-max); width: 100%; margin: 0 auto;
    padding: var(--section-padding) clamp(1.5rem, 6vw, 4rem);
}
.section__eyebrow {
    display: inline-block; font-family: var(--font-body);
    font-size: .8rem; font-weight: 600; letter-spacing: 3px;
    text-transform: uppercase; color: var(--color-red);
    margin-bottom: 1.5rem;
}
.section__eyebrow--light { color: var(--color-gold); }
.section__title {
    font-family: var(--font-heading); font-weight: 600;
    font-size: clamp(2.2rem, 4vw, 3.5rem); line-height: 1.15;
    color: var(--color-text-dark); margin-bottom: 2rem; letter-spacing: -0.5px;
}
.section__title--light { color: var(--color-cream); }
.section__title em { font-style: italic; color: var(--color-red); }
.section__text {
    font-family: var(--font-body); font-size: 1.05rem; line-height: 1.8;
    color: var(--color-text-muted); margin-bottom: 1.5rem; font-weight: 300;
}

/* ═══════════════════════════════════════════
   REVEAL ANIMATIONS
   ═══════════════════════════════════════════ */
.reveal {
    opacity: 0; transform: translateY(50px);
    transition: opacity .9s cubic-bezier(.25,.46,.45,.94), transform .9s cubic-bezier(.25,.46,.45,.94);
}
.reveal--left { transform: translateX(-60px) translateY(0); }
.reveal--right { transform: translateX(60px) translateY(0); }
.reveal.active { opacity: 1; transform: translate(0,0); }

/* ═══════════════════════════════════════════
   IMAGE FRAMES
   ═══════════════════════════════════════════ */
.image-frame { position: relative; overflow: hidden; border-radius: 6px; }
.image-frame img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 6s cubic-bezier(.25,.46,.45,.94);
}
.image-frame:hover img { transform: scale(1.04); }
.image-frame--rustic {
    border-radius: 4px 16px 4px 16px;
    box-shadow: 0 20px 60px rgba(44,26,20,.25), 0 0 0 1px rgba(201,162,106,.15);
}
.image-frame--float {
    border-radius: 8px;
    box-shadow: 0 30px 80px rgba(44,26,20,.3);
}
.image-frame--product {
    border-radius: 12px;
    box-shadow: 0 40px 100px rgba(0,0,0,.3);
}

/* ═══════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════ */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    font-family: var(--font-body); font-weight: 600; font-size: .95rem;
    text-decoration: none; cursor: pointer; border: none;
    letter-spacing: 1.5px; text-transform: uppercase;
    padding: 1rem 2.5rem; border-radius: 8px;
    transition: all .4s cubic-bezier(.25,.46,.45,.94);
}
.btn--primary {
    background: linear-gradient(135deg, var(--color-red) 0%, var(--color-red-dark) 100%);
    color: #fff;
    box-shadow: 0 6px 24px rgba(196,30,58,.3);
}
.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(196,30,58,.45);
}
.btn--secondary {
    background: transparent; color: var(--color-text-dark);
    border: 1.5px solid var(--color-coffee-dark); padding: .95rem 2.4rem;
}
.btn--secondary:hover { background: var(--color-coffee-dark); color: var(--color-cream); }
.btn--large { padding: 1.2rem 3.5rem; font-size: 1rem; }

/* ═══════════════════════════════════════════
   MEDALHA TIKTOK SHOP (Hero)
   ═══════════════════════════════════════════ */
.hero-tiktok-medal {
    position: absolute;
    top: 0;
    right: 5%;
    width: 220px;
    z-index: 20;
    text-decoration: none;
    transform-origin: top center;
    animation: swing-medal 6s ease-in-out infinite;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.5));
}

.hero-tiktok-medal img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-tiktok-medal:hover {
    animation-play-state: paused;
    transform: scale(1.05) rotate(0deg);
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.7));
}

@keyframes swing-medal {
    0% { transform: rotate(3deg); }
    50% { transform: rotate(-3deg); }
    100% { transform: rotate(3deg); }
}

@media (max-width: 768px) {
    .hero-tiktok-medal {
        width: 160px;
        right: 3%;
    }
}

/* ═══════════════════════════════════════════
   BOTÃO FLUTUANTE LOJA
   ═══════════════════════════════════════════ */
.btn-floating-shop {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
    background: linear-gradient(135deg, var(--color-red) 0%, var(--color-red-dark) 100%);
    color: #fff;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(196,30,58,.4);
    transition: all .4s cubic-bezier(.25,.46,.45,.94);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-floating-shop:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(196,30,58,.6);
    color: #fff;
}
.btn-floating-shop svg {
    width: 20px;
    height: 20px;
}
@media (max-width: 768px) {
    .btn-floating-shop {
        bottom: 1.5rem;
        right: 1.5rem;
        padding: 0.8rem 1.5rem;
        font-size: 0.85rem;
    }
}

/* ═══════════════════════════════════════════
   SEÇÃO 2 — PRODUTO 360 (redesign editorial)
   ═══════════════════════════════════════════ */
.section--produto-360 {
    background-color: #110a07;
    position: relative;
    overflow: hidden;
    padding: 0;
}
/* Fundo atmosférico */
.p360-bg {
    position: absolute; inset: 0; z-index: 0; pointer-events: none;
}
.p360-grain {
    position: absolute; inset: 0; z-index: 1;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.055'/%3E%3C/svg%3E");
    opacity: .6;
}
.p360-glow {
    position: absolute; inset: 0; z-index: 0;
    background:
        radial-gradient(ellipse 60% 50% at 50% 55%, rgba(196,30,58,0.12) 0%, transparent 70%),
        radial-gradient(ellipse 80% 40% at 50% 100%, rgba(44,26,20,0.9) 0%, transparent 60%);
}

/* Inner container */
.p360-inner {
    position: relative; z-index: 2;
    max-width: 1400px; margin: 0 auto;
    padding: clamp(4rem, 8vw, 8rem) clamp(1.5rem, 6vw, 4rem);
    display: flex; flex-direction: column; align-items: center;
}

/* Header editorial */
.p360-header {
    display: flex; align-items: center; gap: 1.5rem;
    width: 100%; max-width: 700px; margin-bottom: 2rem;
}
.p360-header__line {
    flex: 1; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,162,106,0.4), transparent);
}
.p360-eyebrow {
    font-family: var(--font-body); font-size: .75rem; font-weight: 500;
    letter-spacing: 4px; text-transform: uppercase; color: var(--color-gold);
    white-space: nowrap;
}

/* Título */
.p360-title {
    font-family: var(--font-heading); font-weight: 400;
    font-size: clamp(2rem, 3.5vw, 3rem);
    color: var(--color-cream); text-align: center;
    line-height: 1.2; margin-bottom: clamp(3rem, 6vw, 5rem);
}
.p360-title em { font-style: italic; color: var(--color-gold); }

/* Stage: layout 3 colunas */
.p360-stage {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: clamp(2rem, 4vw, 5rem);
    align-items: center;
    width: 100%;
}

/* Features laterais */
.p360-features {
    display: flex; flex-direction: column; gap: 2.5rem;
}
.p360-features--right { text-align: left; }
.p360-features--left { text-align: right; }
.p360-feat {
    display: flex; gap: 1rem; align-items: flex-start;
}
.p360-features--left .p360-feat { flex-direction: row-reverse; }
.p360-feat__number {
    font-family: var(--font-heading); font-size: 3.2rem;
    font-weight: 700; line-height: 1;
    color: rgba(201,162,106, 0.18);
    flex-shrink: 0; min-width: 3rem;
    transition: color .4s ease;
}
.p360-feat:hover .p360-feat__number { color: rgba(201,162,106,0.5); }
.p360-feat__body strong {
    display: block; font-family: var(--font-heading);
    font-size: 1.3rem; font-weight: 600;
    color: var(--color-cream); margin-bottom: .4rem;
}
.p360-feat__body p {
    font-size: 1rem; color: rgba(245,241,231,.45);
    line-height: 1.6; margin: 0; font-weight: 300;
}

/* Produto central */
.p360-product {
    position: relative;
    display: flex; flex-direction: column; align-items: center;
    width: clamp(240px, 28vw, 380px);
}
/* Anéis decorativos */
.p360-ring {
    position: absolute; border-radius: 50%;
    border: 1px solid rgba(201,162,106,0.08);
    pointer-events: none;
    animation: p360-pulse 4s ease-in-out infinite;
}
.p360-ring--outer {
    width: 130%; padding-top: 130%; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}
.p360-ring--inner {
    width: 110%; padding-top: 110%; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    border-color: rgba(201,162,106,0.14);
    animation-delay: .5s;
}
@keyframes p360-pulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.015); }
}

/* Canvas wrap */
.p360-canvas-wrap {
    width: 100%; position: relative; cursor: grab;
    border-radius: 8px;
    filter: drop-shadow(0 40px 60px rgba(0,0,0,.7)) drop-shadow(0 0 40px rgba(196,30,58,0.12));
    transition: filter .3s ease;
}
.p360-canvas-wrap:active { cursor: grabbing; }
.p360-canvas-wrap:hover {
    filter: drop-shadow(0 50px 80px rgba(0,0,0,.8)) drop-shadow(0 0 60px rgba(196,30,58,0.2));
}
#coffee-360-canvas { width: 100%; height: auto; display: block; pointer-events: none; }

/* Label abaixo do produto */
.p360-product__label {
    display: flex; align-items: center; gap: .6rem;
    margin-top: 1.5rem; color: rgba(201,162,106,.5);
    font-size: .7rem; letter-spacing: 3px; text-transform: uppercase;
    font-family: var(--font-body); font-weight: 500;
    transition: color .3s ease;
}
.p360-canvas-wrap:hover + .p360-product__label { color: rgba(201,162,106,.8); }

/* Barra de stats */
.p360-stats {
    display: flex; align-items: center; justify-content: center;
    gap: 0; margin-top: clamp(3rem, 6vw, 5rem); width: 100%;
    border: 1px solid rgba(201,162,106,.1);
    border-radius: 4px; overflow: hidden;
    background: rgba(255,255,255,.02);
    backdrop-filter: blur(4px);
}
.p360-stat {
    flex: 1; display: flex; flex-direction: column; align-items: center;
    padding: 1.5rem 1rem; text-align: center;
    transition: background .3s ease;
}
.p360-stat:hover { background: rgba(201,162,106,.04); }
.p360-stat__value {
    font-family: var(--font-heading); font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700; color: var(--color-cream); line-height: 1;
    margin-bottom: .4rem; display: block;
}
.p360-stat__label {
    font-size: .85rem; letter-spacing: 2px; text-transform: uppercase;
    color: rgba(201,162,106,.6); font-weight: 500; font-family: var(--font-body);
}
.p360-stat__sep {
    width: 1px; height: 50px;
    background: linear-gradient(180deg, transparent, rgba(201,162,106,.2), transparent);
    flex-shrink: 0;
}

/* Chamada para o Laudo Sensorial */
.p360-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 3.5rem;
    width: 100%;
}
.btn--glass-gold {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(26, 17, 13, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(201, 162, 106, 0.25);
    color: var(--color-cream);
    padding: 1.1rem 3rem;
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 2.5px;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}
.btn--glass-gold:hover {
    background: rgba(201, 162, 106, 0.12);
    border-color: rgba(201, 162, 106, 0.8);
    color: var(--color-gold);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(201, 162, 106, 0.25), 0 0 20px rgba(201, 162, 106, 0.15);
}
.btn--glass-gold .btn-icon {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.btn--glass-gold:hover .btn-icon {
    transform: rotate(30deg) scale(1.1);
    color: var(--color-gold);
}
.p360-cta-badge {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 3px;
    color: rgba(201, 162, 106, 0.65);
    text-transform: uppercase;
    animation: pulse-soft 3s ease-in-out infinite;
}
@keyframes pulse-soft {
    0%, 100% { opacity: 0.65; }
    50% { opacity: 1; }
}

/* ═══════════════════════════════════════════
   SEÇÃO 3 — JORNADA SENSORIAL (Scroll Animado)
   ═══════════════════════════════════════════ */
.section--problema { background-color: var(--color-espresso); }
.problema__header { text-align: center; margin-bottom: 4rem; }
.problema__chain {
    display: flex; align-items: center; justify-content: center;
    flex-wrap: wrap; gap: .5rem; margin-bottom: 3rem;
}
.chain-step {
    display: flex; flex-direction: column; align-items: center;
    text-align: center; width: 100px;
}
.chain-step__icon {
    width: 68px; height: 68px; border-radius: 50%;
    background: rgba(201,162,106,.1); border: 1px solid rgba(201,162,106,.25);
    display: flex; align-items: center; justify-content: center;
    color: var(--color-gold); margin-bottom: .75rem;
    transition: all .4s ease;
}
.chain-step:hover .chain-step__icon {
    background: rgba(201,162,106,.2); transform: translateY(-4px);
}
.chain-step__label {
    font-family: var(--font-heading); font-weight: 600;
    font-size: .75rem; color: var(--color-cream);
    text-transform: uppercase; letter-spacing: .5px; opacity: .8;
}
.chain-arrow { color: rgba(201,162,106,.4); display: flex; align-items: center; margin-bottom: 2rem; }

.problema__bottom { text-align: center; margin-bottom: 4rem; }
.problema__badge {
    display: inline-block; padding: 1.2rem 2rem;
    background: rgba(196,30,58,.12); border: 1px solid rgba(196,30,58,.3);
    border-radius: 4px 14px 4px 14px; transform: rotate(-1deg);
}
.problema__badge p {
    font-family: var(--font-heading); font-size: 1.2rem;
    color: var(--color-cream); line-height: 1.5; margin: 0;
}
.problema__badge strong { color: var(--color-red); }
.problema__image {
    width: 100%; border-radius: 8px; overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,.4);
}
.problema__image img { width: 100%; display: block; opacity: .9; }

/* ═══════════════════════════════════════════
   SEÇÃO 4 — SOLUÇÃO
   ═══════════════════════════════════════════ */
.section--solucao { background-color: var(--color-paper); }
.solucao__grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 6rem); align-items: center;
}
.solucao__divider {
    width: 60px; height: 2px; margin-bottom: 2rem;
    background: linear-gradient(90deg, var(--color-red), var(--color-gold));
}
.solucao__steps { margin-top: 2.5rem; }
.solucao__step {
    display: flex; gap: 1.5rem; align-items: flex-start;
    margin-bottom: 2rem; padding-bottom: 2rem;
    border-bottom: 1px solid rgba(59,42,35,.08);
}
.solucao__step:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.solucao__step-number {
    font-family: var(--font-heading); font-size: 2.5rem; font-weight: 700;
    color: var(--color-red); opacity: .2; line-height: 1; min-width: 50px;
}
.solucao__step h4 {
    font-family: var(--font-heading); font-size: 1.15rem; font-weight: 600;
    color: var(--color-text-dark); margin-bottom: .4rem;
}
.solucao__step p {
    font-family: var(--font-body); font-size: .95rem; color: var(--color-text-muted);
    line-height: 1.6; font-weight: 300;
}
.solucao__image { position: relative; }
.solucao__seal {
    position: absolute; bottom: -2rem; right: -1rem;
    width: 120px; height: 120px; z-index: 2;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,.2));
}
.solucao__seal img { width: 100%; height: 100%; object-fit: contain; }
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(3deg); }
}

/* ═══════════════════════════════════════════
   SEÇÃO 5 — PRODUTO
   ═══════════════════════════════════════════ */
.section--produto { background-color: var(--color-espresso); }
.produto__grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 6rem); align-items: center;
}
.produto__content .section__title { color: var(--color-cream); }
.produto__content .section__eyebrow { color: var(--color-gold); }
.produto__specs { margin: 2.5rem 0; }
.produto__spec {
    display: flex; gap: 1rem; align-items: center;
    margin-bottom: 1.5rem; padding: 1rem 1.2rem;
    background: rgba(255,255,255,.03); border-radius: 8px;
    border: 1px solid rgba(201,162,106,.08);
    transition: all .3s ease;
}
.produto__spec:hover {
    background: rgba(255,255,255,.06);
    border-color: rgba(201,162,106,.2);
}
.produto__spec-icon {
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(196,30,58,.1); color: var(--color-red);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.produto__spec strong {
    display: block; font-family: var(--font-heading); font-size: 1rem;
    color: var(--color-cream); margin-bottom: .15rem;
}
.produto__spec p {
    font-size: .85rem; color: rgba(245,241,231,.5); margin: 0; line-height: 1.4;
}
.produto__cta-group { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1rem; }
.produto__cta-group .btn--secondary { color: var(--color-cream); border-color: rgba(245,241,231,.25); }
.produto__cta-group .btn--secondary:hover { background: var(--color-cream); color: var(--color-espresso); }

/* ═══════════════════════════════════════════
   SEÇÃO 6 — DEPOIMENTOS
   ═══════════════════════════════════════════ */
.section--depoimentos { background-color: var(--color-paper); }
.depoimentos__header { text-align: center; margin-bottom: 4rem; }
.depoimentos__grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.depoimento-card {
    background: #fff; border-radius: 12px; padding: 2.5rem 2rem;
    box-shadow: 0 8px 40px rgba(44,26,20,.06);
    border: 1px solid rgba(44,26,20,.04);
    transition: all .4s ease; position: relative;
}
.depoimento-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--color-red), var(--color-gold));
    border-radius: 12px 12px 0 0; opacity: 0; transition: opacity .4s ease;
}
.depoimento-card:hover { transform: translateY(-6px); box-shadow: 0 16px 60px rgba(44,26,20,.12); }
.depoimento-card:hover::before { opacity: 1; }
.depoimento-card__stars {
    color: var(--color-gold); font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 1.2rem;
}
.depoimento-card__text {
    font-family: var(--font-body); font-size: .95rem; line-height: 1.7;
    color: var(--color-text-muted); font-style: italic; margin-bottom: 1.5rem; font-weight: 300;
}
.depoimento-card__author { display: flex; align-items: center; gap: 1rem; }
.depoimento-card__avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, var(--color-red), var(--color-red-dark));
    color: #fff; display: flex; align-items: center; justify-content: center;
    font-weight: 600; font-size: .8rem; letter-spacing: 1px;
}
.depoimento-card__author strong {
    display: block; font-size: .9rem; color: var(--color-text-dark);
}
.depoimento-card__author span {
    font-size: .8rem; color: var(--color-text-muted); opacity: .7;
}

/* ═══════════════════════════════════════════
   SEÇÃO 7 — CTA FINAL
   ═══════════════════════════════════════════ */
.section--cta-final {
    position: relative; min-height: 80vh;
    display: flex; align-items: center; justify-content: center;
}
.cta-final__bg {
    position: absolute; inset: 0; z-index: 0;
}
.cta-final__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-final__overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(180deg, rgba(44,26,20,.85) 0%, rgba(44,26,20,.92) 50%, rgba(44,26,20,.97) 100%);
}
.cta-final__content {
    position: relative; z-index: 2; text-align: center;
    display: flex; flex-direction: column; align-items: center;
}
.cta-final__logo {
    width: 120px; height: 120px; object-fit: contain; margin-bottom: 2.5rem;
    filter: brightness(1.1); opacity: .9;
}
.cta-final__title { margin-bottom: 2.5rem; }
.cta-final__sub {
    margin-top: 1.5rem; font-size: .85rem; color: rgba(245,241,231,.45);
    letter-spacing: 1px;
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer {
    background: #1a110d; position: relative; z-index: 10;
    border-top: 1px solid rgba(201,162,106,.1);
}
.footer__inner {
    max-width: var(--inner-max); margin: 0 auto;
    padding: 4rem clamp(1.5rem, 6vw, 4rem) 3rem;
    display: flex; justify-content: space-between; align-items: flex-start;
    gap: 3rem; flex-wrap: wrap;
}
.footer__logo { width: 80px; margin-bottom: 1.2rem; opacity: .7; }
.footer__tagline {
    font-family: var(--font-heading); font-style: italic;
    font-size: .95rem; color: rgba(245,241,231,.4); line-height: 1.5;
}
.footer__links { display: flex; gap: 4rem; }
.footer__col { display: flex; flex-direction: column; gap: .6rem; }
.footer__col h4 {
    font-family: var(--font-heading); font-size: .85rem; font-weight: 600;
    color: var(--color-gold); text-transform: uppercase; letter-spacing: 2px;
    margin-bottom: .5rem;
}
.footer__col a {
    font-size: .9rem; color: rgba(245,241,231,.45);
    text-decoration: none; transition: color .3s ease;
}
.footer__col a:hover { color: var(--color-cream); }
.footer__bottom {
    max-width: var(--inner-max); margin: 0 auto;
    padding: 2rem clamp(1.5rem, 6vw, 4rem);
    border-top: 1px solid rgba(201,162,106,.06);
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer__bottom p { font-size: .8rem; color: rgba(245,241,231,.25); }
.footer__craft { font-style: italic; }

/* ═══════════════════════════════════════════
   SEÇÃO 3 — JORNADA SENSORIAL (Scroll 2)
   ═══════════════════════════════════════════ */
.s3-scroll-container { height: 800vh; position: relative; width: 100%; background-color: var(--color-espresso); }

#s3-canvas { 
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; 
    object-fit: cover; z-index: 1; 
}

.s3-overlay { display: none; /* Removido para não ofuscar o vídeo */ }

.s3-cards-container {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 4;
    display: flex; flex-direction: column; justify-content: space-evenly;
    padding: 10vh 6vw; pointer-events: none;
}

.s3-card {
    display: flex; 
    flex-direction: row; 
    align-items: center; 
    background: linear-gradient(135deg, rgba(30, 20, 15, 0.5) 0%, rgba(10, 6, 4, 0.8) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(201, 162, 106, 0.15);
    border-radius: 16px;
    padding: 1.2rem;
    width: 600px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.05);
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.4s ease, border-color 0.4s ease;
    pointer-events: auto;
}

.s3-card.active { opacity: 1; transform: translateY(0) scale(1); }
.s3-card.active:hover {
    border-color: rgba(201, 162, 106, 0.5);
    box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 40px rgba(201, 162, 106, 0.1), inset 0 1px 0 rgba(255,255,255,0.1);
    transform: translateY(-4px) scale(1.01);
}

.s3-card.fade-out-up { opacity: 0; transform: translateY(-40px) scale(0.95); }

/* Layout em Cascata */
#s3-card-1 { align-self: flex-start; }
#s3-card-2 { align-self: center; margin-left: 10vw; }
#s3-card-3 { align-self: flex-start; margin-left: 5vw; }

.s3-card__image-wrap {
    width: 130px; height: 130px; flex-shrink: 0;
    border-radius: 12px; overflow: hidden;
    margin-right: 1.5rem;
    position: relative;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
}
.s3-card__image-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 15px rgba(0,0,0,0.4);
    border-radius: 12px;
    pointer-events: none;
}
.s3-card__image-wrap img { 
    width: 100%; height: 100%; 
    object-fit: cover; 
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.s3-card.active:hover .s3-card__image-wrap img {
    transform: scale(1.1);
}

.s3-card__content { display: flex; flex-direction: column; justify-content: center; padding-right: 1rem; }
.s3-card__eyebrow {
    font-family: var(--font-body); font-size: 0.75rem; font-weight: 600;
    letter-spacing: 3px; text-transform: uppercase; color: var(--color-gold);
    margin-bottom: 0.5rem;
}
.s3-card__title {
    font-family: var(--font-heading); font-size: 1.8rem; font-weight: 500;
    color: var(--color-cream); margin-bottom: 0.6rem; line-height: 1.1;
}
.s3-card__content p {
    font-family: var(--font-body); font-size: 0.95rem; line-height: 1.5;
    color: rgba(245, 241, 231, 0.85); font-weight: 300;
}

/* ═══════════════════════════════════════════
   SEÇÕES 4 E 5 — BANNERS RESPONSIVOS
   ═══════════════════════════════════════════ */
.section--s4-fullscreen, .section--s5-fullscreen {
    position: relative;
    min-height: 100vh;
    width: 100vw;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: clamp(4rem, 8vw, 8rem) clamp(1.5rem, 6vw, 4rem);
}

.s4-bg, .s5-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
}

.s4-bg img, .s5-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
}

.s4-overlay, .s5-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(17,10,7,0.85) 0%, rgba(17,10,7,0.4) 50%, transparent 100%);
    z-index: 2;
}

/* S4 Content */
.s4-content {
    position: relative;
    z-index: 3;
    max-width: 600px;
}
.s4-content .section__title {
    margin-bottom: 1.5rem;
}
.s4-content .section__text {
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.s4-content .btn--glass-coffee {
    display: inline-flex;
    align-items: center;
    background: rgba(26, 17, 13, 0.7); /* Dark earthy brown with transparency */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(245, 241, 231, 0.2);
    color: var(--color-cream);
    border-radius: 8px;
    padding: 1.2rem 2.8rem;
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 2px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.s4-content .btn--glass-coffee:hover {
    background: rgba(26, 17, 13, 0.9);
    border-color: rgba(201, 162, 106, 0.6);
    color: var(--color-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

/* S5 Content (Solucao Reborn) */
.s5-content-grid {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    max-width: 600px;
}

.solucao__divider {
    width: 60px;
    height: 2px;
    background: var(--color-gold);
    margin: 2rem 0;
}

.solucao__steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.solucao__step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.solucao__content.active .solucao__step {
    opacity: 1;
    transform: translateY(0);
}

.solucao__content.active .solucao__step:nth-child(1) { transition-delay: 0.3s; }
.solucao__content.active .solucao__step:nth-child(2) { transition-delay: 0.5s; }
.solucao__content.active .solucao__step:nth-child(3) { transition-delay: 0.7s; }

.solucao__step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(201, 162, 106, 0.1);
    color: var(--color-gold);
    border: 1px solid rgba(201, 162, 106, 0.2);
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.solucao__step:hover .solucao__step-icon {
    background: var(--color-gold);
    color: var(--color-coffee-dark);
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(201, 162, 106, 0.4);
}

.solucao__step h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--color-cream);
    margin-bottom: 0.5rem;
}

.solucao__step p {
    color: rgba(245,241,231,0.7);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.solucao__content { max-width: 500px; }

/* Modifier lights */
.section__title--light { color: var(--color-cream); }
.section__text--light { color: rgba(245,241,231,0.8); }
.section__eyebrow--light { color: var(--color-gold); }

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 968px) {
    .manifesto__grid,
    .solucao__grid,
    .produto__grid { grid-template-columns: 1fr; gap: 3rem; }
    .manifesto__image { max-width: 100%; order: -1; }
    .solucao__image { order: -1; }
    .depoimentos__grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }

    /* 360 section: stack vertically */
    .p360-stage { grid-template-columns: 1fr; justify-items: center; gap: 2rem; }
    .p360-features--left,
    .p360-features--right { text-align: left; width: 100%; max-width: 500px; }
    .p360-features--left .p360-feat { flex-direction: row; }
    .p360-product { width: clamp(240px, 60vw, 340px); }
    .p360-stats { flex-wrap: wrap; }
    .p360-stat { min-width: 50%; border-bottom: 1px solid rgba(201,162,106,.07); }
    .p360-stat__sep { display: none; }

    /* S3 Adjustments */
    #s3-card-1, #s3-card-2, #s3-card-3 {
        align-self: center !important;
        margin-left: 0 !important;
    }
    .s3-card {
        width: 100%;
        max-width: 500px;
    }
}
@media (max-width: 768px) {
    .chain-arrow { display: none; }
    .problema__chain { gap: 1rem; justify-content: center; }
    .chain-step { width: 80px; }
    .footer__inner { flex-direction: column; }
    .footer__links { gap: 2rem; }
    .footer__bottom { flex-direction: column; text-align: center; }
    .solucao__seal { width: 90px; height: 90px; bottom: -1rem; right: 0; }
    .p360-product { width: clamp(200px, 75vw, 300px); }
    .p360-stat { min-width: 100%; }
    
    /* S3 Mobile Adjustments */
    .s3-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    .s3-card__image-wrap {
        width: 100%;
        height: 160px;
        margin-right: 0;
        margin-bottom: 1.2rem;
    }
    .s3-card__content {
        padding-right: 0;
    }
    .s3-card__title {
        font-size: 1.5rem;
    }
    .s3-card__content p {
        font-size: 0.95rem;
    }

    /* S4 e S5 Mobile Adjustments */
    .s4-overlay, .s5-overlay {
        background: linear-gradient(to top, rgba(17,10,7,0.95) 0%, rgba(17,10,7,0.7) 40%, transparent 100%);
    }
    .section--s4-fullscreen, .section--s5-fullscreen {
        align-items: flex-end;
        padding-bottom: 6rem;
    }
    .s4-content .section__title, .s5-content-grid .section__title {
        font-size: 2rem;
    }
}

/* ═══════════════════════════════════════════
   PÁGINA DO LAUDO (LAUDO.HTML) - VIVID REDESIGN
   ═══════════════════════════════════════════ */
.page-laudo {
    background-color: var(--color-espresso);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Parallax Background */
.laudo-bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
}

.laudo-parallax-bg {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.45) contrast(1.1);
    will-change: transform;
}

.laudo-glow-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 30%, rgba(201, 162, 106, 0.15) 0%, rgba(44, 26, 20, 0.85) 70%, rgba(17, 10, 7, 1) 100%);
    mix-blend-mode: multiply;
}

.laudo-particles {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(201,162,106,0.8) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.15;
    animation: drift 60s linear infinite;
}

@keyframes drift {
    0% { background-position: 0 0; }
    100% { background-position: 400px 400px; }
}

.relative-z {
    position: relative;
    z-index: 10;
}

/* Navbar */
.laudo-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem clamp(1.5rem, 6vw, 4rem);
    max-width: var(--inner-max);
    margin: 0 auto;
}

.laudo-nav__back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-gold);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(44, 26, 20, 0.6);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    border: 1px solid rgba(201,162,106,0.3);
    backdrop-filter: blur(10px);
}

.laudo-nav__back:hover {
    color: var(--color-cream);
    background: rgba(201,162,106,0.2);
    box-shadow: 0 0 20px rgba(201,162,106,0.2);
    transform: translateX(-4px);
}

.laudo-nav__logo {
    height: 55px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.1));
}

/* Main */
.laudo-main {
    padding-bottom: 6rem;
}

.laudo-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1.5rem 4rem;
}

.laudo-badge {
    background: rgba(196, 30, 58, 0.15);
    border: 1px solid rgba(196, 30, 58, 0.4);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    letter-spacing: 4px;
    color: #ff4d6d;
    box-shadow: 0 0 15px rgba(196, 30, 58, 0.3);
}

.laudo-title-glow {
    text-shadow: 0 0 30px rgba(201, 162, 106, 0.4);
    margin-top: 1rem;
}

.laudo-dashboard {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

/* Glassmorphism Heavy Effect */
.glass-heavy {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(44, 26, 20, 0.6) 100%);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(201, 162, 106, 0.25);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 60px rgba(0,0,0,0.6), inset 0 0 20px rgba(201, 162, 106, 0.05);
    border-radius: 20px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.glass-heavy:hover {
    transform: translateY(-5px);
    box-shadow: 0 40px 80px rgba(0,0,0,0.7), 0 0 40px rgba(201, 162, 106, 0.15);
}

/* Score Card Central */
.laudo-score-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    padding: 3.5rem 3rem;
    max-width: 950px;
    margin: 0 auto;
    width: 100%;
}

.laudo-score__ring {
    position: relative;
    width: 180px;
    height: 180px;
    flex-shrink: 0;
}

.glow-svg {
    filter: drop-shadow(0 0 15px rgba(196, 30, 58, 0.6));
}

.circular-chart {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    max-height: 250px;
}

.circle-bg {
    fill: none;
    stroke: rgba(201,162,106,0.15);
    stroke-width: 1.5;
}

.circle {
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke: var(--color-red);
    animation: progress 2.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes progress {
    0% { stroke-dasharray: 0 100; }
}

.laudo-score__value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    display: flex;
    flex-direction: column;
}

.score-num {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    text-shadow: 0 0 20px rgba(255,255,255,0.4);
}

.score-label {
    font-size: 0.85rem;
    letter-spacing: 4px;
    color: var(--color-gold);
    text-transform: uppercase;
    margin-top: 0.3rem;
    font-weight: 600;
}

.laudo-score__info h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--color-cream);
    margin-bottom: 0.8rem;
}

.laudo-score__info p {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: rgba(245,241,231,0.85);
    line-height: 1.7;
    font-weight: 300;
}

.laudo-score__info strong {
    color: var(--color-gold);
    font-weight: 500;
}

/* Grid Specs / Chart */
.laudo-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: stretch;
}

.laudo-box-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-cream);
    margin-bottom: 2.5rem;
    padding-bottom: 1rem;
    position: relative;
}

.laudo-box-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-red), var(--color-gold));
}

/* Technical Specs List */
.laudo-specs {
    padding: 3rem;
    display: flex;
    flex-direction: column;
}

.specs-list {
    list-style: none;
    margin-bottom: 3rem;
}

.specs-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(201,162,106,0.15);
}

.specs-list li:last-child {
    border-bottom: none;
}

.specs-list span {
    color: rgba(245,241,231,0.6);
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.specs-list strong {
    color: #fff;
    font-weight: 500;
    text-align: right;
    font-size: 1.05rem;
    text-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.sensory-notes {
    margin-top: auto;
    background: rgba(0,0,0,0.2);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 3px solid var(--color-gold);
}

.sensory-notes h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-gold);
    margin-bottom: 0.8rem;
}

.sensory-notes p {
    font-family: var(--font-body);
    color: rgba(245,241,231,0.9);
    line-height: 1.8;
    font-style: italic;
    font-weight: 300;
    font-size: 1.05rem;
}

/* Chart Container */
.laudo-chart-container {
    padding: 3rem;
    display: flex;
    flex-direction: column;
}

.canvas-wrapper {
    flex-grow: 1;
    position: relative;
    min-height: 500px;
    width: 100%;
}

@media (max-width: 968px) {
    .laudo-grid {
        grid-template-columns: 1fr;
    }
    
    .laudo-score-card {
        flex-direction: column;
        text-align: center;
        padding: 3rem 2rem;
    }
    .laudo-box-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .laudo-box-title {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .laudo-nav {
        padding: 1.5rem;
    }
    .laudo-score__ring {
        width: 140px;
        height: 140px;
    }
    .score-num {
        font-size: 3rem;
    }
    .specs-list li {
        flex-direction: column;
        gap: 0.3rem;
    }
    .specs-list strong {
        text-align: left;
    }
    .canvas-wrapper {
        min-height: 350px;
    }
    .laudo-specs, .laudo-chart-container {
        padding: 2rem 1.5rem;
    }
}

/* ═══════════════════════════════════════════
   PÁGINA DO LAUDO - ELEMENTOS PROFISSIONAIS
   ═══════════════════════════════════════════ */

/* Cabeçalho de Registro Oficial e Botão de Impressão */
.laudo-cert-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 950px;
    margin: 2rem auto 0 auto;
    padding: 1rem 2rem;
    background: rgba(201, 162, 106, 0.04);
    border: 1px solid rgba(201, 162, 106, 0.18);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.cert-code {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: rgba(201, 162, 106, 0.85);
    display: inline-flex;
    align-items: center;
}
.btn-print-pdf {
    background: rgba(26, 17, 13, 0.7);
    border: 1px solid rgba(201, 162, 106, 0.3);
    color: var(--color-cream);
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-print-pdf:hover {
    background: var(--color-gold);
    color: var(--color-espresso);
    border-color: var(--color-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(201, 162, 106, 0.3);
}

/* Selo de Verificação Q-Grader */
.laudo-verification-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(196, 30, 58, 0.15);
    border: 1px solid rgba(196, 30, 58, 0.3);
    color: #ff4d6d;
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    box-shadow: 0 0 15px rgba(196, 30, 58, 0.1);
}

/* Linha de Scanner Laser */
.laudo-scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(201, 162, 106, 0.8), transparent);
    box-shadow: 0 0 15px rgba(201, 162, 106, 0.6), 0 0 30px rgba(201, 162, 106, 0.3);
    z-index: 10;
    opacity: 0;
    pointer-events: none;
}
.laudo-chart-container.scanning .laudo-scan-line {
    animation: laser-sweep 2.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
@keyframes laser-sweep {
    0% { top: 0%; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

/* Cartão de Detalhes do Explorador Sensorial */
.sensory-detail-card {
    margin-top: 2rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(201, 162, 106, 0.15);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-align: left;
}
.sensory-detail-card.active-detail {
    border-color: rgba(201, 162, 106, 0.5);
    box-shadow: 0 0 25px rgba(201, 162, 106, 0.15);
    background: rgba(201, 162, 106, 0.04);
    transform: translateY(-2px);
}
.detail-card__header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.6rem;
}
.detail-card__icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}
.sensory-detail-card.active-detail .detail-card__icon {
    transform: scale(1.2);
}
.detail-card__title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--color-gold);
    margin: 0;
    font-weight: 600;
    letter-spacing: 1px;
}
.detail-card__def {
    font-size: 0.85rem;
    color: rgba(245, 241, 231, 0.55);
    line-height: 1.4;
    margin: 0 0 0.8rem 0;
    font-style: italic;
    font-weight: 300;
    border-left: 2px solid rgba(201, 162, 106, 0.3);
    padding-left: 0.6rem;
}
.detail-card__desc {
    font-size: 0.95rem;
    color: rgba(245, 241, 231, 0.85);
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

@media (max-width: 768px) {
    .laudo-cert-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        border-radius: 20px;
        padding: 1.2rem;
    }
}

/* Estilo de Impressão Oficial - Certificado Físico */
@media print {
    @page {
        size: A4 portrait;
        margin: 1.5cm;
    }
    
    body {
        background: #ffffff !important;
        color: #1a110d !important;
        font-size: 11pt !important;
        line-height: 1.5 !important;
    }
    
    .laudo-bg-container,
    .laudo-nav,
    .btn-print-pdf,
    .laudo-scan-line,
    footer,
    .footer {
        display: none !important;
    }
    
    .laudo-main {
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .laudo-header {
        margin-bottom: 2rem !important;
        text-align: center !important;
    }
    
    .laudo-title-glow {
        color: #1a110d !important;
        text-shadow: none !important;
        font-size: 26pt !important;
    }
    
    .laudo-badge {
        color: #8c6a3c !important;
        border-color: #8c6a3c !important;
        background: transparent !important;
    }
    
    .laudo-dashboard {
        gap: 2rem !important;
    }
    
    .glass-heavy {
        background: #ffffff !important;
        border: 1px solid #d4c8b8 !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        color: #1a110d !important;
        border-radius: 12px !important;
        transform: none !important;
        transition: none !important;
    }
    
    .laudo-score-card {
        padding: 2rem !important;
        border: 2px solid #8c6a3c !important;
        margin-bottom: 1.5rem !important;
    }
    
    .circle-bg {
        stroke: #eee !important;
    }
    
    .circle {
        stroke: #C41E3A !important;
    }
    
    .score-num {
        color: #1a110d !important;
    }
    
    .laudo-score__value {
        text-shadow: none !important;
    }
    
    .laudo-verification-badge {
        background: transparent !important;
        border: 1px solid #C41E3A !important;
        color: #C41E3A !important;
        box-shadow: none !important;
    }
    
    .laudo-grid {
        grid-template-columns: 1fr 1.2fr !important;
        gap: 1.5rem !important;
    }
    
    .laudo-specs, .laudo-chart-container {
        padding: 1.5rem !important;
    }
    
    .specs-list li {
        border-bottom: 1px dashed #d4c8b8 !important;
        padding: 0.5rem 0 !important;
    }
    
    .specs-list span {
        color: #555555 !important;
    }
    
    .specs-list strong {
        color: #1a110d !important;
        text-shadow: none !important;
    }
    
    .sensory-notes {
        background: #fdfcf7 !important;
        border-left: 3px solid #8c6a3c !important;
        border-top: 1px solid #d4c8b8 !important;
        border-bottom: 1px solid #d4c8b8 !important;
        border-right: 1px solid #d4c8b8 !important;
    }
    
    .sensory-notes h3 {
        color: #8c6a3c !important;
    }
    
    .sensory-notes p {
        color: #333333 !important;
    }
    
    .sensory-detail-card {
        background: #fdfcf7 !important;
        border: 1px solid #d4c8b8 !important;
        box-shadow: none !important;
        margin-top: 1rem !important;
        padding: 1rem !important;
    }
    
    .detail-card__title {
        color: #8c6a3c !important;
    }
    
    .detail-card__def {
        color: #555555 !important;
        border-left-color: #8c6a3c !important;
    }
    
    .detail-card__desc {
        color: #1a110d !important;
    }
    
    #nota-modal,
    .modal-overlay {
        display: none !important;
    }
}

/* ═══════════════════════════════════════════
   MODAL — NOTA OFICIAL
   ═══════════════════════════════════════════ */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(26, 17, 13, 0.82);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-container {
    background: linear-gradient(135deg, rgba(44, 26, 20, 0.98) 0%, rgba(26, 17, 13, 0.99) 100%);
    border: 1px solid rgba(201, 162, 106, 0.25);
    border-radius: 16px;
    width: 90%;
    max-width: 650px;
    max-height: 85vh;
    padding: clamp(2rem, 5vw, 3rem);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    overflow-y: auto;
    transform: translateY(40px) scale(0.96);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    scrollbar-width: thin;
    scrollbar-color: rgba(201, 162, 106, 0.3) var(--color-espresso);
}

.modal-overlay.active .modal-container {
    transform: translateY(0) scale(1);
}

/* Custom Scrollbar for Modal Container */
.modal-container::-webkit-scrollbar {
    width: 6px;
}
.modal-container::-webkit-scrollbar-track {
    background: var(--color-espresso);
    border-radius: 0 16px 16px 0;
}
.modal-container::-webkit-scrollbar-thumb {
    background: rgba(201, 162, 106, 0.3);
    border-radius: 3px;
}
.modal-container::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold);
}

.modal-close-x {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: transparent;
    border: none;
    font-size: 2.2rem;
    color: rgba(245, 241, 231, 0.5);
    cursor: pointer;
    line-height: 1;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close-x:hover {
    color: var(--color-gold);
    background: rgba(255, 255, 255, 0.05);
    transform: rotate(90deg);
}

.modal-header {
    margin-bottom: 2rem;
    text-align: center;
    padding-top: 0.5rem;
}

.modal-eyebrow {
    display: block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-red);
    margin-bottom: 0.6rem;
}

.modal-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 500;
    color: var(--color-cream);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.modal-divider {
    width: 60px;
    height: 1.5px;
    margin: 0 auto;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.modal-body {
    font-family: var(--font-body);
    font-size: 0.98rem;
    line-height: 1.75;
    color: rgba(245, 241, 231, 0.82);
    text-align: justify;
    margin-bottom: 2.5rem;
}

.modal-body p {
    margin-bottom: 1.2rem;
}

.modal-body p:last-child {
    margin-bottom: 0;
}

.modal-body strong {
    color: var(--color-gold);
    font-weight: 600;
}

.modal-footer {
    display: flex;
    justify-content: center;
}

.modal-footer .btn--primary {
    min-width: 180px;
    padding: 0.9rem 2.5rem;
}
