:root {
    /* Colors - Brand Palette */
    --forest-900: #1F4D3A;
    --forest-800: #183D2C;
    --forest-700: #236348;
    --forest-600: #2F7D57;

    --gold-600:   #A6863C;
    --gold-500:   #C9A44C;
    --gold-400:   #D9B85E;
    --gold-300:   #EBD299;

    --cream-100:  #F4F1E8;
    --cream-200:  #E8E2D2;

    --text-900:   #1F4D3A;
    --text-body:  #2B2B2B;
    --text-light: #F7F7F5;
    --text-muted: #8AA395;

    --accent:     #2F7D57;
    --error:      #D32F2F;
    --success:    #388E3C;

    /* Typography */
    --font-heading: 'Cinzel', serif;
    --font-body:    'Manrope', sans-serif;

    /* Spacing */
    --container-width: 1200px;
    --header-height:   80px;
    --floating-top-offset: 0px;
    --floating-right-offset: 0px;
    --floating-bottom-offset: 0px;
    
    /* Effects */
    --shadow-sm: 0 4px 6px rgba(31, 77, 58, 0.1);
    --shadow-md: 0 10px 20px rgba(31, 77, 58, 0.15);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.2);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease-in-out;
}

/* Base & Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px; /* Base size for large screens */
    width: 100%;
    overflow-x: clip;
}

html.has-loader,
html.has-loader body {
    overflow: hidden;
}

html.menu-open,
html.menu-open body {
    overflow: hidden;
}

@media (max-width: 1440px) {
    html {
        font-size: 14px; /* Slightly smaller for laptops */
    }
}

@media (max-width: 1200px) {
    html {
        font-size: 13px; /* Smaller desktops/tablets */
    }
}

body {
    font-family: var(--font-body);
    background-color: var(--cream-100);
    color: var(--text-body);
    line-height: 1.6;
    overflow-x: clip; /* Prevent viewport-unit decorations from creating lateral scroll */
    position: relative;
    min-height: 100vh;
    width: 100%;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--forest-900); 
}

::-webkit-scrollbar-thumb {
    background: var(--gold-500); 
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-400); 
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--forest-900);
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Typography with fluid scaling */
h1 { font-size: clamp(2.5rem, 5vw, 4rem); } /* Scales between 2.5rem and 4rem */
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; font-family: inherit; }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.icon {
    display: block;
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
}

.icon--20 {
    width: 1.25rem;
    height: 1.25rem;
}

.icon--24 {
    width: 1.5rem;
    height: 1.5rem;
}

.icon--26 {
    width: 1.625rem;
    height: 1.625rem;
}

.icon--32 {
    width: 2rem;
    height: 2rem;
}

.icon--34 {
    width: 2.125rem;
    height: 2.125rem;
}

.icon--48 {
    width: 3rem;
    height: 3rem;
}

.icon--72 {
    width: 4.5rem;
    height: 4.5rem;
}

.icon--thin {
    stroke-width: 1.7;
}

.page-loader {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: grid;
    place-items: center;
    overflow: hidden;
    padding: 2rem;
    background:
        radial-gradient(circle at 18% 18%, rgba(47, 125, 87, 0.16), transparent 30%),
        linear-gradient(180deg, #08100c 0%, #10231a 55%, #173828 100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

html.has-loader .page-loader {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.page-loader__inner {
    position: relative;
    width: min(100%, 22rem);
    display: grid;
    justify-items: center;
    gap: 1rem;
    text-align: center;
}

.page-loader__logo {
    position: relative;
    z-index: 1;
    width: clamp(6.5rem, 14vw, 8.75rem);
    height: auto;
    animation: loaderLogoPulse 2s ease-in-out infinite;
}

.page-loader__dots {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 0.5rem;
    min-height: 1rem;
    margin-top: 0.25rem;
}

.page-loader__dots span {
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    background: var(--gold-300);
    box-shadow: 0 0 14px rgba(235, 210, 153, 0.32);
    opacity: 0.42;
    animation: loaderDotJump 2s ease-in-out infinite;
}

.page-loader__dots span:nth-child(1) {
    animation-delay: 0s;
}

.page-loader__dots span:nth-child(2) {
    animation-delay: 0.24s;
}

.page-loader__dots span:nth-child(3) {
    animation-delay: 0.48s;
}

/* Utilities */
.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.text-gold { color: var(--gold-500); }
.text-light { color: var(--text-light); }
.text-cream { color: var(--cream-100); }
.text-accent { color: var(--accent); }
.text-center { text-align: center; }
.mt-8 { margin-top: 2rem; }

.grid {
    display: grid;
    gap: 2rem;
}

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

/* Components: Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.02em;
    transition: all var(--transition-base);
    text-transform: uppercase;
    font-family: var(--font-body);
}

.btn::after {
    content: '';
    position: absolute;
    inset: -35% auto -35% -30%;
    width: 38%;
    border-radius: inherit;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.12) 20%,
        rgba(255, 255, 255, 0.78) 50%,
        rgba(255, 255, 255, 0.12) 80%,
        transparent 100%
    );
    filter: blur(12px);
    transform: skewX(-22deg) translateX(-240%);
    transform-origin: left center;
    animation: btnLightSweep 3.2s ease-in-out infinite;
    pointer-events: none;
    opacity: 0.9;
}

@keyframes btnLightSweep {
    0%,
    18% {
        transform: skewX(-22deg) translateX(-240%);
    }

    48%,
    100% {
        transform: skewX(-22deg) translateX(430%);
    }
}

.btn--primary {
    background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
    color: var(--forest-900);
    box-shadow: 0 4px 15px rgba(201, 164, 76, 0.4);
    font-weight: 800;
    letter-spacing: 0.03em;
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 164, 76, 0.6);
    filter: brightness(1.1);
}

.btn--outline {
    background: transparent;
    border: 1px solid var(--cream-100);
    color: var(--cream-100);
}

.btn--outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold-500);
    color: var(--gold-500);
}

.btn--gold {
    background-color: var(--gold-500);
    color: var(--forest-900);
}

.btn--gold:hover {
    background-color: var(--gold-400);
    transform: translateY(-2px);
}

.btn--lg { padding: 1rem 2.5rem; font-size: 1.125rem; }
.btn--full { width: 100%; }

/* Header */
.header {
    position: fixed;
    top: calc(var(--floating-top-offset) + env(safe-area-inset-top, 0px));
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition:
        background-color var(--transition-base),
        box-shadow var(--transition-base),
        padding var(--transition-base),
        backdrop-filter var(--transition-base);
    background: rgba(31, 77, 58, 0); /* Transparent initially */
}

.header.scrolled {
    background: rgba(31, 77, 58, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    border-bottom: 2px solid transparent;
}

.brand-logo {
    display: block;
    width: 100%;
    height: auto;
}

.brand-logo--header {
    width: auto;
    height: clamp(2.75rem, 5vw, 3.6rem);
    filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.18));
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.header__list {
    display: flex;
    gap: 2rem;
}

.header__link {
    color: var(--cream-100);
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0.9;
    position: relative;
}

.header__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--gold-500);
    transition: width var(--transition-fast);
}

.header__link:hover::after { width: 100%; }

.header__toggle {
    display: none;
    background: none;
    color: var(--cream-100);
    font-size: 1.5rem;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    padding: 0;
    z-index: 1002;
}

.header__toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--gold-500);
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
}

/* Sections */
.section { 
    padding: clamp(3rem, 5vw, 6rem) 0; /* Responsive padding */
}
.section--dark { background-color: var(--forest-900); color: var(--cream-100); }
.section--light { background-color: white; }
.section--gold { background: linear-gradient(135deg, var(--forest-800), var(--forest-900)); color: var(--gold-500); }

.section-title {
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-body);
    max-width: 600px;
    margin: 0 auto 4rem;
}
.section--dark .section-subtitle { color: var(--text-muted); }

/* Hero */
.hero {
    min-height: 100vh; /* Changed from fixed height to min-height */
    height: auto; /* Allow growth */
    display: flex;
    align-items: center;
    position: relative;
    color: var(--cream-100);
    overflow: hidden;
    padding-top: var(--header-height);
    padding-bottom: 4rem; /* Add padding bottom for mobile scroll */
}

.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1545638531-978d3886f4cf?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    z-index: 1;
    transform: scale(1.1); /* for parallax */
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 72% 46%, rgba(11, 26, 19, 0.18), transparent 30%),
        linear-gradient(to right,
            rgba(14, 33, 24, 0.88) 42%,
            rgba(21, 48, 36, 0.74) 100%);
    z-index: 2;
}

