/* ═══════════════════════════════════════════════════════════════════
   LILIAN PRIMO ALBUQUERQUE — Premium Landing Page
   FULL CSS (Parte 1 + Parte 2 unificadas)
   ═══════════════════════════════════════════════════════════════════ */

/* ══════════════════════════════════════════════════
   DESIGN TOKENS / CUSTOM PROPERTIES
   ══════════════════════════════════════════════════ */
:root {
    /* ── Colors ── */
    --navy: #0D1B2A;
    --navy-deep: #080F1A;
    --navy-mid: #131F30;
    --white: #FFFFFF;
    --off-white: #F8F6F0;
    --gold: #C39C3F;
    --gold-light: #D4B066;
    --gold-dim: rgba(195, 156, 63, .25);
    --blue: #2862F1;
    --gray-100: #E8E6E0;
    --gray-200: #D0CEC8;
    --gray-300: #9B9890;
    --gray-500: #5C5A54;
    --gray-700: #2E2D2A;

    /* ── Typography ── */
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* ── Layout ── */
    --max-w: 1280px;
    --px: 40px;

    /* ── Radii ── */
    --radius-xs: 4px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    /* ── Shadows ── */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, .06);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, .08);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, .12);
    --shadow-gold: 0 4px 20px rgba(195, 156, 63, .25);
    --shadow-gold-lg: 0 8px 36px rgba(195, 156, 63, .35);

    /* ── Easings ── */
    --ease: cubic-bezier(.4, 0, .2, 1);
    --ease-out-expo: cubic-bezier(.16, 1, .3, 1);
    --ease-in-out: cubic-bezier(.65, 0, .35, 1);
}

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

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

body {
    background: var(--navy);
    color: var(--gray-700);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.is-loading {
    overflow: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color .3s var(--ease);
}

ul,
ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

::selection {
    background: var(--gold);
    color: var(--navy);
}

.gold {
    color: var(--gold);
}

.italic {
    font-style: italic;
}

.light {
    color: var(--white);
}

/* ══════════════════════════════════════════════════
   NOISE GRAIN OVERLAY
   ══════════════════════════════════════════════════ */
#noise {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: .028;
    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='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 180px;
}

/* ══════════════════════════════════════════════════
   SKIP LINK
   ══════════════════════════════════════════════════ */
.skip-link {
    position: fixed;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--navy);
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: .85rem;
    z-index: 10000;
    transition: top .3s var(--ease);
}

.skip-link:focus {
    top: 12px;
}



/* ══════════════════════════════════════════════════
   SECTION DOTS (Side Navigation)
   ══════════════════════════════════════════════════ */
.section-dots {
    position: fixed;
    right: 28px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 900;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1.5px solid rgba(195, 156, 63, .35);
    background: transparent;
    cursor: pointer;
    transition: all .35s var(--ease);
    position: relative;
}

.dot:hover {
    border-color: var(--gold);
    transform: scale(1.3);
}

.dot.is-active {
    background: var(--gold);
    border-color: var(--gold);
    box-shadow: 0 0 12px rgba(195, 156, 63, .4);
}

/* ══════════════════════════════════════════════════
   HEADER / NAVIGATION
   ══════════════════════════════════════════════════ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 22px 0;
    transition: all .45s var(--ease);
}

.header.is-scrolled {
    padding: 10px 0;
    background: rgba(13, 27, 42, .88);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(195, 156, 63, .06);
}

.nav {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--px);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo {
    display: flex;
    align-items: baseline;
    gap: 4px;
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--white);
    white-space: nowrap;
}

.nav__logo strong {
    color: var(--gold);
    font-weight: 700;
}

.nav__logo small {
    font-family: var(--font-sans);
    font-size: .55rem;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .3);
    margin-left: 10px;
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav__link {
    font-size: .78rem;
    font-weight: 500;
    letter-spacing: .04em;
    color: rgba(255, 255, 255, .55);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: all .35s var(--ease);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 14px;
    right: 14px;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .4s var(--ease-out-expo);
}

.nav__link:hover,
.nav__link.is-active {
    color: var(--white);
}

.nav__link:hover::after,
.nav__link.is-active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav__cta {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy) !important;
    font-weight: 700;
    letter-spacing: .06em;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    margin-left: 8px;
    transition: all .35s var(--ease);
}

.nav__cta::after {
    display: none;
}

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

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 26px;
    height: 20px;
    cursor: pointer;
    z-index: 1001;
}

.nav__toggle span {
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all .35s var(--ease-out-expo);
    transform-origin: center;
}

.nav__toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav__toggle.is-open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav__toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ══════════════════════════════════════════════════
   SHARED COMPONENTS
   ══════════════════════════════════════════════════ */

/* Eyebrow */
.eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.eyebrow-line {
    width: 32px;
    height: 1.5px;
    background: var(--gold);
    display: inline-block;
    flex-shrink: 0;
}

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

/* Section Title */
.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--gray-700);
    margin-bottom: 32px;
}

.section-title em {
    color: var(--gold);
    font-style: italic;
}

.section-title.light {
    color: var(--white);
}

/* Lead Text */
.lead {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--gray-500);
}

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

/* ══════════════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-sans);
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .04em;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all .4s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.btn--primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy);
}

.btn--primary:hover {
    box-shadow: var(--shadow-gold-lg);
    transform: translateY(-3px);
}

.btn--ghost {
    background: rgba(255, 255, 255, .06);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, .12);
    backdrop-filter: blur(8px);
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .2);
    transform: translateY(-2px);
}

.btn--outline {
    background: transparent;
    color: var(--gold);
    border: 1.5px solid var(--gold);
}

.btn--outline:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn--lg {
    padding: 16px 32px;
    font-size: .88rem;
}

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

.btn i {
    font-size: .85em;
}

/* ══════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    background: var(--navy);
    overflow: hidden;
}

.hero__ambient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 50% at 20% 50%, rgba(40, 98, 241, .08), transparent),
        radial-gradient(ellipse 50% 60% at 80% 40%, rgba(195, 156, 63, .06), transparent);
    pointer-events: none;
    animation: ambientPulse 12s ease-in-out infinite alternate;
}

@keyframes ambientPulse {
    0% {
        opacity: 1;
    }

    100% {
        opacity: .6;
    }
}

.hero__grid {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Hero Eyebrow */
.hero__eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.hero__eyebrow .eyebrow-line {
    width: 28px;
    height: 1.5px;
    background: var(--gold);
}