.hero__overlay::before { /* Grain effect */
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    pointer-events: none;
}

.hero__container {
    position: relative;
    z-index: 3;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero__content {
    flex: 1;
    min-width: 0;
}

.hero__image {
    flex: 0 0 42%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__image img {
    width: 100%;
    max-width: 520px;
    display: block;
}

@media (min-width: 1100px) {
    .hero__container {
        gap: 2.5rem;
    }

    .hero__content {
        flex: 0 0 44%;
    }

    .hero__image {
        flex: 0 0 56%;
        margin-right: -5rem;
    }

    .hero__image img {
        max-width: 860px;
    }
}

.badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: rgba(201, 164, 76, 0.2);
    border: 1px solid var(--gold-500);
    color: var(--gold-400);
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.hero__title {
    color: var(--cream-100);
    margin-bottom: 1.25rem;
    line-height: 1.1; /* Tighter line height for big titles */
}

.hero__subtitle {
    font-size: clamp(0.95rem, 1.4vw, 1.1rem);
    color: var(--cream-200);
    margin-bottom: 1.75rem;
    font-weight: 300;
    line-height: 1.7;
    max-width: 540px;
}

.hero__bullets {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-bottom: 2rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.hero__bullets li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero__bullets .icon { color: var(--gold-500); }

.hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    opacity: 0.7;
    animation: bounce 2s infinite;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid var(--cream-100);
    border-radius: 15px;
    display: block;
}

.wheel {
    width: 2px;
    height: 8px;
    background: var(--gold-500);
    border-radius: 1px;
    display: block;
    margin: 6px auto;
    animation: scrollWheel 1.5s infinite;
}

/* Cards (Para Quem É) */
.card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    border-top: 4px solid transparent;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--gold-500);
}

.card__icon {
    width: 60px;
    height: 60px;
    background: var(--forest-900);
    color: var(--gold-500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.card__title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--forest-800);
}

.card__text {
    font-size: 0.95rem;
    color: #555;
}

/* Timeline (Como Funciona) */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%; /* Center line */
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
}

.timeline__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
}

.timeline__item:nth-child(even) { flex-direction: row-reverse; }

.timeline__marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--forest-800);
    border: 2px solid var(--gold-500);
    color: var(--gold-500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 0 0 5px var(--forest-900);
}

.timeline__content {
    width: 45%;
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.timeline__title {
    color: var(--gold-400);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.timeline__content p { color: var(--cream-200); font-size: 0.9rem; }

/* Differentials */
.info-block {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}
.info-block__icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.info-block h4 { color: var(--forest-800); margin-bottom: 0.5rem; }
.info-block p { font-size: 0.9rem; color: #666; }

/* Metrics */
.metrics__grid { text-align: center; }
.metric-item { margin-bottom: 1rem; }
.metric-value {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gold-400);
    line-height: 1;
    display: block;
}
.metric-symbol { font-size: 2rem; color: var(--gold-400); }
.metric-label {
    display: block;
    font-family: var(--font-body);
    text-transform: uppercase;
    lette-spacing: 1px;
    color: var(--cream-200);
    margin-top: 0.5rem;
    font-size: 0.85rem;
}
.metrics__disclaimer {
    font-size: 0.8rem;
    opacity: 0.5;
    margin-top: 3rem;
    color: var(--cream-200);
}

/* Checklists (Transparency) */
.transparency__container {
    display: flex;
    align-items: center;
    gap: clamp(2rem, 5vw, 4rem); /* Responsive gap */
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}
.transparency__content { 
    flex: 1; 
    min-width: 300px; /* Ensure text doesn't get too squashed */
}
.checklist {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}
.checklist li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: var(--text-body);
}
.check-icon {
    width: 24px; height: 24px;
    fill: none; stroke: var(--success);
    stroke-width: 2px;
    min-width: 24px; 
}
.transparency__image {
    flex: 1;
    /* Height adjusted to fit content */
    min-height: 400px; 
    /* Removed background and border-radius to show only the mockup */
    background: transparent; 
    box-shadow: none; 
    position: relative;
    /* overflow: visible to allow 3D effect details */
    overflow: visible; 
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px; /* Enable 3D space */
}
.image-placeholder {
    width: 100%; height: auto;
    display: contents; /* Remove placeholder box behavior */
}

/* Dashboard Mockup */
.dashboard-mockup {
    width: 100%;
    max-width: 400px; /* Max width remains fixed but content scales with rem */
    background: linear-gradient(135deg, rgba(24, 61, 44, 0.95), rgba(31, 77, 58, 0.98));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.25rem; /* Scalable radius */
    padding: 1.5rem; /* Scalable padding */
    box-shadow: 
        20px 20px 50px rgba(0,0,0,0.5),
        -1px -1px 0 rgba(255,255,255,0.1) inset;
    
    /* 3D Tilt Effect */
    transform: rotateY(-15deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.transparency__image:hover .dashboard-mockup {
    transform: rotateY(0deg) rotateX(0deg); /* Reset on hover for interactivity */
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 1rem;
}

.dashboard-title { font-size: 0.9rem; color: var(--cream-100); font-weight: 600; }
.dashboard-date { font-size: 0.8rem; color: var(--gold-500); }

.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.dash-card {
    background: rgba(0,0,0,0.2);
    padding: 1rem;
    border-radius: 8px;
}

.dash-label { display: block; font-size: 0.75rem; color: #8aa395; margin-bottom: 0.25rem; }
.dash-value { display: block; font-size: 1.1rem; color: var(--cream-100); font-weight: 700; }
.dash-trend { font-size: 0.7rem; color: var(--success); display: flex; align-items: center; gap: 4px; margin-top: 0.25rem; }

.dashboard-main-chart {
    background: rgba(0,0,0,0.2);
    border-radius: 8px;
    padding: 1rem;
    height: 120px;
    position: relative;
    overflow: hidden;
}

.chart-line {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.chart-path {
    fill: none;
    stroke: var(--gold-500);
    stroke-width: 3;
    filter: drop-shadow(0 4px 6px rgba(201, 164, 76, 0.3));
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawLine 2s ease forwards;
}

.chart-area {
    fill: url(#gradientGold);
    opacity: 0.2;
}

@keyframes drawLine {
    to { stroke-dashoffset: 0; }
}

/* FAQ (Accordion) */
.accordion { max-width: 800px; margin: 0 auto; }
.accordion__item {
    border-bottom: 1px solid #e0e0e0;
}
.accordion__header {
    width: 100%;
    text-align: left;
    padding: 1.5rem 0;
    background: none;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--forest-900);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.accordion__header .icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--gold-600);
    transition: transform var(--transition-fast);
}
.accordion__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}
.accordion__content p {
    padding-bottom: 1.5rem;
    color: #555;
    line-height: 1.6;
}
.accordion__item.active .accordion__header .icon {
    transform: rotate(45deg);
}
.accordion__item.active .accordion__content {
    max-height: 200px; /* Adjust if needed */
}

/* Form */
.pre-register {
    background-color: var(--forest-900);
    padding: 4rem 1rem;
}

.quiz-cta-band {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 20%, rgba(201, 164, 76, 0.14), transparent 26%),
        radial-gradient(circle at 88% 18%, rgba(255, 255, 255, 0.06), transparent 24%),
        linear-gradient(135deg, #123222 0%, #1b4733 48%, #20553d 100%);
}

.quiz-cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 72px 72px;
    opacity: 0.16;
    pointer-events: none;
}

.quiz-cta-band__inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(1rem, 2.5vw, 2rem);
    max-width: 76rem;
    margin: 0 auto;
    padding: clamp(1.2rem, 2.5vw, 1.6rem) clamp(1.25rem, 3vw, 2rem);
    border-radius: 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03)),
        rgba(7, 18, 13, 0.2);
    box-shadow: 0 18px 45px rgba(4, 10, 8, 0.18);
}

.quiz-cta-band__copy {
    display: grid;
    gap: 0.7rem;
    max-width: 46rem;
}

.quiz-cta-band__eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(235, 210, 153, 0.22);
    background: rgba(255, 255, 255, 0.06);
    color: var(--gold-300);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.quiz-cta-band__copy h2 {
    margin: 0;
    margin: 0;
    color: var(--cream-100);
    font-size: clamp(1.7rem, 3vw, 2.55rem);
    line-height: 1.02;
}

.quiz-cta-band__copy p {
    margin: 0;
    color: rgba(244, 241, 232, 0.92);
    font-size: 0.98rem;
    line-height: 1.75;
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}
.form-header { margin-bottom: 3rem; }
.form-header h2 { color: var(--forest-900); }
.form-header p { color: #666; }

.contact-form {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.form-group { position: relative; display: flex; flex-direction: column; }
.form-group.half { width: calc(50% - 0.75rem); }
.form-group.full { width: 100%; }

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--forest-800);
}
.form-group input, 
.form-group select {
    padding: 0.8rem 1rem;
    border: 1px solid #ccc;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-fast);
}
.form-group input:focus, .form-group select:focus {
    outline: none;
    border-color: var(--forest-600);
    box-shadow: 0 0 0 3px rgba(47, 125, 87, 0.1);
}
.error-msg {
    color: var(--error);
    font-size: 0.8rem;
    margin-top: 0.3rem;
    display: none;
}
.form-group.error input { border-color: var(--error); }
.form-group.error .error-msg { display: block; }

/* Custom Checkbox */
.checkbox-container {
    display: block;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    font-size: 0.9rem;
    user-select: none;
    color: #555;
}
.checkbox-container input { position: absolute; opacity: 0; cursor: pointer; height: 0; width: 0; }
.checkmark {
    position: absolute;
    top: 0; left: 0; height: 20px; width: 20px;
    background-color: #eee;
    border-radius: 4px;
}
.checkbox-container:hover input ~ .checkmark { background-color: #ddd; }
.checkbox-container input:checked ~ .checkmark { background-color: var(--forest-600); }
.checkmark:after {
    content: ""; position: absolute; display: none;
}
.checkbox-container input:checked ~ .checkmark:after { display: block; }
.checkbox-container .checkmark:after {
    top: 50%;
    left: 50%;
    width: 0.8rem;
    height: 0.8rem;
    background: url("../icons/check.svg") center / contain no-repeat;
    transform: translate(-50%, -50%);
}

/* Form Success */
.form-submit { width: 100%; }
.loader {
    width: 20px; height: 20px;
    border: 3px solid rgba(255,255,255,0.3);
    border-radius: 50%; border-top-color: white;
    display: none;
    animation: spin 1s linear infinite;
    margin-left: 10px;
}
.form-feedback {
    width: 100%; text-align: center;
    padding: 2rem;
    background: var(--cream-100);
    border-radius: var(--radius-md);
    margin-top: 1rem;
}
.icon-check {
    display: flex;
    justify-content: center;
    color: var(--success);
    margin-bottom: 1rem;
}

.icon-check .icon {
    width: 3rem;
    height: 3rem;
}

/* CTA Bottom */
.cta-bottom {
    background-color: var(--forest-800);
    padding: 5rem 0;
    color: var(--cream-100);
}
.cta-bottom__title { color: var(--gold-400); font-size: 2rem; margin-bottom: 2rem; }

/* Footer */
.footer {
    background-color: #122A1F;
    color: #888;
    padding: 4rem 0 0;
    font-size: 0.9rem;
}
.footer__container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    padding-bottom: 3rem;
}
.footer__logo {
    display: inline-flex;
    align-items: center;
    margin-bottom: 1rem;
}

.brand-logo--footer {
    width: min(18rem, 62vw);
    filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.22));
}
.footer h4 { color: var(--cream-100); margin-bottom: 1.2rem; font-size: 1rem; }
.footer ul li { margin-bottom: 0.8rem; }
.footer ul a:hover { color: var(--gold-500); }
.social-links { display: flex; gap: 1rem; margin-top: 1.5rem; }
.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.social-links a:hover { color: var(--gold-500); }

.footer__legal {
    background-color: #0A1E15;
    padding: 2rem 0;
    text-align: center;
    font-size: 0.8rem;
    border-top: 1px solid #ffffff0d;
}

@media (max-width: 900px) {
    .footer__container {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }

    .footer__brand,
    .footer__links,
    .footer__contact {
        width: 100%;
    }

    .footer__legal {
        text-align: left;
    }

    .footer__legal .container {
        display: grid;
        gap: 0.75rem;
    }
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: calc(1rem + var(--floating-bottom-offset) + env(safe-area-inset-bottom, 0px));
    right: calc(1rem + var(--floating-right-offset) + env(safe-area-inset-right, 0px));
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    width: 3.75rem; /* ~60px */
    height: 3.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.875rem;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 999;
    transition:
        transform var(--transition-base),
        box-shadow var(--transition-base),
        background-color var(--transition-base);
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 2px 2px 15px rgba(0,0,0,0.4);
}

/* Animations Logic */
.fade-up, .reveal-on-scroll, 
.reveal-from-left, .reveal-from-right {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-from-left { transform: translateX(-50px); }
.reveal-from-right { transform: translateX(50px); }

.is-visible { opacity: 1; transform: translateY(0) translateX(0); }

.delay-100 { transition-delay: 0.1s; }
.delay-150 { transition-delay: 0.15s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-10px) translateX(-50%); }
    60% { transform: translateY(-5px) translateX(-50%); }
}

@keyframes scrollWheel {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(15px); opacity: 0; }
}

@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

/* Responsive */
@media (max-width: 900px) {
    /* Typography Adjustments for Mobile */
    h1 { font-size: 2.2rem; line-height: 1.25; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.3rem; }
    .hero__subtitle { font-size: 1rem; line-height: 1.6; max-width: 100%; }

    /* Hero 2-column → 1-column */
    .hero__container {
        flex-direction: column;
        gap: 2rem;
    }
    .hero__content { width: 100%; }
    .hero__image {
        flex: none;
        width: 100%;
        order: 1; /* após o conteúdo (botão está dentro de .hero__content) */
    }
    .hero__image img { max-width: 100%; }
    
    .container {
        width: 92%;
        padding: 0 1rem;
    }

    /* Header Adjustments */
    .header { padding: 1rem 0; }
    
    .brand-logo--header { height: 2.9rem; }
    
    .header__toggle { 
        pointer-events: auto; /* Enable clicks on toggle */
        display: flex; 
        position: relative; /* Back to normal flow relative to container flex */
        z-index: 1003; 
        width: 3rem;
        height: 3rem;
        padding: 0;
        border-radius: 999px;
        background: rgba(10, 30, 21, 0.38);
        backdrop-filter: blur(12px);
        justify-content: center;
        align-items: center;
    }
    
    .header__toggle span {
        position: absolute;
        left: 50%;
        width: 1.35rem;
        height: 2px;
        background-color: var(--gold-500);
        border-radius: 999px;
        transform: translateX(-50%);
        transform-origin: center;
        transition: top 0.25s ease, transform 0.25s ease, opacity 0.2s ease;
    }

    .header__toggle span:nth-child(1) { top: 0.95rem; }
    .header__toggle span:nth-child(2) { top: 1.5rem; }
    .header__toggle span:nth-child(3) { top: 2.05rem; }

    .header__toggle.active span:nth-child(1) {
        top: 50%;
        transform: translate(-50%, -50%) rotate(45deg);
    }

    .header__toggle.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-50%) scaleX(0.35);
    }

    .header__toggle.active span:nth-child(3) {
        top: 50%;
        transform: translate(-50%, -50%) rotate(-45deg);
    }

    .header__nav {
        pointer-events: none;
        position: fixed;
        top: 50%;
        left: 50%;
        right: auto;
        width: min(22rem, calc(100vw - 2.5rem));
        height: auto;
        min-height: 23rem;
        max-height: calc(100dvh - 2.5rem - var(--floating-top-offset) - var(--floating-bottom-offset));
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        background: rgba(31, 77, 58, 0.95);
        backdrop-filter: blur(20px); /* Blur effect */
        border-radius: 1.75rem; /* Rounded corners */
        padding: 2.4rem 2rem 2rem;
        transform: translate(-50%, calc(-50% + 1rem)) scale(0.92);
        opacity: 0;
        visibility: hidden;
        transition:
            opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1),
            visibility 0.3s cubic-bezier(0.16, 1, 0.3, 1),
            transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: 0 18px 50px rgba(0,0,0,0.3);
        border: 1px solid rgba(255,255,255,0.06);
        
        /* Reset flex layout */
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1.25rem;
    }

    .header__nav.active { 
        pointer-events: auto;
        opacity: 1;
        visibility: visible;
        transform: translate(-50%, -50%) scale(1);
        box-shadow:
            0 22px 60px rgba(0, 0, 0, 0.32),
            0 0 0 100vmax rgba(5, 14, 11, 0.34);
    }

    .header__list {
        flex-direction: column;
        gap: 1.1rem;
        width: 100%;
    }

    .header__link {
        font-size: 1.15rem;
        display: block;
        width: 100%;
        padding: 0.75rem 0.5rem;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        text-align: center;
    }
    
    .header__cta {
        width: 100%;
        max-width: 16rem;
        margin-top: 0.75rem;
    }
    
    .timeline::before { left: 20px; }
    .timeline__item { 
        flex-direction: column !important; 
        align-items: flex-start; 
        margin-left: 50px; 
        width: calc(100% - 50px); /* Prevent overflow */
        margin-right: 0;
    }
    .timeline__content { width: 100%; }
    .timeline__marker { left: -30px; transform: translateX(-50%); } 
    
    .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
    
    .transparency__container { flex-direction: column; }
    
    .form-group.half { width: 100%; }
    
    .hero__actions { justify-content: center; width: 100%; flex-direction: column; }
    .hero__actions .btn { width: 100%; }
    .hero__bullets { flex-direction: column; gap: 0.8rem; }
    
    .timeline::before { left: 19px; } /* Micro adjustment */
}