.hero__eyebrow-text {
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 1;
    transform: none;
    transition: all .6s var(--ease-out-expo);
    animation: heroFadeUp .8s .08s both;
}

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

/* Hero Title */
.hero__title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 6.5vw, 6rem);
    font-weight: 900;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 24px;
}

.hero__title-line {
    display: block;
    overflow: hidden;
    padding-bottom: 4px;
}


.hero__title-word {
    display: inline-block;
    transform: none;
    opacity: 0;
    animation: heroFadeUp .9s both;
}

.hero__title-line:nth-child(1) .hero__title-word {
    animation-delay: .12s;
}

.hero__title-line:nth-child(2) .hero__title-word {
    animation-delay: .24s;
}

.hero__title-line:nth-child(3) .hero__title-word {
    animation-delay: .36s;
}

/* Hero Sub */
.hero__sub {
    font-size: .95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, .72);
    max-width: 440px;
    margin-bottom: 32px;
    opacity: 1;
    transform: none;
    animation: heroFadeUp .85s .48s both;
}

/* Hero Actions */
.hero__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    opacity: 1;
    transform: none;
    animation: heroFadeUp .85s .58s both;
}

/* Hero Visual */
.hero__visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__img-wrap {
    position: relative;
}

.hero__img-reveal {
    width: min(420px, 88%);
    aspect-ratio: 3/4;
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    clip-path: inset(0 0 0 0);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .32);
    animation: heroImageIn 1s .28s both;
}

.hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform .6s var(--ease);
}

.hero__img-reveal:hover .hero__img {
    transform: scale(1.04);
}

.hero__img-border {
    position: absolute;
    inset: -6px;
    border: 1.5px solid rgba(195, 156, 63, .24);
    border-radius: calc(var(--radius-xl) + 6px);
    opacity: 1;
    transition: opacity .8s var(--ease);
    animation: heroFadeUp .9s .45s both;
}

.hero__img-border.is-visible {
    opacity: 1;
}

.hero__img-glow {
    position: absolute;
    inset: -30px;
    background: radial-gradient(circle, rgba(195, 156, 63, .1) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

/* Hero Float Cards */
.hero__float {
    position: absolute;
    background: rgba(13, 27, 42, .86);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(195, 156, 63, .18);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    display: flex;
    flex-direction: column;
    opacity: 1;
    transform: none;
    z-index: 5;
    box-shadow: 0 18px 42px rgba(0, 0, 0, .18);
    animation: heroFloatIn .9s both;
}

.hero__float strong {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.hero__float span {
    font-size: .62rem;
    font-weight: 500;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .5);
    margin-top: 4px;
}

.hero__float--1 {
    top: 8%;
    right: -2%;
    animation-delay: .6s;
}

.hero__float--2 {
    bottom: 38%;
    right: -10%;
    animation-delay: .72s;
}

.hero__float--3 {
    bottom: 8%;
    right: 2%;
    animation-delay: .84s;
}

/* Hero Scroll */
.hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 3;
}

.hero__scroll span {
    font-size: .6rem;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .3);
}

.hero__scroll-line {
    width: 1px;
    height: 48px;
    background: rgba(255, 255, 255, .1);
    position: relative;
    overflow: hidden;
}

.hero__scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 50%;
    background: var(--gold);
    animation: scrollLine 2s var(--ease) infinite;
}

@keyframes scrollLine {
    0% {
        top: -50%;
    }

    100% {
        top: 150%;
    }
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroImageIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes heroFloatIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ══════════════════════════════════════════════════
   MARQUEE
   ══════════════════════════════════════════════════ */
.marquee {
    background: var(--navy-deep);
    padding: 18px 0;
    overflow: hidden;
    border-top: 1px solid rgba(195, 156, 63, .06);
    border-bottom: 1px solid rgba(195, 156, 63, .06);
}

.marquee__track {
    display: flex;
    gap: 40px;
    white-space: nowrap;
    animation: marqueeScroll 30s linear infinite;
}

.marquee__track span {
    font-family: var(--font-serif);
    font-size: .95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .15);
    letter-spacing: .08em;
    text-transform: uppercase;
    flex-shrink: 0;
}

.marquee__track .sep {
    color: rgba(195, 156, 63, .25);
    font-size: .7rem;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ══════════════════════════════════════════════════
   NUMBERS / IMPACT
   ══════════════════════════════════════════════════ */
.numbers {
    background: var(--navy);
    padding: clamp(48px, 6vw, 80px) 0;
}

.numbers__grid {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--px);
    display: flex;
    justify-content: center;
}

.numbers__item {
    flex: 1;
    text-align: center;
    padding: 24px 16px;
    border-right: 1px solid rgba(195, 156, 63, .08);
    position: relative;
}

.numbers__item:last-child {
    border-right: none;
}

.numbers__val {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    display: inline;
}

.numbers__item sup {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold-light);
    vertical-align: super;
    margin-left: 2px;
}

.numbers__item p {
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .35);
    margin-top: 8px;
    line-height: 1.5;
}

/* ══════════════════════════════════════════════════
   MEDIA STRIP — TV / PRESS LOGOS
   ══════════════════════════════════════════════════ */
.media {
    background: var(--navy-deep);
    padding: 48px 0 40px;
    text-align: center;
    overflow: hidden;
    border-bottom: 1px solid var(--gray-100);
}

.media__label {
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--gray-300);
    margin-bottom: 32px;
}

.media__row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(32px, 6vw, 64px);
    flex-wrap: wrap;
    padding: 0 var(--px);
    max-width: var(--max-w);
    margin: 0 auto;
}

.media__logo {
    opacity: .5;
    transition: all .4s var(--ease);
    position: relative;
    cursor: default;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
}

.media__logo:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.media__logo img {
    max-height: 100%;
    max-width: 140px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter .4s var(--ease);
}

.media__logo:hover img {
    filter: grayscale(0%);
}

.media__row--clone {
    display: none;
    /* reserve for infinite scroll variant */
}

/* ══════════════════════════════════════════════════
   SOBRE — IMMERSIVE SPLIT
   ══════════════════════════════════════════════════ */
.sobre {
    background: var(--off-white);
    padding: clamp(80px, 10vw, 140px) 0;
}