@media (max-width: 480px) {
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    
    .card { padding: 1.5rem; }
    
    /* Metrics grid adjustment for small screens */
    .metrics__grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .metric-value { font-size: 2.8rem; }
}

/* ============================================
   HERO — novos elementos
   ============================================ */
.hero__authority {
    font-size: clamp(0.9rem, 1.2vw, 1.05rem);
    color: var(--gold-400);
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 1.25rem;
    border-left: 3px solid var(--gold-500);
    padding-left: 0.75rem;
}

.hero__tagline {
    display: block;
    margin-top: 0.5rem;
    font-size: 1.1rem;
    color: var(--gold-300);
    font-weight: 700;
    letter-spacing: 0.03em;
}

/* ============================================
   SEÇÃO VÍDEO
   ============================================ */
.video-section .section-header { margin-bottom: 2.5rem; }

.video-wrapper {
    max-width: 860px;
    margin: 0 auto;
}

.video-placeholder {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: rgba(255,255,255,0.04);
    border: 2px dashed rgba(201, 164, 76, 0.4);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--text-muted);
    font-size: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* ============================================
   SEÇÃO OPERAÇÃO PECUÁRIA
   ============================================ */
.operation-section {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(31, 77, 58, 0.08);
}

.operation-section + .operation-section {
    border-top: none;
}

.operation-section--overview {
    background: linear-gradient(180deg, #f7f4ec 0%, #f1ebdf 100%);
    border-top: 1px solid rgba(31, 77, 58, 0.08);
    z-index: 1;
}

.operation-section--dossier {
    background: linear-gradient(180deg, #f9f5ee 0%, #f3ecdf 100%);
    overflow: visible;
    z-index: 2;
}

.operation-section--execution {
    background: linear-gradient(180deg, #fbf8f1 0%, #f5eedf 100%);
}

.operation-section--transparency {
    background: linear-gradient(180deg, #f8f3ea 0%, #f1e8d8 100%);
}

.operation-section::before,
.operation-section::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.operation-section::before {
    background:
        linear-gradient(rgba(31, 77, 58, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(31, 77, 58, 0.05) 1px, transparent 1px);
    background-size: 2rem 2rem;
    opacity: 0.22;
}

.operation-section::after {
    background:
        radial-gradient(circle at 12% 18%, rgba(201, 164, 76, 0.16), transparent 24%),
        radial-gradient(circle at 85% 20%, rgba(47, 125, 87, 0.14), transparent 20%),
        radial-gradient(circle at 84% 78%, rgba(31, 77, 58, 0.08), transparent 18%);
    opacity: 0.85;
}

.operation-hero,
.operation-dossier-layout,
.operation-layout--details {
    position: relative;
    z-index: 1;
    display: grid;
    gap: clamp(1.5rem, 3vw, 2.75rem);
    align-items: start;
}

.operation-hero {
    grid-template-columns: 1fr;
}

.operation-hero__content {
    display: grid;
    gap: 1.75rem;
}

.operation-section--overview .operation-hero {
    justify-items: center;
}

.operation-section--overview .operation-hero__content {
    width: min(100%, 70rem);
    gap: 0;
    position: relative;
    z-index: 2;
}

.operation-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(18rem, 0.82fr);
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: end;
}

.operation-overview__intro {
    display: grid;
    gap: 0.4rem;
    align-content: start;
}

.operation-overview__body {
    display: grid;
    gap: 1rem;
    max-width: 100%;
    align-self: start;
}

.operation-overview__item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: start;
    padding: 1rem 1.05rem;
    background: rgba(255, 255, 255, 0.66);
    border: 1px solid rgba(31, 77, 58, 0.09);
    border-radius: 1.15rem;
    box-shadow: var(--shadow-sm);
}

.operation-overview__icon {
    width: 3rem;
    height: 3rem;
    display: grid;
    place-items: center;
    border-radius: 1rem;
    background: linear-gradient(180deg, rgba(31, 77, 58, 0.08), rgba(201, 164, 76, 0.18));
    border: 1px solid rgba(31, 77, 58, 0.1);
    color: var(--forest-800);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.operation-overview__icon .icon {
    width: 1.35rem;
    height: 1.35rem;
}

.operation-overview__item p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-body);
}

.operation-overview__item strong {
    color: var(--forest-900);
    font-weight: 700;
}

.operation-dossier-layout {
    position: relative;
    z-index: 1;
    gap: clamp(2rem, 4vw, 3.5rem);
}

.operation-dossier-separator {
    display: none;
    position: relative;
    z-index: 4;
}

.operation-dossier-intro {
    display: grid;
    grid-template-columns: minmax(20rem, 1fr) minmax(0, 1fr);
    gap: clamp(2.2rem, 4vw, 4.5rem);
    align-items: center;
    min-height: clamp(23rem, 31vw, 28.5rem);
}

.operation-dossier-visual {
    margin: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: clamp(18rem, 25vw, 22rem);
}

.operation-cattle {
    display: block;
}

.operation-cattle img {
    display: block;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 18px 28px rgba(58, 36, 19, 0.12));
}

.operation-cattle--desktop {
    width: min(100%, 35rem);
}

.operation-cattle--mobile {
    width: min(92vw, 24rem);
    margin: 0 auto;
}

.operation-dossier-intro .operation-section__lead {
    grid-area: auto;
    width: 100%;
    max-width: 35rem;
    justify-self: start;
}

.operation-dossier-intro .operation-section__lead h2 {
    max-width: none;
    font-size: clamp(2.25rem, 2.75vw, 3rem);
    line-height: 1.015;
    letter-spacing: -0.02em;
}

.operation-dossier-intro .operation-section__lead p {
    max-width: 35rem;
    font-size: 1rem;
    line-height: 1.7;
}

.operation-dossier-copy {
    gap: 1.1rem;
}

.operation-dossier-copy__item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: start;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(31, 77, 58, 0.11);
    border-radius: 1.2rem;
    background: rgba(255, 255, 255, 0.08);
}

.operation-dossier-copy__icon {
    width: 3rem;
    height: 3rem;
    display: grid;
    place-items: center;
    border-radius: 0.95rem;
    color: var(--forest-800);
    background: rgba(255, 255, 255, 0.22);
    border: 1px solid rgba(31, 77, 58, 0.1);
}

.operation-dossier-copy__icon .icon {
    width: 1.35rem;
    height: 1.35rem;
}

.operation-dossier-copy__item p {
    margin: 0;
    max-width: none;
}

.operation-dossier-title-line,
.operation-dossier-copy-line {
    display: inline;
}

.operation-dossier-layout > .operation-dossier {
    width: 100%;
    max-width: min(100%, 60rem);
    justify-self: center;
    margin-top: clamp(0.5rem, 2vw, 1.5rem);
}

.operation-layout--details {
    grid-template-columns: minmax(0, 1.15fr) minmax(20rem, 0.85fr);
    grid-template-areas:
        "lead lead"
        "flow assurance"
        "footer footer";
}

.operation-layout--execution,
.operation-layout--transparency {
    position: relative;
    z-index: 1;
    display: grid;
    gap: clamp(1.5rem, 3vw, 2.75rem);
    align-items: start;
}