.sobre__pattern {
    margin-top: 90px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--gold);
    aspect-ratio: 4 / 3;
}

.sobre__pattern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: inherit;
}

@media (max-width: 1024px) {
    .sobre__pattern {
        flex: none;
        min-height: 140px;
        aspect-ratio: 21 / 7;
    }
}

@media (max-width: 768px) {
    .sobre__pattern {
        min-height: 120px;
        aspect-ratio: 16 / 6;
        border-radius: var(--radius-lg);
    }
}

@media (prefers-reduced-motion: reduce) {
    .sobre__pattern:hover img {
        transform: none;
    }
}

@media (hover: none) and (pointer: coarse) {
    .sobre__pattern:hover img {
        transform: none;
    }
}


.sobre__layout {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--px);
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 64px;
    align-items: start;
}

/* AJUSTE na regra existente */
.sobre__visual-col {
    position: relative;
    top: auto;
    display: flex;            /* ← adicione */
    flex-direction: column;   /* ← adicione */
}

.sobre__img-stack {
    position: relative;
}

.sobre__img-main {
    position: relative;
}

.sobre__img-clip {
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 3/4;
    background: var(--gray-100);
}

.sobre__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform .6s var(--ease);
}

.sobre__img-clip:hover .sobre__img {
    transform: scale(1.04);
}

.sobre__img-frame {
    position: absolute;
    inset: -6px;
    border: 1.5px solid rgba(195, 156, 63, .15);
    border-radius: calc(var(--radius-xl) + 6px);
    pointer-events: none;
}

/* Achievement Chips */
.sobre__chip {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-md);
    padding: 10px 16px;
    box-shadow: var(--shadow-md);
    opacity: 0;
    transform: translateY(16px);
    z-index: 3;
}

.sobre__chip i {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy);
    border-radius: var(--radius-sm);
    font-size: .72rem;
    flex-shrink: 0;
}

.sobre__chip strong {
    font-size: .78rem;
    font-weight: 700;
    color: var(--gray-700);
    display: block;
    line-height: 1.2;
}

.sobre__chip span {
    font-size: .62rem;
    color: var(--gray-300);
    font-weight: 500;
}

.sobre__chip--1 {
    top: 8%;
    right: -14%;
}

.sobre__chip--2 {
    top: 48%;
    right: -18%;
}

.sobre__chip--3 {
    bottom: 14%;
    right: -10%;
}

/* Sobre Quote */
.sobre__quote {
    margin-top: 32px;
    padding: 24px 28px;
    background: var(--white);
    border-left: 3px solid var(--gold);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    position: relative;
}

.sobre__quote-mark {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: var(--gold);
    line-height: 1;
    position: absolute;
    top: -8px;
    left: 16px;
    opacity: .3;
}

.sobre__quote p {
    font-family: var(--font-serif);
    font-size: .95rem;
    font-style: italic;
    color: var(--gray-500);
    line-height: 1.7;
}

.sobre__quote cite {
    display: block;
    margin-top: 10px;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .08em;
    color: var(--gold);
    font-style: normal;
    text-transform: uppercase;
}

/* Sobre Text Column */
.sobre__text-col {
    padding-top: 8px;
}

.sobre__block {
    margin-bottom: 20px;
}

.sobre__block p {
    font-size: .92rem;
    line-height: 1.85;
    color: var(--gray-500);
}

.sobre__block p strong {
    color: var(--gray-700);
    font-weight: 600;
}

/* Executive Board (Redesign Elegante) */
.sobre__executive-board {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(195, 156, 63, .2);
}

.exec-board-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 24px;
}

.exec-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    margin-bottom: 16px;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all .4s var(--ease);
    position: relative;
    overflow: hidden;
}

.exec-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--gold), var(--gold-light));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .4s var(--ease-out-expo);
}

.exec-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(195, 156, 63, .3);
}

.exec-card:hover::before {
    transform: scaleY(1);
}

.exec-card__icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(195, 156, 63, .1);
    color: var(--gold);
    border-radius: var(--radius-sm);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.exec-card__body strong {
    display: block;
    font-size: .95rem;
    font-weight: 700;
    color: var(--gray-700);
    margin-bottom: 6px;
}

.exec-card__body span {
    font-size: .85rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* Strategic Roles Grid */
.exec-roles {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.exec-roles span {
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--navy);
    background: rgba(13, 27, 42, .04);
    border: 1px solid rgba(13, 27, 42, .1);
    padding: 10px 18px;
    border-radius: 4px;
    transition: all .35s var(--ease);
    cursor: default;
}

.exec-roles span:hover {
    background: var(--navy);
    color: var(--gold);
    border-color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(13, 27, 42, .15);
}

/* ══════════════════════════════════════════════════
   TRAJETÓRIA — TIMELINE ANIMADA
   ══════════════════════════════════════════════════ */
.traj {
    background: linear-gradient(180deg, var(--off-white) 0%, #f5f1e7 100%);
    padding: clamp(70px, 9vw, 120px) 0;
    overflow: hidden;
}

.traj__header {
    max-width: var(--max-w);
    margin: 0 auto 52px;
    padding: 0 var(--px);
    text-align: center;
}

.traj__track-wrapper {
    position: relative;
    max-width: 1140px;
    margin: 0 auto;
    padding: 12px var(--px) 0;
}

.traj__line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(13, 27, 42, .08), rgba(13, 27, 42, .18));
    overflow: hidden;
    box-shadow: inset 0 0 0 1px rgba(195, 156, 63, .12);
}