.operation-layout--execution {
    grid-template-columns: minmax(0, 0.84fr) minmax(20rem, 0.76fr);
    grid-template-areas:
        "lead note"
        "flow flow";
}

.operation-layout--transparency {
    grid-template-columns: minmax(0, 0.9fr) minmax(19rem, 0.7fr);
    grid-template-areas:
        "lead note"
        "assurance assurance"
        "footer footer";
}

.operation-section__lead {
    grid-area: lead;
    display: grid;
    gap: 0.85rem;
    max-width: 48rem;
}

.operation-section__lead h2 {
    margin: 0;
    font-size: clamp(1.6rem, 2.5vw, 2.15rem);
    line-height: 1.04;
    color: var(--forest-900);
    max-width: 14ch;
}

.operation-section__lead p {
    margin: 0;
    max-width: 58ch;
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(43, 43, 43, 0.88);
}

.operation-transparency-panel {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.24fr);
    gap: clamp(1.75rem, 4vw, 3.5rem);
    align-items: start;
}

.operation-transparency-panel__intro {
    display: grid;
    gap: 0.9rem;
    max-width: 28rem;
    align-self: center;
}

.operation-transparency-panel__intro h2 {
    margin: 0;
    max-width: 12ch;
    font-size: clamp(2.1rem, 3vw, 2.95rem);
    line-height: 0.98;
    letter-spacing: -0.03em;
    color: var(--forest-900);
}

.operation-transparency-panel__title-line {
    display: block;
}

.operation-transparency-panel__intro p {
    margin: 0;
    max-width: 24rem;
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(43, 43, 43, 0.88);
}

.operation-transparency-panel__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.operation-transparency-card {
    display: grid;
    gap: 1rem;
    align-content: start;
    min-height: 100%;
    padding: clamp(1.25rem, 2vw, 1.5rem);
    border: 1px solid rgba(31, 77, 58, 0.1);
    border-radius: 1.45rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(249, 245, 236, 0.96));
    box-shadow: var(--shadow-sm);
}

.operation-transparency-card__icon {
    width: 3rem;
    height: 3rem;
    display: grid;
    place-items: center;
    border-radius: 1rem;
    color: var(--forest-800);
    background: linear-gradient(180deg, rgba(31, 77, 58, 0.08), rgba(201, 164, 76, 0.18));
    border: 1px solid rgba(31, 77, 58, 0.1);
}

.operation-transparency-card__icon .icon {
    width: 1.35rem;
    height: 1.35rem;
}

.operation-transparency-card p {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.72;
    color: var(--text-body);
}

.field-visit-band {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 14% 24%, rgba(235, 210, 153, 0.14), transparent 26%),
        radial-gradient(circle at 88% 22%, rgba(235, 210, 153, 0.1), transparent 24%),
        linear-gradient(135deg, #143726 0%, #1a4632 46%, #1f4d3a 100%);
    color: var(--cream-100);
}

.field-visit-band::before,
.field-visit-band::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.field-visit-band::before {
    background:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 2rem 2rem;
    opacity: 0.24;
}

.field-visit-band::after {
    background: linear-gradient(90deg, rgba(7, 18, 13, 0.18), transparent 20%, transparent 80%, rgba(7, 18, 13, 0.18));
}

.field-visit-band__layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(16rem, 17.5rem) minmax(0, 34rem);
    grid-template-areas:
        "visual content"
        "visual cta";
    gap: clamp(1.5rem, 2.5vw, 2.5rem);
    align-items: center;
    justify-content: center;
}

.field-visit-band__content {
    grid-area: content;
    display: grid;
    gap: 1.15rem;
    max-width: 42rem;
    align-content: center;
    justify-self: start;
}

.field-visit-band__eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 0.5rem 0.85rem;
    border: 1px solid rgba(235, 210, 153, 0.24);
    border-radius: 999px;
    color: var(--gold-300);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.05);
}

.field-visit-band__content h2 {
    margin: 0;
    max-width: 14ch;
    color: var(--cream-100);
    font-size: clamp(2.15rem, 3.4vw, 3.25rem);
    line-height: 0.98;
    letter-spacing: -0.03em;
}

.field-visit-band__content p {
    margin: 0;
    max-width: 60ch;
    color: rgba(244, 241, 232, 0.9);
    font-size: 1rem;
    line-height: 1.82;
}

.field-visit-band__cta {
    grid-area: cta;
    justify-self: start;
    align-self: start;
}

.field-visit-band__cta .btn {
    white-space: nowrap;
}

.field-visit-band__visual {
    grid-area: visual;
    order: -1;
    justify-self: end;
    width: min(100%, 17.5rem);
}

.field-visit-video {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 5;
    border-radius: 1.8rem;
    overflow: hidden;
    border: 1px solid rgba(235, 210, 153, 0.16);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    box-shadow:
        0 22px 50px rgba(5, 14, 11, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.field-visit-video::before,
.field-visit-video::after {
    content: '';
    position: absolute;
    pointer-events: none;
}

.field-visit-video::before {
    inset: 0.9rem;
    border: 1px solid rgba(235, 210, 153, 0.12);
    border-radius: 1.2rem;
    z-index: 2;
}

.field-visit-video::after {
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(7, 18, 13, 0.05), rgba(7, 18, 13, 0.35)),
        linear-gradient(0deg, rgba(7, 18, 13, 0.48), rgba(7, 18, 13, 0.08) 34%, transparent 60%);
    transition: opacity var(--transition-base);
}

.field-visit-video.is-active::after {
    opacity: 0.12;
}

.field-visit-video__media {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: rgba(7, 18, 13, 0.2);
}

.field-visit-video__play {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4.4rem;
    height: 4.4rem;
    padding: 0;
    border: 1px solid rgba(235, 210, 153, 0.24);
    border-radius: 999px;
    background: rgba(7, 18, 13, 0.38);
    color: var(--cream-100);
    backdrop-filter: blur(16px);
    transform: translate(-50%, -50%);
    transition:
        opacity var(--transition-base),
        transform var(--transition-base),
        background-color var(--transition-base),
        border-color var(--transition-base);
}

.field-visit-video__play:hover {
    background: rgba(7, 18, 13, 0.48);
    border-color: rgba(235, 210, 153, 0.34);
}

.field-visit-video.is-active .field-visit-video__play {
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, calc(-50% + 0.5rem)) scale(0.94);
}

.field-visit-video__play-icon {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(235, 210, 153, 0.18), rgba(255, 255, 255, 0.08));
    color: var(--gold-300);
    border: 1px solid rgba(235, 210, 153, 0.22);
}

.operation-execution__lead,
.operation-transparency__lead {
    max-width: none;
}

.operation-execution__lead h2,
.operation-transparency__lead h2 {
    max-width: 12ch;
    font-size: clamp(2.05rem, 3vw, 2.85rem);
    line-height: 0.98;
    letter-spacing: -0.03em;
}

.operation-execution__lead p,
.operation-transparency__lead p {
    max-width: 56ch;
    font-size: 1.02rem;
}

.operation-execution__note,
.operation-transparency__note {
    display: grid;
    gap: 0.65rem;
    align-self: end;
    justify-self: end;
    max-width: 28rem;
    padding: 1.35rem 1.5rem;
    border-radius: 1.45rem;
    border: 1px solid rgba(31, 77, 58, 0.1);
}

.operation-execution__note {
    grid-area: note;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(248, 243, 232, 0.95));
}

.operation-transparency__note {
    grid-area: note;
    background: linear-gradient(180deg, rgba(31, 77, 58, 0.05), rgba(255, 255, 255, 0.82));
}

.operation-execution__note span,
.operation-transparency__note span {
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(31, 77, 58, 0.62);
}

.operation-execution__note p,
.operation-transparency__note p {
    margin: 0;
    font-size: 0.96rem;
    line-height: 1.72;
    color: var(--text-body);
}

.operation-eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid rgba(31, 77, 58, 0.16);
    color: var(--forest-800);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.operation-section .section-title {
    margin: 0;
    display: block;
    max-width: 12ch;
    font-size: clamp(2.75rem, 5vw, 4.65rem);
    line-height: 0.94;
    letter-spacing: -0.03em;
    color: var(--forest-900);
}

.operation-section--overview .section-title {
    max-width: 14ch;
    font-size: clamp(2.15rem, 3vw, 3.15rem);
    line-height: 1.02;
}

.operation-dossier {
    position: relative;
    display: grid;
    gap: 1.5rem;
    padding: clamp(1.5rem, 2.6vw, 2.2rem);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(31, 77, 58, 0.12);
    border-radius: 1.6rem;
    overflow: hidden;
}

.operation-dossier::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--forest-700), var(--gold-500));
}

.operation-dossier__eyebrow {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(31, 77, 58, 0.62);
}

.operation-dossier h3 {
    margin: 0;
    max-width: 18ch;
    font-size: clamp(1.5rem, 2vw, 1.9rem);
    line-height: 1.14;
    color: var(--forest-900);
}

.operation-dossier__items {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.operation-dossier__item {
    display: grid;
    gap: 0.35rem;
    padding: 1.1rem;
    border: 1px solid rgba(31, 77, 58, 0.1);
    border-radius: 1.05rem;
    background: rgba(31, 77, 58, 0.03);
}

.operation-dossier__item span {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(31, 77, 58, 0.58);
}

.operation-dossier__item strong {
    font-size: 1.08rem;
    color: var(--forest-900);
}

.operation-dossier__item p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.72;
    color: var(--text-body);
}

.operation-flow,
.operation-assurance {
    display: grid;
    gap: 1.5rem;
    padding: clamp(1.5rem, 2.4vw, 2rem);
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(31, 77, 58, 0.1);
    border-radius: 1.6rem;
}

.operation-flow {
    grid-area: flow;
}

.operation-assurance {
    grid-area: assurance;
    background: rgba(249, 246, 239, 0.94);
}

.operation-flow--feature {
    padding: clamp(1.8rem, 2.8vw, 2.4rem);
    border-radius: 1.85rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(250, 246, 237, 0.96));
}

.operation-flow--feature .operation-block-heading {
    gap: 0.55rem;
    padding-bottom: 1.45rem;
}

.operation-flow--feature .operation-block-heading h3 {
    font-size: clamp(1.9rem, 2.6vw, 2.4rem);
}

.operation-flow--feature .operation-steps {
    gap: 1.35rem;
}

.operation-flow--feature .operation-step {
    gap: 1.05rem;
    padding-top: 1.1rem;
}

.operation-layout--transparency .operation-assurance {
    grid-area: assurance;
    grid-template-columns: minmax(0, 1.08fr) minmax(18rem, 0.82fr);
    gap: clamp(1.4rem, 2.6vw, 2.1rem);
    padding: clamp(1.7rem, 2.7vw, 2.35rem);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(246, 240, 228, 0.96));
}

.operation-layout--transparency .operation-block-heading {
    grid-column: 1 / -1;
}

.operation-layout--transparency .operation-checklist {
    grid-column: 1 / 2;
}

.operation-layout--transparency .operation-visit {
    grid-column: 2 / 3;
    align-self: stretch;
    padding: 1.35rem;
    background: linear-gradient(180deg, rgba(31, 77, 58, 0.05), rgba(255, 255, 255, 0.82));
}

.operation-block-heading {
    display: grid;
    gap: 0.45rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(31, 77, 58, 0.1);
}

.operation-block-heading span {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(31, 77, 58, 0.62);
}

.operation-block-heading h3 {
    margin: 0;
    font-size: clamp(1.7rem, 2.3vw, 2.15rem);
    line-height: 1.08;
    color: var(--forest-900);
}

.operation-steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.operation-step {
    display: grid;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(31, 77, 58, 0.12);
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

.step-number {
    width: 3.25rem;
    height: 3.25rem;
    display: grid;
    place-items: center;
    border-radius: 999px;
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1;
    color: var(--forest-900);
    background: rgba(31, 77, 58, 0.05);
    border: 1px solid rgba(31, 77, 58, 0.12);
}

.step-content {
    display: grid;
    gap: 0.5rem;
    padding-top: 0;
}

.step-content h4 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--forest-900);
}

.step-content p {
    margin: 0;
    font-size: 0.97rem;
    color: var(--text-body);
    line-height: 1.75;
}

.operation-checklist {
    margin-top: 0;
    gap: 0;
}

.operation-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    padding: 1rem 0;
    font-size: 0.98rem;
    line-height: 1.65;
    color: var(--text-body);
    border-bottom: 1px solid rgba(31, 77, 58, 0.08);
}

.operation-checklist li:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.operation-checklist .check-icon {
    width: 1rem;
    height: 1rem;
    min-width: 1rem;
    margin-top: 0.35rem;
    stroke: var(--forest-700);
}

.operation-visit {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem;
    border-radius: 1.35rem;
    border: 1px solid rgba(31, 77, 58, 0.1);
    background: rgba(31, 77, 58, 0.04);
}

.operation-visit__icon {
    width: 3.4rem;
    height: 3.4rem;
    display: grid;
    place-items: center;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(201, 164, 76, 0.22);
}

.operation-visit__icon .icon {
    width: 2rem;
    height: 2rem;
}

.operation-visit__content {
    min-width: 0;
}

.operation-visit__content h4 {
    margin: 0 0 0.45rem;
    font-size: 1.08rem;
    color: var(--forest-900);
}

.operation-visit__content p {
    margin: 0;
    color: var(--text-body);
    font-size: 0.96rem;
    line-height: 1.72;
}

.operation-section__footer {
    grid-area: footer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem 2rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(31, 77, 58, 0.1);
}

.operation-section__footer p {
    max-width: 56rem;
    margin: 0;
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(43, 43, 43, 0.9);
}

.operation-section__footer .btn {
    min-width: min(100%, 18rem);
    box-shadow: none;
    border: 1px solid rgba(31, 77, 58, 0.12);
}

.operation-section__footer .btn:hover {
    transform: none;
    box-shadow: none;
    filter: none;
}

@media (min-width: 1101px) {
    .operation-section--overview .section-title {
        width: auto;
        max-width: 13ch;
        font-size: clamp(2.3rem, 2.75vw, 3rem);
        line-height: 1;
    }

    .operation-section--overview .operation-hero__grid {
        grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
        gap: clamp(2rem, 4vw, 3.5rem);
        align-items: center;
    }

    .operation-section--overview .operation-overview__body {
        max-width: none;
        padding: 0;
    }

    .operation-dossier-intro {
        grid-template-columns: minmax(31rem, 1.02fr) minmax(25rem, 0.98fr);
        gap: clamp(3rem, 4.7vw, 5.25rem);
        min-height: clamp(24rem, 29vw, 28.75rem);
    }

    .operation-dossier-visual {
        min-height: clamp(19rem, 23vw, 22rem);
    }

    .operation-cattle--desktop {
        width: min(100%, 34.75rem);
    }

    .operation-dossier-intro .operation-section__lead {
        max-width: 38rem;
        gap: 0.95rem;
    }

    .operation-dossier-intro .operation-section__lead h2 {
        font-size: clamp(2.15rem, 2.35vw, 2.6rem);
        line-height: 1.03;
    }

    .operation-dossier-intro .operation-section__lead p {
        max-width: 38rem;
        font-size: 0.98rem;
        line-height: 1.58;
    }

    .operation-dossier-title-line,
    .operation-dossier-copy-line {
        display: block;
        white-space: nowrap;
    }

    .operation-dossier-layout > .operation-dossier {
        max-width: min(100%, 60.5rem);
    }

    .operation-dossier h3 {
        max-width: 30ch;
        font-size: clamp(1.55rem, 1.85vw, 1.95rem);
    }
}

/* ============================================
   SEÇÃO BRASIL
   ============================================ */
.brazil-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 14% 12%, rgba(201, 164, 76, 0.14), transparent 22%),
        radial-gradient(circle at 88% 20%, rgba(255, 255, 255, 0.07), transparent 24%),
        linear-gradient(135deg, #09160f 0%, #10261b 42%, #183827 100%);
}

.brazil-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 72px 72px;
    opacity: 0.22;
    pointer-events: none;
}

.brazil-section .container {
    position: relative;
    z-index: 1;
}

.brazil-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: clamp(1.75rem, 4vw, 3.5rem);
    align-items: start;
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.brazil-intro__header,
.brazil-intro__body {
    display: flex;
    flex-direction: column;
}

.brazil-intro__header .section-title {
    display: block;
    max-width: 12ch;
    margin-bottom: 0;
    font-size: clamp(2.35rem, 4vw, 4.4rem);
    line-height: 0.98;
}