.traj__line-fill {
    display: block;
    width: 100%;
    height: 0%;
    border-radius: inherit;
    background: linear-gradient(180deg, var(--gold) 0%, #d8b56a 38%, var(--blue) 72%, var(--gold) 100%);
    box-shadow: 0 0 26px rgba(195, 156, 63, .28);
    transition: height .14s linear;
}

.traj__track {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 28px;
    max-width: 1060px;
    margin: 0 auto;
}

.traj__card {
    width: calc(50% - 52px);
    min-width: 0;
    background: rgba(255, 255, 255, .84);
    border: 1px solid rgba(13, 27, 42, .08);
    border-radius: 22px;
    padding: 34px 28px;
    position: relative;
    overflow: visible;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .4s var(--ease), opacity .5s var(--ease);
    box-shadow: 0 18px 42px rgba(13, 27, 42, .06);
    opacity: .55;
    transform: translateY(32px) scale(.98);
}

.traj__card:nth-child(odd) {
    margin-right: auto;
}

.traj__card:nth-child(even) {
    margin-left: auto;
}

.traj__card::before {
    content: '';
    position: absolute;
    top: 42px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    box-shadow: 0 0 0 7px rgba(195, 156, 63, .12), 0 0 0 1px rgba(13, 27, 42, .08);
}

.traj__card:nth-child(odd)::before {
    right: -62px;
}

.traj__card:nth-child(even)::before {
    left: -62px;
}

.traj__card::after {
    content: '';
    position: absolute;
    top: 50px;
    width: 44px;
    height: 1px;
    background: linear-gradient(90deg, rgba(195, 156, 63, .7), rgba(40, 98, 241, .2));
}

.traj__card:nth-child(odd)::after {
    right: -44px;
}

.traj__card:nth-child(even)::after {
    left: -44px;
}

.traj__card:hover,
.traj__card.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    border-color: rgba(195, 156, 63, .22);
    box-shadow: 0 24px 60px rgba(13, 27, 42, .12);
}

.traj__card.is-active {
    box-shadow: 0 28px 80px rgba(195, 156, 63, .16);
    border-color: rgba(195, 156, 63, .32);
}

.traj__card--accent {
    background: linear-gradient(135deg, var(--navy) 0%, #11243a 100%);
    border-color: rgba(195, 156, 63, .16);
}

.traj__card--accent h3,
.traj__card--accent p {
    color: rgba(255, 255, 255, .78);
}

.traj__card--accent h3 {
    color: var(--gold);
}

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

.traj__card--accent::after {
    background: linear-gradient(90deg, rgba(195, 156, 63, .85), rgba(255, 255, 255, .22));
}

.traj__num {
    font-family: var(--font-serif);
    font-size: 3.1rem;
    font-weight: 900;
    color: rgba(195, 156, 63, .08);
    position: absolute;
    top: 12px;
    right: 18px;
    line-height: 1;
}

.traj__card--accent .traj__num {
    color: rgba(195, 156, 63, .18);
}

.traj__period {
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--gold);
    display: inline-block;
    margin-bottom: 14px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(195, 156, 63, .08);
}

.traj__card h3 {
    font-family: var(--font-serif);
    font-size: 1.12rem;
    font-weight: 700;
    color: var(--gray-700);
    margin-bottom: 12px;
    line-height: 1.3;
}

.traj__card p {
    font-size: .84rem;
    line-height: 1.8;
    color: var(--gray-500);
}

.traj__icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(195, 156, 63, .12), rgba(195, 156, 63, .04));
    border-radius: 14px;
    color: var(--gold);
    font-size: .88rem;
    margin-top: 18px;
}

.traj__card--accent .traj__icon {
    background: linear-gradient(135deg, rgba(195, 156, 63, .15), rgba(195, 156, 63, .06));
}

/* ══════════════════════════════════════════════════
   AUTORIDADE
   ══════════════════════════════════════════════════ */
.auth {
    background: var(--navy);
    padding: clamp(80px, 10vw, 120px) 0;
}

.auth__container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--px);
}

.auth__header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 52px;
}

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

.auth__card {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--radius-lg);
    padding: 32px 26px;
    transition: all .4s var(--ease);
    position: relative;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
}

.auth__card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(195, 156, 63, .04), transparent);
    opacity: 0;
    transition: opacity .4s var(--ease);
}

.auth__card:hover {
    border-color: rgba(195, 156, 63, .2);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .2);
}

.auth__card:hover::before {
    opacity: 1;
}

.auth__icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(195, 156, 63, .12), rgba(195, 156, 63, .04));
    border-radius: var(--radius-md);
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.auth__card h3 {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.auth__card p {
    font-size: .8rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, .45);
    position: relative;
    z-index: 1;
}

.auth__card p strong {
    color: var(--gold);
    font-weight: 600;
}

/* ══════════════════════════════════════════════════
   ECOSSISTEMA — BENTO GRID
   ══════════════════════════════════════════════════ */
.eco {
    background: var(--off-white);
    padding: clamp(80px, 10vw, 120px) 0;
}

.eco__container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--px);
}

.eco__header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
}

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

.eco__item {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 32px 26px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: all .4s var(--ease);
    text-decoration: none;
    color: inherit;
    opacity: 1;
    visibility: visible;
}

.eco__item:hover {
    transform: translateY(-6px);
    border-color: rgba(195, 156, 63, .2);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .06);
}

.eco__item--large {
    grid-row: span 2;
}

.eco__item--dark {
    background: var(--navy);
    border-color: rgba(195, 156, 63, .1);
}

.eco__item--dark h3 {
    color: var(--gold);
}

.eco__item--dark p {
    color: rgba(255, 255, 255, .5);
}

.eco__item--outline {
    background: transparent;
    border: 1.5px dashed rgba(195, 156, 63, .25);
}

.eco__shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(195, 156, 63, .02), transparent 60%);
    opacity: 0;
    transition: opacity .4s var(--ease);
    pointer-events: none;
}

.eco__item:hover .eco__shine {
    opacity: 1;
}

.eco__badge {
    font-size: .58rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(195, 156, 63, .08);
    padding: 4px 10px;
    border-radius: 50px;
    display: inline-block;
    width: fit-content;
    margin-bottom: 14px;
}

.eco__ico {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 14px;
    opacity: .6;
}

.eco__item h3 {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.eco__item p {
    font-size: .82rem;
    line-height: 1.75;
    color: var(--gray-500);
    flex: 1;
}

.eco__link {
    font-size: .72rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: .04em;
    margin-top: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap .3s var(--ease);
}

.eco__item:hover .eco__link {
    gap: 10px;
}

/* ══════════════════════════════════════════════════
   VIDEO
   ══════════════════════════════════════════════════ */
.video {
    background: var(--navy);
    padding: clamp(80px, 10vw, 120px) 0;
    position: relative;
}

.video__container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--px);
    text-align: center;
}

.video__text {
    max-width: 640px;
    margin: 0 auto 48px;
}

.video__desc {
    font-size: .92rem;
    color: rgba(255, 255, 255, .45);
    line-height: 1.75;
}