.brazil-intro__lead {
    max-width: 40rem;
    margin-top: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.brazil-intro__body {
    gap: 0.95rem;
    padding: clamp(1.4rem, 3vw, 2rem);
    border-radius: calc(var(--radius-lg) + 0.25rem);
    border: 1px solid rgba(201, 164, 76, 0.16);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
        rgba(8, 21, 15, 0.42);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
}

.brazil-intro__body h3 {
    margin-bottom: 0.1rem;
    font-size: clamp(1.35rem, 2vw, 1.85rem);
    line-height: 1.22;
}

.brazil-intro__body p {
    margin: 0;
    font-size: 0.97rem;
    line-height: 1.8;
}

.brazil-intro__note {
    display: inline-flex;
    align-self: flex-start;
    align-items: center;
    gap: 0.65rem;
    margin-top: 0.25rem;
    padding: 0.72rem 1rem;
    border-radius: 999px;
    background: rgba(201, 164, 76, 0.1);
    border: 1px solid rgba(201, 164, 76, 0.18);
    color: var(--gold-300);
    font-size: 0.9rem;
    line-height: 1.5;
}

.brazil-intro__note::before {
    content: '';
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--gold-400);
    box-shadow: 0 0 18px rgba(217, 184, 94, 0.5);
}

.brazil-carousel {
    position: relative;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.brazil-carousel__track {
    display: flex;
    width: max-content;
    will-change: transform;
    animation: brazilCarouselScroll 34s linear infinite;
}

.brazil-carousel__group {
    display: flex;
    flex-shrink: 0;
    gap: 1rem;
    padding-right: 1rem;
}

.brazil-stat-card {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 0.95rem;
    width: auto;
    min-width: 0;
    max-width: min(22rem, 40vw);
    min-height: 0;
    padding: 1rem 1.15rem;
    border-radius: 1.35rem;
    border: 1px solid rgba(201, 164, 76, 0.18);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03)),
        rgba(10, 28, 20, 0.62);
    box-shadow: none;
}

.brazil-stat-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 1rem;
    background: rgba(201, 164, 76, 0.1);
    border: 1px solid rgba(201, 164, 76, 0.2);
}

.brazil-stat-card p {
    margin: 0;
    display: block;
    width: auto;
    color: var(--cream-100);
    font-size: 0.96rem;
    line-height: 1.68;
    max-width: 16.5ch;
    text-align: left;
    text-wrap: balance;
}

@keyframes brazilCarouselScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    .brazil-carousel {
        overflow-x: auto;
        -webkit-mask-image: none;
        mask-image: none;
    }

    .brazil-carousel__track {
        animation: none;
    }
}

/* ============================================
   DEPOIMENTOS
   ============================================ */
.testimonials-section { background-color: white; }

.testimonials__grid { align-items: stretch; }

.testimonial-card {
    background: var(--cream-100);
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-top: 3px solid var(--gold-500);
}

.testimonial-quote { margin-bottom: 0.25rem; }

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.7;
    flex: 1;
    font-style: italic;
}

.testimonial-author { margin-top: auto; }

.author-name {
    font-weight: 700;
    color: var(--forest-800);
    font-size: 0.9rem;
}

/* ============================================
   SEÇÃO DEMANDA GLOBAL
   ============================================ */
.demand-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 18%, rgba(201, 164, 76, 0.13), transparent 24%),
        radial-gradient(circle at 86% 14%, rgba(255, 255, 255, 0.06), transparent 22%),
        linear-gradient(135deg, #08140e 0%, #10271c 44%, #173928 100%);
    color: var(--cream-100);
}

.demand-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 72px 72px;
    opacity: 0.18;
    pointer-events: none;
}

.demand-shell {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: clamp(1.75rem, 4vw, 3rem);
}

.demand-shell__intro {
    display: flex;
    flex-direction: column;
    max-width: 58rem;
}

.demand-shell__intro .section-title {
    display: block;
    max-width: 16ch;
    margin-bottom: 0;
    color: var(--cream-100);
    font-size: clamp(2.25rem, 4vw, 4rem);
    line-height: 0.98;
}

.demand-shell__eyebrow,
.demand-thesis__eyebrow,
.demand-metric__label {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(201, 164, 76, 0.24);
    background: rgba(255, 255, 255, 0.05);
    color: var(--gold-300);
    font-size: 0.73rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.demand-shell__lead {
    max-width: 38rem;
    margin-top: 1.35rem;
    font-size: 1.05rem;
    line-height: 1.85;
    color: rgba(244, 241, 232, 0.92);
}

.demand-insight {
    display: flex;
    align-items: stretch;
    gap: 1rem;
}

.demand-insight__primary,
.demand-insight__support-item,
.demand-narrative,
.demand-thesis-band {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
        rgba(8, 21, 15, 0.42);
    border-radius: 1.45rem;
    border: 1px solid rgba(201, 164, 76, 0.16);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.14);
}

.demand-insight__primary {
    flex: 1.1;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    padding: 1.45rem 1.5rem;
}

.demand-metric__label {
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
}

.demand-insight__primary strong,
.demand-insight__support-item strong {
    display: block;
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(1.85rem, 3vw, 2.75rem);
    line-height: 0.94;
    color: var(--gold-300);
    letter-spacing: -0.03em;
    font-weight: 600;
}

.demand-insight__primary p,
.demand-insight__support-item p {
    margin: 0;
    color: rgba(244, 241, 232, 0.9);
    font-size: 0.96rem;
    line-height: 1.75;
}

.demand-insight__support {
    flex: 0.92;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.demand-insight__support-item {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    padding: 1.2rem 1.3rem;
}

.demand-narrative {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: clamp(1.35rem, 2vw, 1.75rem);
}

.demand-narrative h3 {
    margin: 0;
    font-size: clamp(1.35rem, 2vw, 1.85rem);
    line-height: 1.14;
}

.demand-narrative p {
    margin: 0;
    color: rgba(244, 241, 232, 0.9);
    font-size: 0.98rem;
    line-height: 1.82;
}

.demand-driver-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.demand-driver-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.95rem 1rem;
    border-radius: 1rem;
    border: 1px solid rgba(201, 164, 76, 0.14);
    background: rgba(255, 255, 255, 0.05);
    color: var(--cream-100);
    line-height: 1.4;
}

.demand-driver-item .icon {
    color: var(--gold-300);
    width: 1.2rem;
    height: 1.2rem;
}

.demand-thesis-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.35rem 1.5rem;
}

.demand-thesis {
    display: grid;
    gap: 0.7rem;
    max-width: 52rem;
}

.demand-thesis__eyebrow {
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
}

.demand-thesis p {
    margin: 0;
    color: var(--cream-100);
    font-size: 1rem;
    line-height: 1.75;
}

.demand-thesis__focus {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    color: var(--gold-300);
    font-weight: 700;
    line-height: 1.7;
}

.demand-thesis__focus::before {
    content: '';
    width: 0.5rem;
    height: 0.5rem;
    margin-top: 0.45rem;
    border-radius: 50%;
    background: var(--gold-400);
    box-shadow: 0 0 16px rgba(217, 184, 94, 0.42);
    flex-shrink: 0;
}

.demand-thesis-band .btn {
    white-space: nowrap;
}

/* ============================================
   RESPONSIVO — novos elementos
   ============================================ */