/* Video Facade */
.video__facade {
    position: relative;
    width: 100%;
    max-width: 820px;
    margin: 0 auto;
    aspect-ratio: 16/9;
    border-radius: var(--radius-xl);
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(195, 156, 63, .1);
}

.video__thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s var(--ease);
}

.video__facade:hover .video__thumb {
    transform: scale(1.04);
}

.video__play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(195, 156, 63, .9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 1.3rem;
    z-index: 3;
    transition: all .4s var(--ease);
    box-shadow: 0 0 40px rgba(195, 156, 63, .3);
}

.video__facade:hover .video__play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 60px rgba(195, 156, 63, .5);
}

.video__play-btn i {
    margin-left: 4px;
    /* optical center for play triangle */
}

.video__facade-glow {
    position: absolute;
    inset: -40px;
    background: radial-gradient(circle at center, rgba(195, 156, 63, .08) 0%, transparent 70%);
    pointer-events: none;
}

/* Video Frame */
.video__frame-wrap {
    max-width: 820px;
    margin: 0 auto;
}

.video__frame {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(195, 156, 63, .1);
}

.video__frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Video Quote */
.video__quote {
    max-width: 640px;
    margin: 40px auto 0;
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-style: italic;
    color: rgba(255, 255, 255, .4);
    line-height: 1.7;
    position: relative;
    padding-left: 28px;
}

.video__quote i {
    color: var(--gold);
    opacity: .4;
    position: absolute;
    left: 0;
    top: 2px;
    font-size: .85rem;
}

/* ══════════════════════════════════════════════════
   MANIFESTO
   ══════════════════════════════════════════════════ */
.manifesto {
    background: var(--off-white);
    padding: clamp(80px, 10vw, 120px) 0;
}

.manifesto__layout {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--px);
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 56px;
    align-items: center;
}

.manifesto__text p {
    font-size: .92rem;
    line-height: 1.85;
    color: var(--gray-500);
    margin-bottom: 16px;
}

.manifesto__title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--gray-700);
    margin-bottom: 24px;
}

.manifesto__title em {
    color: var(--gold);
    font-style: italic;
}

.manifesto__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 24px;
}

/* Manifesto Card */
.manifesto__card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-xl);
    padding: 36px 32px;
    box-shadow: var(--shadow-md);
}

.manifesto__card-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-100);
}

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

.manifesto__card-head span {
    font-family: var(--font-serif);
    font-size: .95rem;
    font-weight: 700;
    color: var(--gray-700);
}

.manifesto__card ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: .82rem;
    color: var(--gray-500);
    border-bottom: 1px solid rgba(0, 0, 0, .03);
}

.manifesto__card ul li:last-child {
    border-bottom: none;
}

.manifesto__card ul li i {
    color: var(--gold);
    font-size: .65rem;
    flex-shrink: 0;
}

.manifesto__card-foot {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-100);
}

.manifesto__card-foot a {
    width: 36px;
    height: 36px;
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-300);
    font-size: .82rem;
    transition: all .35s var(--ease);
}

.manifesto__card-foot a:hover {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
    transform: translateY(-2px);
}

/* ══════════════════════════════════════════════════
   CONTATO
   ══════════════════════════════════════════════════ */
.contato {
    background: var(--white);
    padding: clamp(80px, 10vw, 120px) 0;
}

.contato__layout {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}

.contato__body {
    font-size: .92rem;
    color: var(--gray-500);
    line-height: 1.75;
    margin-bottom: 28px;
}

/* Contact Channels */
.contato__channels {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.channel {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    background: var(--off-white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-md);
    transition: all .35s var(--ease);
    text-decoration: none;
    color: inherit;
}

.channel:hover {
    border-color: rgba(195, 156, 63, .2);
    transform: translateX(6px);
    box-shadow: var(--shadow-sm);
}

.channel>i:first-child {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.channel--wa>i:first-child {
    background: #25D366;
    color: #fff;
}

.channel--yt>i:first-child {
    background: #FF0000;
    color: #fff;
}

.channel--li>i:first-child {
    background: #0077B5;
    color: #fff;
}

.channel--ig>i:first-child {
    background: linear-gradient(135deg, #833AB4, #FD1D1D, #F77737);
    color: #fff;
}

.channel div strong {
    display: block;
    font-size: .82rem;
    color: var(--gray-700);
}

.channel div span {
    font-size: .7rem;
    color: var(--gray-300);
}

.channel__arrow {
    margin-left: auto;
    color: var(--gray-200);
    font-size: .7rem;
    transition: all .35s var(--ease);
}

.channel:hover .channel__arrow {
    color: var(--gold);
    transform: translateX(4px);
}

/* Contact Form */
.contato__form-wrap {
    background: var(--off-white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-xl);
    padding: 36px 32px;
}

.contato__form h3 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.contato__form>p {
    font-size: .82rem;
    color: var(--gray-300);
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: 6px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-sans);
    font-size: .88rem;
    color: var(--gray-700);
    background: var(--white);
    border: 1.5px solid var(--gray-100);
    border-radius: var(--radius-sm);
    transition: all .35s var(--ease);
    appearance: none;
    -webkit-appearance: none;
}

.form-group input::placeholder {
    color: var(--gray-200);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(195, 156, 63, .1);
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%239B9890' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}

.form-privacy {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .68rem;
    color: var(--gray-300);
    margin-top: 12px;
}

.form-privacy i {
    font-size: .6rem;
    color: var(--gold);
}

/* Form Success */
.form-success {
    text-align: center;
    padding: 40px 20px;
    display: none;
}

.form-success.is-visible {
    display: block;
}

.form-success i {
    font-size: 2.5rem;
    color: #27AE60;
    margin-bottom: 16px;
}

.form-success h4 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.form-success p {
    font-size: .85rem;
    color: var(--gray-500);
}


/* ═══════════════════════════════════════════════════════════════════
   PARTE 2 — Form validation, Footer, Responsive, Utilities
   ═══════════════════════════════════════════════════════════════════ */

.form-group input.is-error,
.form-group select.is-error {
    border-color: #E74C3C;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, .1);
}

.form-group input.is-valid,
.form-group select.is-valid {
    border-color: #27AE60;
    box-shadow: 0 0 0 3px rgba(39, 174, 96, .08);
}

.form-group .error-msg {
    display: none;
    font-size: .7rem;
    color: #E74C3C;
    margin-top: 5px;
    font-weight: 500;
    letter-spacing: .02em;
}

.form-group input.is-error~.error-msg,
.form-group select.is-error~.error-msg {
    display: block;
    animation: errorShake .4s var(--ease);
}

@keyframes errorShake {

    0%,
    100% {
        transform: translateX(0);
    }

    20% {
        transform: translateX(-4px);
    }

    40% {
        transform: translateX(4px);
    }

    60% {
        transform: translateX(-3px);
    }

    80% {
        transform: translateX(3px);
    }
}

/* ══════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════ */
.footer {
    background: var(--navy-deep);
    color: rgba(255, 255, 255, .5);
    padding: 64px 0 32px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(195, 156, 63, .3), transparent);
}

/* Match HTML: .footer__top instead of .footer__grid */
.footer__top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--px);
    margin-bottom: 48px;
}

.footer__brand {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
}

.footer__logo {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
}

.footer__logo strong {
    color: var(--gold);
}

.footer__brand p {
    font-size: .84rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, .4);
    max-width: 340px;
}

.footer__socials {
    display: flex;
    gap: 10px;
}

.footer__socials a {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .4);
    font-size: .85rem;
    transition: all .35s var(--ease);
}

.footer__socials a:hover {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.footer__col h4 {
    font-family: var(--font-serif);
    font-size: .88rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 18px;
    letter-spacing: .03em;
}

.footer__col a {
    display: block;
    font-size: .8rem;
    color: rgba(255, 255, 255, .35);
    padding: 5px 0;
    transition: all .3s var(--ease);
    position: relative;
}

.footer__col a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width .3s var(--ease-out-expo);
}

.footer__col a:hover {
    color: var(--white);
    transform: translateX(4px);
}

.footer__col a:hover::after {
    width: 100%;
}

.footer__bottom {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 24px var(--px) 0;
    border-top: 1px solid rgba(255, 255, 255, .06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer__bottom p {
    font-size: .72rem;
    color: rgba(255, 255, 255, .25);
    letter-spacing: .02em;
}

.footer__tagline em {
    color: rgba(195, 156, 63, .4);
}

/* ══════════════════════════════════════════════════
   BACK TO TOP
   ══════════════════════════════════════════════════ */
.btt {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    z-index: 800;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: all .4s var(--ease-out-expo);
    box-shadow: var(--shadow-gold);
}

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

.btt:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: var(--shadow-gold-lg);
}

.btt:active {
    transform: scale(.95);
}

/* ══════════════════════════════════════════════════
   SCROLL REVEAL CLASSES (GSAP-driven)
   ══════════════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    will-change: transform, opacity;
}

.reveal--left {
    opacity: 0;
    transform: translateX(-40px);
    will-change: transform, opacity;
}

.reveal--right {
    opacity: 0;
    transform: translateX(40px);
    will-change: transform, opacity;
}

.reveal--scale {
    opacity: 0;
    transform: scale(.92);
    will-change: transform, opacity;
}

.reveal--clip {
    clip-path: inset(0 0 100% 0);
    will-change: clip-path;
}

.reveal.is-visible,
.reveal--left.is-visible,
.reveal--right.is-visible,
.reveal--scale.is-visible {
    opacity: 1;
    transform: none;
}

.reveal--clip.is-visible {
    clip-path: inset(0 0 0% 0);
}

.stagger-children>* {
    opacity: 0;
    transform: translateY(24px);
    will-change: transform, opacity;
}

.stagger-children.is-visible>* {
    opacity: 1;
    transform: none;
}

/* ══════════════════════════════════════════════════
   MAGNETIC BUTTON EFFECT
   ══════════════════════════════════════════════════ */
.magnetic {
    transition: transform .4s var(--ease-out-expo);
}

/* ══════════════════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }

    .marquee__track {
        animation: none;
    }

    .hero__title-word {
        transform: none;
        opacity: 1;
        animation: none;
    }

    .hero__sub,
    .hero__actions,
    .hero__float,
    .reveal,
    .reveal--left,
    .reveal--right,
    .reveal--scale {
        opacity: 1;
        transform: none;
    }

    .reveal--clip {
        clip-path: none;
    }

    .stagger-children>* {
        opacity: 1;
        transform: none;
    }

    .cursor {
        display: none !important;
    }

    .hero__scroll-line::after {
        animation: none;
    }

    .hero__ambient {
        animation: none;
    }
}

/* ══════════════════════════════════════════════════
   HIGH CONTRAST MODE
   ══════════════════════════════════════════════════ */
@media (prefers-contrast: high) {
    :root {
        --gold: #D4AA4F;
        --gold-light: #E8C875;
    }

    .nav__link {
        color: rgba(255, 255, 255, .8);
    }

    .hero__sub {
        color: rgba(255, 255, 255, .75);
    }

    .numbers__item p {
        color: rgba(255, 255, 255, .6);
    }

    .auth__card p {
        color: rgba(255, 255, 255, .65);
    }

    .sobre__block p {
        color: var(--gray-700);
    }

    .eco__item p {
        color: var(--gray-700);
    }
}

/* ══════════════════════════════════════════════════
   KEYBOARD / FOCUS STYLES
   ══════════════════════════════════════════════════ */
:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
    border-radius: var(--radius-xs);
}

:focus:not(:focus-visible) {
    outline: none;
}

/* ══════════════════════════════════════════════════
   PRINT STYLES
   ══════════════════════════════════════════════════ */