@media (max-width: 1100px) {
    .quiz-cta-band__inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .demand-insight {
        flex-direction: column;
    }

    .demand-shell__intro .section-title,
    .demand-shell__lead {
        max-width: none;
    }

    .demand-thesis-band {
        flex-direction: column;
        align-items: flex-start;
    }

    .operation-hero__grid,
    .operation-layout--details,
    .operation-layout--execution,
    .operation-layout--transparency {
        grid-template-columns: 1fr;
    }

    .operation-transparency-panel {
        grid-template-columns: 1fr;
    }

    .field-visit-band__layout {
        grid-template-columns: 1fr;
        grid-template-areas:
            "content"
            "visual"
            "cta";
    }

    .field-visit-band__visual {
        justify-self: center;
        width: min(100%, 19rem);
        margin: 0 auto;
    }

    .field-visit-band__cta {
        justify-self: center;
    }

    .operation-transparency-panel__intro,
    .operation-transparency-panel__intro h2,
    .operation-transparency-panel__intro p {
        max-width: none;
    }

    .operation-dossier-separator {
        display: block;
        margin: clamp(-7rem, -18vw, -4.5rem) 0 0.75rem;
        padding-bottom: 0.5rem;
    }

    .operation-dossier-separator::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: min(calc(100% + 2rem), calc(100vw - 1rem));
        height: 1px;
        background: rgba(31, 77, 58, 0.12);
        transform: translate(-50%, -50%);
    }

    .operation-dossier-separator .operation-cattle--mobile {
        position: relative;
        z-index: 1;
    }

    .operation-dossier-intro {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .operation-dossier-visual {
        display: none;
    }

    .operation-dossier-intro .operation-section__lead {
        max-width: none;
        justify-self: stretch;
    }

    .operation-dossier-intro .operation-section__lead h2 {
        max-width: none;
    }

    .operation-layout--details {
        grid-template-areas:
            "lead"
            "flow"
            "assurance"
            "footer";
    }

    .operation-layout--execution {
        grid-template-areas:
            "lead"
            "note"
            "flow";
    }

    .operation-layout--transparency {
        grid-template-areas:
            "lead"
            "note"
            "assurance"
            "footer";
    }

    .operation-section .section-title,
    .operation-section__lead h2 {
        max-width: none;
    }

    .operation-execution__note,
    .operation-transparency__note {
        justify-self: stretch;
        max-width: none;
    }

    .operation-dossier__items {
        grid-template-columns: 1fr;
    }

    .operation-dossier-layout > .operation-dossier {
        max-width: none;
        margin-top: 0.5rem;
    }

    .operation-layout--transparency .operation-assurance {
        grid-template-columns: 1fr;
    }

    .operation-layout--transparency .operation-checklist,
    .operation-layout--transparency .operation-visit {
        grid-column: auto;
    }
}

@media (max-width: 900px) {
    .demand-driver-bar {
        flex-direction: column;
    }

    .brazil-intro {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .brazil-intro__header .section-title,
    .brazil-intro__lead {
        max-width: none;
    }

    .brazil-carousel__track {
        animation-duration: 30s;
    }

    .grid--3.testimonials__grid { grid-template-columns: 1fr; }
    .operation-hero,
    .operation-dossier-layout,
    .operation-layout--details,
    .operation-layout--execution,
    .operation-layout--transparency {
        gap: 1.35rem;
    }
    .operation-transparency-panel__grid { grid-template-columns: 1fr; }
    .field-visit-band__content h2 { max-width: none; }
    .operation-steps { grid-template-columns: 1fr; }
    .operation-section__footer {
        flex-direction: column;
        align-items: flex-start;
    }
    .hero__subtitle { font-size: 0.95rem; }
}

@media (max-width: 640px) {
    .quiz-cta-band__inner {
        padding: 1.1rem;
        border-radius: 1.35rem;
    }

    .quiz-cta-band__copy h2 {
        font-size: clamp(1.7rem, 8vw, 2.25rem);
    }

    .quiz-cta-band__inner .btn {
        width: 100%;
    }

    .demand-shell__intro .section-title {
        font-size: clamp(2rem, 8.5vw, 2.95rem);
    }

    .demand-shell__lead,
    .demand-narrative p,
    .demand-insight__primary p,
    .demand-insight__support-item p,
    .demand-thesis p,
    .demand-thesis__focus {
        font-size: 0.95rem;
    }

    .demand-insight__primary,
    .demand-insight__support-item,
    .demand-narrative,
    .demand-thesis-band {
        padding: 1.15rem;
    }

    .demand-thesis-band {
        align-items: stretch;
    }

    .demand-thesis-band .btn {
        width: 100%;
    }

    .brazil-intro__header .section-title {
        font-size: clamp(2.1rem, 9vw, 3rem);
    }

    .brazil-intro__body {
        padding: 1.25rem;
    }

    .brazil-intro__note {
        border-radius: 1rem;
    }

    .brazil-carousel {
        margin-inline: -1rem;
        padding-inline: 1rem;
        -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
        mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
    }

    .brazil-carousel__track {
        animation-duration: 28s;
    }

    .brazil-stat-card {
        max-width: min(17rem, calc(100vw - 4rem));
        padding: 0.95rem 1rem;
        gap: 0.85rem;
    }

    .brazil-stat-card p {
        font-size: 0.95rem;
        max-width: 15ch;
    }

    .operation-section--overview {
        padding-bottom: clamp(8.5rem, 28vw, 10.5rem);
    }

    .field-visit-band__content {
        justify-items: center;
        text-align: center;
    }

    .field-visit-band__content h2 {
        font-size: clamp(1.95rem, 8vw, 2.55rem);
    }

    .field-visit-band__content p {
        max-width: 32rem;
    }

    .field-visit-band__visual {
        width: min(calc(100vw - 4rem), 21.5rem);
        justify-self: center;
        margin: 0 auto;
    }

    .field-visit-band__cta {
        justify-self: center;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .field-visit-band__cta .btn {
        width: auto;
        max-width: none;
        white-space: nowrap;
        padding-inline: 1.7rem;
        font-size: 0.96rem;
    }

    .field-visit-video__play {
        width: 4rem;
        height: 4rem;
    }

    .field-visit-video__play-icon {
        width: 100%;
        height: 100%;
    }

    .operation-transparency-panel__intro {
        justify-items: center;
        text-align: center;
    }

    .operation-transparency-panel__intro h2 {
        max-width: none;
        font-size: clamp(1.9rem, 8vw, 2.45rem);
    }

    .operation-transparency-panel__intro p {
        max-width: 30rem;
    }

    .operation-transparency-card {
        padding: 1.15rem;
    }

    .operation-section--overview .operation-hero__content {
        gap: 0.6rem;
    }

    .operation-overview__body {
        max-width: none;
        padding: 0;
    }

    .operation-overview__item {
        grid-template-columns: auto 1fr;
        gap: 0.85rem;
        padding: 0.95rem;
    }

    .operation-overview__icon {
        width: 2.75rem;
        height: 2.75rem;
        border-radius: 0.9rem;
    }

    .operation-overview__item p {
        font-size: 0.95rem;
        line-height: 1.72;
    }

    .operation-section--overview .section-title {
        max-width: none;
        font-size: clamp(1.9rem, 8vw, 2.4rem);
    }

    .operation-visit {
        grid-template-columns: 1fr;
    }

    .operation-dossier-intro .operation-section__lead {
        justify-items: center;
        text-align: center;
    }

    .operation-dossier-intro .operation-section__lead p {
        max-width: 32rem;
    }

    .operation-dossier-copy {
        justify-items: center;
        text-align: center;
    }

    .operation-dossier-copy__item {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 0.8rem;
        text-align: center;
        padding: 1rem;
    }

    .operation-dossier-copy__icon {
        width: 3.1rem;
        height: 3.1rem;
    }

    .operation-dossier-copy__item p {
        width: 100%;
        margin: 0 auto;
    }

    .operation-dossier-intro .operation-section__lead .operation-eyebrow {
        justify-self: center;
    }

    .operation-dossier-separator {
        position: relative;
        display: block;
        height: clamp(7.5rem, 25vw, 8.5rem);
        margin: clamp(-3.5rem, -10vw, -2.75rem) 0 1.25rem;
        padding: 0;
        z-index: 4;
    }

    .operation-dossier-separator::before {
        top: 0;
        width: min(calc(100vw - 6rem), 16rem);
        transform: translateX(-50%);
    }

    .operation-dossier-separator .operation-cattle--mobile {
        position: absolute;
        top: 0;
        left: 50%;
        z-index: 5;
        width: min(calc(100vw - 2rem), 23rem);
        max-width: none;
        overflow: visible;
        transform: translate(-50%, -50%);
    }

    .operation-dossier-separator .operation-cattle--mobile img {
        transform: none;
        transform-origin: center center;
    }
}

@media (max-width: 480px) {
    .field-visit-band {
        padding: 3.5rem 0;
    }

    .operation-dossier,
    .operation-flow,
    .operation-assurance,
    .operation-visit {
        padding: 1.35rem;
        border-radius: 1.35rem;
    }

    .operation-section__lead h2 {
        font-size: clamp(1.9rem, 7vw, 2.35rem);
    }

    .operation-eyebrow {
        font-size: 0.7rem;
        letter-spacing: 0.14em;
    }

    .operation-section__footer .btn {
        width: 100%;
    }
}

@keyframes loaderDotJump {
    0%, 18%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.42;
    }
    9% {
        transform: translateY(-0.45rem) scale(1.08);
        opacity: 1;
    }
}

@keyframes loaderLogoPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.92;
    }
    50% {
        transform: scale(1.045);
        opacity: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    .page-loader__logo,
    .page-loader__dots span {
        animation: none;
    }
}