@media print {

    *,
    *::before,
    *::after {
        background: transparent !important;
        color: #000 !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    .header,
    .cursor,
    .scroll-progress,
    .section-dots,
    .btt,
    #noise,
    .loader,
    .marquee,
    .hero__ambient,
    .hero__scroll,
    .hero__float {
        display: none !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
    }

    .hero {
        min-height: auto;
        padding: 40px 0;
    }

    .hero__title {
        font-size: 28pt;
    }

    .section-title {
        font-size: 18pt;
    }

    .hero__img-reveal {
        clip-path: none;
        box-shadow: none;
    }

    a[href]::after {
        content: " (" attr(href) ")";
        font-size: 8pt;
    }

    .nav__link::after,
    .nav__cta::after {
        display: none;
    }

    @page {
        margin: 2cm;
    }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 1024px)
   ══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .section-dots {
        display: none;
    }

    .nav__menu {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(360px, 85vw);
        background: rgba(13, 27, 42, .97);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 36px 36px;
        gap: 6px;
        transform: translateX(100%);
        transition: transform .55s var(--ease-out-expo);
        box-shadow: -20px 0 60px rgba(0, 0, 0, .3);
        z-index: 999;
    }

    .nav__menu.is-open {
        transform: translateX(0);
    }

    .nav__toggle {
        display: flex;
    }

    .nav__link {
        font-size: 1.05rem;
        padding: 12px 4px;
        color: rgba(255, 255, 255, .6);
        width: 100%;
    }

    .nav__link::after {
        bottom: 8px;
        left: 0;
        right: auto;
        width: 0;
        transition: width .35s var(--ease-out-expo);
    }

    .nav__link:hover::after {
        width: 32px;
    }

    .nav__cta {
        margin-top: 16px;
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .hero__grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 48px;
    }

    .hero__content {
        align-items: center;
        order: 2;
    }

    .hero__visual {
        order: 1;
    }

    .hero__title-line--indent {
        padding-left: 0;
    }

    .hero__sub {
        margin: 0 auto;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__float--1 {
        top: 4%;
        right: 2%;
    }

    .hero__float--2 {
        top: auto;
        bottom: 46%;
        right: -4%;
    }

    .hero__float--3 {
        bottom: 6%;
        right: 4%;
    }

    .hero__scroll {
        display: none;
    }

    .sobre__layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .sobre__visual-col {
        position: relative;
        top: auto;
    }

    .sobre__chip--1 {
        top: 6%;
        right: 0%;
    }

    .sobre__chip--2 {
        top: auto;
        bottom: 45%;
        right: -3%;
    }

    .sobre__chip--3 {
        bottom: 20%;
        right: 2%;
    }

    .sobre__executive-board {
        margin-top: 40px;
    }

    .traj__card {
        width: calc(50% - 38px);
    }

    .traj__card:nth-child(odd)::before {
        right: -48px;
    }

    .traj__card:nth-child(even)::before {
        left: -48px;
    }

    .traj__card:nth-child(odd)::after {
        right: -32px;
        width: 32px;
    }

    .traj__card:nth-child(even)::after {
        left: -32px;
        width: 32px;
    }

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

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

    .eco__item--large {
        grid-row: auto;
    }

    .manifesto__layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contato__layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer__top {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .footer__brand {
        grid-column: span 2;
    }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 768px)
   ══════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    :root {
        --px: 20px;
    }

    .header {
        padding: 14px 0;
    }

    .header.is-scrolled {
        padding: 10px 0;
    }

    .hero {
        padding: 120px 0 60px;
        min-height: auto;
    }

    .hero__title {
        font-size: clamp(2.4rem, 10vw, 3.8rem);
    }

    .hero__img-reveal {
        width: min(280px, 80vw);
    }

    .hero__float {
        display: none;
    }

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

    .numbers__grid {
        flex-direction: column;
        gap: 0;
    }

    .numbers__item {
        border-right: none;
        border-bottom: 1px solid rgba(195, 156, 63, .06);
        padding: 24px 16px;
    }

    .numbers__item:last-child {
        border-bottom: none;
    }

    .media__row {
        gap: 18px;
    }

    .media__logo svg {
        width: 72px;
        height: 32px;
    }

    .sobre__chip {
        position: relative;
        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        left: auto !important;
        opacity: 1;
        transform: none;
    }

    .sobre__img-stack {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .sobre__quote {
        margin-left: 0;
        margin-right: 0;
    }

    .exec-card {
        padding: 20px;
    }

    .exec-card__icon {
        width: 36px;
        height: 36px;
        font-size: .95rem;
    }

    .traj__line {
        left: 18px;
        transform: none;
    }

    .traj__track {
        gap: 20px;
    }

    .traj__card {
        width: calc(100% - 42px);
        margin-left: 42px !important;
    }

    .traj__card::before {
        left: -33px !important;
        right: auto !important;
        top: 34px;
        width: 16px;
        height: 16px;
    }

    .traj__card::after {
        left: -17px !important;
        right: auto !important;
        top: 42px;
        width: 17px;
    }

    .auth__grid {
        grid-template-columns: 1fr;
    }

    .eco__bento {
        grid-template-columns: 1fr;
    }

    .video__play-btn {
        width: 60px;
        height: 60px;
        font-size: 1.1rem;
    }

    .manifesto__card {
        padding: 28px 24px;
    }

    .contato__form-wrap {
        padding: 28px 24px;
    }

    .footer__top {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer__brand {
        grid-column: auto;
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }

    .btt {
        bottom: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
        font-size: .85rem;
    }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — SMALL PHONES (≤ 480px)
   ══════════════════════════════════════════════════════ */
@media (max-width: 480px) {
    .hero__title {
        font-size: clamp(2rem, 11vw, 2.8rem);
    }

    .hero__img-reveal {
        width: min(240px, 85vw);
    }

    .hero__img {
        height: clamp(280px, 60vw, 380px);
    }

    .section-title {
        font-size: clamp(1.6rem, 7vw, 2.2rem);
    }

    .manifesto__title {
        font-size: clamp(1.5rem, 6.5vw, 2rem);
    }

    .auth__card {
        padding: 28px 20px;
    }

    .sobre__quote p {
        font-size: .85rem;
    }

    .nav__menu {
        width: 100vw;
    }

    .traj__card {
        width: calc(100% - 42px);
        padding: 28px 22px;
    }

    .media__logo svg {
        width: 60px;
        height: 26px;
    }

    .media__logo::after {
        display: none;
    }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — LARGE DESKTOP (≥ 1600px)
   ══════════════════════════════════════════════════════ */
@media (min-width: 1600px) {
    :root {
        --max-w: 1500px;
        --px: 80px;
    }

    .hero__title {
        font-size: 8rem;
    }

    .hero__img-reveal {
        width: 480px;
    }

    .hero__float--2 {
        right: -16%;
    }

    .numbers__val {
        font-size: 4.2rem;
    }

    .section-title {
        font-size: 3.8rem;
    }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — ULTRAWIDE (≥ 2000px)
   ══════════════════════════════════════════════════════ */
@media (min-width: 2000px) {
    :root {
        --max-w: 1700px;
    }

    html {
        font-size: 18px;
    }

    .hero__title {
        font-size: 9rem;
    }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — HEIGHT (short screens)
   ══════════════════════════════════════════════════════ */
@media (max-height: 700px) {
    .hero {
        padding: 100px 0 40px;
    }

    .hero__scroll {
        display: none;
    }

    .loader__logo {
        font-size: clamp(2rem, 6vw, 3.5rem);
    }
}

/* ══════════════════════════════════════════════════════
   MOBILE MENU OVERLAY
   ══════════════════════════════════════════════════════ */
.nav__overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all .4s var(--ease);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

.nav__overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

/* ══════════════════════════════════════════════════════
   NO-JS FALLBACK
   ══════════════════════════════════════════════════════ */
.no-js .reveal,
.no-js .reveal--left,
.no-js .reveal--right,
.no-js .reveal--scale {
    opacity: 1;
    transform: none;
}

.no-js .reveal--clip {
    clip-path: none;
}

.no-js .stagger-children>* {
    opacity: 1;
    transform: none;
}

.no-js .hero__title-word {
    transform: none;
    opacity: 1;
    animation: none;
}

.no-js .hero__sub,
.no-js .hero__actions,
.no-js .hero__float {
    opacity: 1;
    transform: none;
}

.no-js .loader {
    display: none;
}

.no-js .hero__img-reveal {
    clip-path: none;
}

/* ══════════════════════════════════════════════════════
   CONTAINER QUERIES (Progressive Enhancement)
   ══════════════════════════════════════════════════════ */
@supports (container-type: inline-size) {
    .eco__bento {
        container-type: inline-size;
    }

    @container (max-width: 700px) {
        .eco__bento {
            grid-template-columns: 1fr;
        }
    }

    .auth__grid {
        container-type: inline-size;
    }

    @container (max-width: 600px) {
        .auth__grid {
            grid-template-columns: 1fr;
        }
    }
}

/* ══════════════════════════════════════════════════════
   SCROLL-DRIVEN ANIMATIONS (Chrome 115+ / Edge 115+)
   ══════════════════════════════════════════════════════ */
@supports (animation-timeline: scroll()) {
    .scroll-progress {
        animation: scrollProgressFill auto linear;
        animation-timeline: scroll(root);
    }

    @keyframes scrollProgressFill {
        from {
            width: 0%;
        }

        to {
            width: 100%;
        }
    }
}

/* ══════════════════════════════════════════════════════
   MEDIA LOGOS SVG OVERRIDES
   ══════════════════════════════════════════════════════ */
.media__logo svg text {
    font-family: var(--font-sans);
    font-weight: 800;
    fill: currentColor;
}

/* ══════════════════════════════════════════════════════
   TOUCH DEVICE OPTIMIZATIONS
   ══════════════════════════════════════════════════════ */
@media (hover: none) and (pointer: coarse) {
    .pillar::before {
        display: none;
    }

    .eco__shine {
        display: none;
    }

    .media__logo::after {
        display: none;
    }

    .hero__img-reveal:hover .hero__img {
        transform: none;
    }

    .sobre__img-clip:hover .sobre__img {
        transform: none;
    }

    .nav__link {
        padding: 14px 16px;
        min-height: 48px;
    }

    .channel {
        min-height: 60px;
    }

    .btn {
        min-height: 48px;
    }

    .btt {
        width: 52px;
        height: 52px;
    }
}

/* ══════════════════════════════════════════════════════
   SAFE AREA INSETS (notch, dynamic island)
   ══════════════════════════════════════════════════════ */
@supports (padding: env(safe-area-inset-top)) {
    .header {
        padding-top: max(22px, env(safe-area-inset-top));
    }

    .header.is-scrolled {
        padding-top: max(10px, env(safe-area-inset-top));
    }

    .footer__bottom {
        padding-bottom: max(24px, env(safe-area-inset-bottom));
    }

    .btt {
        bottom: max(32px, calc(env(safe-area-inset-bottom) + 12px));
        right: max(32px, env(safe-area-inset-right));
    }
}

/* ══════════════════════════════════════════════════════
   FORCED COLORS (Windows High Contrast)
   ══════════════════════════════════════════════════════ */
@media (forced-colors: active) {
    .btn--primary {
        border: 2px solid ButtonText;
    }

    .hero__img-reveal {
        border: 2px solid CanvasText;
    }

    .nav__link::after {
        background: LinkText;
    }

    .gold,
    .hero__title-word.gold,
    .section-title em {
        color: LinkText;
    }

    .auth__card,
    .eco__item,
    .traj__card,
    .pillar,
    .channel {
        border: 1px solid CanvasText;
    }

    .scroll-progress {
        background: Highlight;
    }

    :focus-visible {
        outline: 3px solid Highlight;
    }
}

/* ══════════════════════════════════════════════════════
   PERFORMANCE HINTS
   ══════════════════════════════════════════════════════ */
.hero__title-word,
.hero__img-reveal,
.hero__float,
.sobre__chip,
.traj__track,
.marquee__track {
    will-change: transform;
}

.hero__title-word.is-done,
.hero__float.is-done,
.sobre__chip.is-done {
    will-change: auto;
}

/* ══════════════════════════════════════════════════════
   SELECTION OVERRIDES PER SECTION
   ══════════════════════════════════════════════════════ */
.hero ::selection,
.auth ::selection,
.video ::selection,
.numbers ::selection,
.media ::selection,
.footer ::selection {
    background: var(--gold);
    color: var(--navy);
}

.sobre ::selection,
.eco ::selection,
.contato ::selection,
.manifesto ::selection,
.traj ::selection {
    background: var(--navy);
    color: var(--off-white);
}

/* ══════════════════════════════════════════════════════
   FIN — LILIAN PRIMO ALBUQUERQUE LP
   CSS completo e unificado.
   ══════════════════════════════════════════════════════ */

   /* ══════════════════════════════════════════════════
   LOGO IMAGE — NAV & FOOTER
   ══════════════════════════════════════════════════ */
.nav__logo-img {
    height: 56px;
    width: auto;
    display: block;
    transition: opacity .3s var(--ease);
}

.nav__logo-img:hover {
    opacity: .85;
}

.header.is-scrolled .nav__logo-img {
    height: 50px;
}

.footer__logo-img {
    height: 44px;
    width: auto;
    display: block;
}
