:root {
    --navy: #08233b;
    --navy-2: #103a59;
    --logo-green: #2d6a4f;
    --logo-gold: #f5a623;
    --logo-gold-dark: #d4891a;
    --green: #b9d96c;
    --green-dark: #83a93b;
    --green-light: #d0ed89;
    --white: #ffffff;
    --off-white: #f8f7f2;
    --gray: #4a5a6a;
    --gray-light: #e0e4e8;
    --border-radius: 10px;
    --shadow: 0 8px 40px rgba(8, 35, 59, 0.10);
    --shadow-hover: 0 16px 60px rgba(8, 35, 59, 0.18);
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--off-white);
    color: var(--navy);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
}

.site-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}


/* ============================================
   HEADER / NAVBAR - FUNDO BRANCO SEM BORDAS
   ============================================ */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 80px;
    background: var(--white);
    backdrop-filter: none;
    border-bottom: none;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    isolation: isolate;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    height: 100%;
    position: relative;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 0;
}


/* ===== LOGOTIPO ===== */

.brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    height: 100%;
    padding-right: 20px;
    transition: var(--ease);
}

.brand-content {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand-mark {
    width: 170px;
    height: 170px;
    object-fit: contain;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: none;
    border-radius: 0;
    padding: 0;
    background: transparent;
    box-shadow: none;
}

.brand-mark:hover {
    transform: scale(1.05);
}

.brand-text {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: 0.12em;
    color: var(--navy);
    position: relative;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.brand-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--logo-gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s var(--ease);
}

.brand:hover .brand-text::after {
    transform: scaleX(1);
    transform-origin: left;
}


/* ===== SCROLL - LOGO REDUZ DE FORMA SUAVE ===== */

.site-header.is-scrolled {
    background: var(--white);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    height: 68px;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.site-header.is-scrolled .brand-mark {
    width: 140px;
    height: 140px;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.site-header.is-scrolled .brand-text {
    font-size: 18px;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}


/* ===== NAVEGAÇÃO ===== */

.main-nav {
    display: flex;
    align-items: center;
    gap: 0;
    flex: 1;
    justify-content: center;
    height: 100%;
    padding: 0 16px;
}

.main-nav a {
    padding: 8px 18px;
    font-size: 12px;
    font-weight: 500;
    color: var(--gray);
    letter-spacing: 0.06em;
    border-radius: var(--border-radius);
    transition: all 0.3s var(--ease);
    position: relative;
    text-transform: uppercase;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 18px;
    right: 18px;
    height: 2px;
    background: var(--logo-gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.35s var(--ease);
}

.main-nav a:hover {
    color: var(--navy);
}

.main-nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.main-nav a.active {
    color: var(--navy);
}

.main-nav a.active::after {
    transform: scaleX(1);
}


/* ===== ACESSO ===== */

.nav-access {
    flex-shrink: 0;
}

.access-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    background: var(--navy);
    border: none;
    border-radius: var(--border-radius);
    color: var(--white);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s var(--ease);
}

.access-link:hover {
    background: var(--logo-gold);
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(245, 166, 35, 0.3);
}

.access-icon {
    font-size: 14px;
}


/* ===== MENU MOBILE — GATILHO (HAMBÚRGUER ANIMADO PARA "X") ===== */

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 2px solid var(--navy);
    border-radius: var(--border-radius);
    cursor: pointer;
    padding: 0;
    gap: 0;
    margin-left: 12px;
    flex-shrink: 0;
    transition: all 0.3s var(--ease);
    position: relative;
}

.menu-toggle:hover {
    border-color: var(--logo-gold);
}

.ham-bar {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: transform 0.35s var(--ease), opacity 0.25s var(--ease), width 0.3s var(--ease);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.ham-bar--top {
    top: 14px;
}

.ham-bar--mid {
    top: 50%;
    transform: translate(-50%, -50%);
}

.ham-bar--bot {
    bottom: 14px;
}

.menu-toggle[aria-expanded="true"] {
    border-color: var(--logo-gold);
}

.menu-toggle[aria-expanded="true"] .ham-bar--top {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .ham-bar--mid {
    opacity: 0;
    width: 0;
}

.menu-toggle[aria-expanded="true"] .ham-bar--bot {
    bottom: 50%;
    transform: translate(-50%, 50%) rotate(-45deg);
}


/* ===== MENU MOBILE — GAVETA LATERAL (DRAWER) ===== */

.mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(360px, 100vw);
    height: 100dvh;
    background: var(--navy);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    box-shadow: -20px 0 60px rgba(8, 35, 59, 0.35);
}

.mobile-drawer.is-open {
    transform: translateX(0);
}

.mobile-drawer__orb {
    position: absolute;
    top: -90px;
    right: -90px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(185, 217, 108, 0.20) 0%, transparent 70%);
    filter: blur(30px);
    pointer-events: none;
}

.mobile-drawer__orb::after {
    content: '';
    position: absolute;
    bottom: -220px;
    left: -120px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.14) 0%, transparent 70%);
    filter: blur(30px);
}


/* ===== BOTÃO FECHAR DO MENU MOBILE ===== */

.mobile-drawer__close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    width: 44px;
    height: 44px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.mobile-drawer__close:hover {
    background: var(--logo-gold);
    border-color: var(--logo-gold);
    color: var(--navy);
    transform: rotate(90deg) scale(1.05);
}

.mobile-drawer__close:focus-visible {
    outline: 2px solid var(--logo-gold);
    outline-offset: 2px;
}

.close-icon {
    display: block;
    line-height: 1;
    font-weight: 300;
    transition: transform 0.3s var(--ease);
}

.mobile-drawer__close:hover .close-icon {
    transform: rotate(90deg);
}

.mobile-drawer__inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 104px 32px 32px;
    position: relative;
    z-index: 1;
}

.mobile-nav__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.mobile-nav__item {
    opacity: 0;
    transform: translateX(24px);
    transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-nav__item:last-child {
    border-bottom: none;
}

.mobile-drawer.is-open .mobile-nav__item:nth-child(1) {
    opacity: 1;
    transform: none;
    transition-delay: 0.08s;
}

.mobile-drawer.is-open .mobile-nav__item:nth-child(2) {
    opacity: 1;
    transform: none;
    transition-delay: 0.14s;
}

.mobile-drawer.is-open .mobile-nav__item:nth-child(3) {
    opacity: 1;
    transform: none;
    transition-delay: 0.20s;
}

.mobile-drawer.is-open .mobile-nav__item:nth-child(4) {
    opacity: 1;
    transform: none;
    transition-delay: 0.26s;
}

.mobile-drawer.is-open .mobile-nav__item:nth-child(5) {
    opacity: 1;
    transform: none;
    transition-delay: 0.32s;
}

.mobile-nav__link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 10px;
    border-radius: var(--border-radius);
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    transition: all 0.25s var(--ease);
    position: relative;
}

.mobile-nav__link::after {
    content: '';
    position: absolute;
    bottom: 12px;
    left: 10px;
    right: 10px;
    height: 2px;
    background: var(--logo-gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.35s var(--ease);
}

.mobile-nav__link:hover::after,
.mobile-nav__link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.mobile-nav__link:hover,
.mobile-nav__link.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.06);
    padding-left: 16px;
}

.mobile-nav__number {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--green);
    width: 22px;
    flex-shrink: 0;
}

.mobile-drawer__footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.4s var(--ease) 0.35s, transform 0.4s var(--ease) 0.35s;
}

.mobile-drawer.is-open .mobile-drawer__footer {
    opacity: 1;
    transform: none;
}

.mobile-drawer__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 24px;
    background: var(--green);
    color: var(--navy);
    border-radius: var(--border-radius);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: all 0.3s var(--ease);
}

.mobile-drawer__cta:hover {
    background: var(--green-light);
    transform: translateY(-2px);
}

.mobile-drawer__contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
}

.mobile-drawer__contact a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.25s var(--ease);
}

.mobile-drawer__contact a:hover {
    color: var(--green);
}

.drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(8, 35, 59, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1900;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease);
}

.drawer-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
}


/* ============================================
   HERO
   ============================================ */

.hero {
    min-height: 100vh;
    position: relative;
    background: var(--navy);
    color: #fff;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-media {
    position: absolute;
    inset: 0;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(8, 35, 59, .98) 8%, rgba(8, 35, 59, .72) 48%, rgba(8, 35, 59, .18) 100%);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    padding-top: 20px;
}

.hero-copy {
    max-width: 620px;
}

.section-kicker {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .2em;
    color: var(--green-dark);
    text-transform: uppercase;
}

.section-kicker span {
    display: inline-block;
    width: 28px;
    height: 2px;
    background: currentColor;
}

.section-kicker.light {
    color: var(--green);
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: clamp(48px, 7vw, 88px);
    line-height: 0.95;
    letter-spacing: -0.03em;
    margin: 24px 0 28px;
}

.hero h1 .accent-text {
    font-weight: 700;
    color: var(--green);
}

.hero-copy p {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7;
    max-width: 500px;
    color: rgba(255, 255, 255, 0.7);
}

.hero-ctas {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 38px;
    flex-wrap: wrap;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    font-size: 12px;
    transition: all 0.3s var(--ease);
    border: 2px solid transparent;
    border-radius: var(--border-radius);
    padding: 14px 24px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.button-accent {
    background: var(--green);
    color: var(--navy);
    border-color: var(--green);
}

.button-accent:hover {
    background: var(--green-light);
    box-shadow: 0 10px 32px rgba(185, 217, 108, 0.3);
    transform: translateY(-3px);
}

.text-link {
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 6px;
    border-bottom: 2px solid currentColor;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.text-link span {
    font-size: 17px;
    line-height: 0;
}

.text-link.light {
    color: #fff;
}

.hero-signal {
    height: 410px;
    position: relative;
    display: grid;
    place-items: center;
}

.orbit {
    position: absolute;
    border: 2px solid rgba(185, 217, 108, .5);
    border-radius: 50%;
    transform: rotate(-25deg);
}

.orbit-one {
    width: 300px;
    height: 168px;
}

.orbit-two {
    width: 420px;
    height: 240px;
    transform: rotate(48deg);
    border-color: rgba(255, 255, 255, .15);
}

.orbit-core {
    width: 118px;
    height: 118px;
    border-radius: 50%;
    background: var(--green);
    color: var(--navy);
    display: grid;
    place-items: center;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 38px;
    letter-spacing: -.06em;
    box-shadow: 0 0 0 18px rgba(185, 217, 108, .08), 0 20px 60px rgba(0, 0, 0, .2);
}

.signal-note {
    position: absolute;
    bottom: 42px;
    right: 15px;
    display: flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
    font-weight: 500;
}

.signal-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
}

.hero-footer {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, .5);
    font-size: 10px;
    letter-spacing: .15em;
    text-transform: uppercase;
    width: min(1200px, calc(100% - 64px));
}

.scroll-prompt {
    display: flex;
    gap: 11px;
    align-items: center;
}

.scroll-prompt span {
    font-size: 18px;
    color: var(--green);
}


/* ============================================
   SECTIONS GERAIS
   ============================================ */

.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header-small {
    text-align: center;
    max-width: 700px;
    margin: 60px auto 40px;
}

.section-header-small h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--navy);
}

.section-header-small h3 .highlight {
    color: var(--green-dark);
    position: relative;
}

.section-header-small h3 .highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--green);
    opacity: 0.3;
}

.section-subtitle {
    font-size: 17px;
    font-weight: 400;
    color: var(--gray);
    margin-top: 12px;
}

.section-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--green-dark);
    border: 1px solid var(--green-dark);
    padding: 4px 16px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.section-tag.light {
    color: var(--green);
    border-color: var(--green);
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: clamp(34px, 4.5vw, 48px);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.section-header h2 .highlight {
    color: var(--green-dark);
    position: relative;
}

.section-header h2 .highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--green);
    opacity: 0.3;
}


/* ============================================
   ANIMAÇÕES DE ENTRADA
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.92);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-on-scroll {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.visible {
    opacity: 1;
}

.fade-up {
    transform: translateY(50px);
}

.fade-up.visible {
    transform: translateY(0);
}

.fade-left {
    transform: translateX(-50px);
}

.fade-left.visible {
    transform: translateX(0);
}

.fade-right {
    transform: translateX(50px);
}

.fade-right.visible {
    transform: translateX(0);
}

.scale-in {
    transform: scale(0.92);
}

.scale-in.visible {
    transform: scale(1);
}

.delay-1 {
    transition-delay: 0.08s;
}

.delay-2 {
    transition-delay: 0.16s;
}

.delay-3 {
    transition-delay: 0.24s;
}

.delay-4 {
    transition-delay: 0.32s;
}

.delay-5 {
    transition-delay: 0.40s;
}


/* ============================================
   SOBRE COM IMAGEM DA EQUIPA
   ============================================ */

.about {
    background: var(--off-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.about-text {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.8;
    color: var(--gray);
}

.about-text strong {
    color: var(--navy);
    font-weight: 600;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 32px;
}

.stat-item {
    background: var(--white);
    padding: 20px 16px;
    border-radius: var(--border-radius);
    border: 1px solid var(--gray-light);
    text-align: center;
    transition: all 0.3s var(--ease);
}

.stat-item:hover {
    transform: translateY(-4px);
    border-color: var(--green);
    box-shadow: var(--shadow);
}

.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 28px;
    color: var(--green-dark);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gray);
}

.about-image {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 2px solid var(--green);
    box-shadow: var(--shadow);
}

.about-image-wrapper img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--ease);
}

.about-image-wrapper:hover img {
    transform: scale(1.03);
}

.about-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 24px 20px;
    background: linear-gradient(to top, rgba(8, 35, 59, 0.9), transparent);
}

.overlay-text {
    display: block;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--white);
    letter-spacing: 0.02em;
}

.overlay-subtext {
    display: block;
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 2px;
}

.about-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: var(--green);
    color: var(--navy);
    padding: 16px 18px;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 8px 24px rgba(185, 217, 108, 0.4);
    animation: pulse-badge 2s ease-in-out infinite;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 72px;
    min-height: 72px;
}

@keyframes pulse-badge {
    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 8px 24px rgba(185, 217, 108, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 36px rgba(185, 217, 108, 0.55);
    }
}

.badge-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 1;
    color: var(--navy);
}

.badge-label {
    display: block;
    font-size: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--navy);
    margin-top: 2px;
}


/* ============================================
   INVESTIR
   ============================================ */

.invest {
    background: var(--white);
}

.invest-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.invest-card {
    background: var(--white);
    border-radius: var(--border-radius);
    border: 1px solid var(--gray-light);
    overflow: hidden;
    transition: all 0.4s var(--ease);
    text-align: center;
}

.invest-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--green);
}

.invest-image {
    height: 160px;
    overflow: hidden;
}

.invest-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}

.invest-card:hover .invest-image img {
    transform: scale(1.06);
}

.invest-icon {
    font-size: 32px;
    margin-top: -16px;
    position: relative;
    display: inline-block;
    background: var(--white);
    padding: 0 12px;
}

.invest-card h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 20px;
    margin: 8px 0 10px;
    color: var(--navy);
}

.invest-card p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--gray);
    padding: 0 20px 24px;
}


/* ============================================
   NÚMEROS (dentro de INVESTIR)
   ============================================ */

.invest-numbers {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 2px solid var(--gray-light);
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.number-card {
    background: var(--off-white);
    padding: 32px 20px;
    border-radius: var(--border-radius);
    border: 1px solid var(--gray-light);
    text-align: center;
    transition: all 0.3s var(--ease);
}

.number-card:hover {
    transform: translateY(-6px);
    border-color: var(--green);
    box-shadow: var(--shadow);
}

.number-value {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 40px;
    color: var(--green-dark);
    margin-bottom: 6px;
}

.number-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}


/* ============================================
   MARCAS
   ============================================ */

.brands {
    background: var(--off-white);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.brand-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid var(--gray-light);
    transition: all 0.4s var(--ease);
}

.brand-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--green);
}

.brand-image {
    position: relative;
    height: 180px;
    overflow: hidden;
    background: var(--off-white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

.brand-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
    transition: transform 0.5s var(--ease);
    max-width: 200px;
    max-height: 140px;
}

.brand-card:hover .brand-image img {
    transform: scale(1.04);
}

.brand-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: var(--green);
    color: var(--navy);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.brand-info {
    padding: 20px 24px 24px;
}

.brand-info h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 2px;
    color: var(--navy);
}

.brand-subtitle {
    font-size: 13px;
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 8px;
}

.brand-info p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--gray);
}


/* ============================================
   CONTACT
   ============================================ */

.contact {
    background: var(--navy-2);
    color: var(--white);
}

.contact .section-header h2 {
    color: var(--white);
}

.contact .section-header h2 .highlight {
    color: var(--green);
}

.contact .section-header h2 .highlight::after {
    background: var(--green);
    opacity: 0.5;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    display: grid;
    gap: 14px;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s var(--ease);
}

.info-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--green);
}

.info-icon {
    font-size: 20px;
    color: var(--green);
    flex-shrink: 0;
}

.info-card strong {
    display: block;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--green);
    margin-bottom: 2px;
}

.info-card a,
.info-card span {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--ease);
}

.info-card a:hover {
    color: var(--green);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 40px 44px;
    border-radius: var(--border-radius);
    border: 2px solid var(--green);
    color: var(--navy);
}

.form-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-light);
    margin-bottom: 28px;
}

.form-number {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 28px;
    color: var(--green-dark);
}

.form-header p {
    font-size: 14px;
    font-weight: 400;
    color: var(--gray);
    margin: 0;
}

.contact-form {
    display: grid;
    gap: 20px;
}

.form-group {
    display: grid;
    gap: 6px;
}

.form-group label {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-light);
    border-radius: var(--border-radius);
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s var(--ease);
    background: var(--white);
    color: var(--navy);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 4px rgba(185, 217, 108, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-light);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 12px;
    font-weight: 600;
    border-radius: var(--border-radius);
    border: 2px solid transparent;
    transition: all 0.3s var(--ease);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.btn-primary {
    background: var(--green);
    color: var(--navy);
    border-color: var(--green);
}

.btn-primary:hover {
    background: var(--green-light);
    border-color: var(--green-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(185, 217, 108, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--navy);
    border-color: var(--gray-light);
}

.btn-outline:hover {
    border-color: var(--green);
    background: var(--green);
    color: var(--navy);
}

.consent {
    display: flex !important;
    align-items: flex-start;
    gap: 10px;
    font-size: 12px;
    font-weight: 400;
    color: var(--gray);
    cursor: pointer;
    max-width: 340px;
}

.consent input {
    width: 18px;
    height: 18px;
    accent-color: var(--green);
    flex-shrink: 0;
    margin-top: 2px;
}

.consent span {
    line-height: 1.4;
}

.form-error {
    color: #d32f2f;
    font-size: 13px;
    padding: 10px 16px;
    background: rgba(211, 47, 47, 0.05);
    border: 1px solid #d32f2f;
    border-radius: var(--border-radius);
}

.success-state {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--green);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.success-state h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-bottom: 12px;
}

.success-state p {
    font-weight: 400;
    color: var(--gray);
    font-size: 16px;
    max-width: 400px;
    margin: 0 auto 24px;
}


/* ============================================
   FOOTER - LOGO COM CANTOS ARREDONDADOS E MAIOR
   ============================================ */

.footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.6);
    padding: 48px 0 24px;
    border-top: 2px solid var(--logo-gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 0.8fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand .brand-mark {
    width: 180px;
    height: 180px;
    margin-bottom: 12px;
    border: none;
    border-radius: 20px;
    padding: 0;
    background: transparent;
    object-fit: contain;
    overflow: hidden;
    transition: all 0.3s var(--ease);
}

.footer-brand .brand-mark:hover {
    transform: scale(1.05);
}

.footer-brand .brand-text {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 16px;
    display: block;
    margin-bottom: 8px;
    color: var(--white);
    letter-spacing: 0.12em;
}

.footer-brand p {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
}

.footer-nav span {
    display: block;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--logo-gold);
    margin-bottom: 12px;
}

.footer-nav a {
    display: block;
    padding: 4px 0;
    font-size: 13px;
    font-weight: 400;
    transition: all 0.3s var(--ease);
}

.footer-nav a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s var(--ease);
}

.footer-social a:hover {
    background: var(--logo-gold);
    border-color: var(--logo-gold);
    color: var(--navy);
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    font-size: 11px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.25);
}


/* ============================================
   MISSÃO, VISÃO E VALORES (dentro de SOBRE)
   ============================================ */

.mvv-container {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 2px solid var(--gray-light);
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.mvv-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mvv-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 36px 28px;
    text-align: center;
    border: 1px solid var(--gray-light);
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}

.mvv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--logo-gold);
    opacity: 0;
    transition: opacity 0.4s var(--ease);
}

.mvv-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--logo-gold);
}

.mvv-card:hover::before {
    opacity: 1;
}

.mvv-icon {
    font-size: 40px;
    margin-bottom: 10px;
    display: block;
}

.mvv-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--logo-gold);
    background: rgba(245, 166, 35, 0.1);
    padding: 4px 16px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.mvv-card h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--navy);
    margin-bottom: 10px;
    line-height: 1.2;
}

.mvv-card p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--gray);
}

.value-keywords {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.value-keywords span {
    display: inline-block;
    padding: 4px 14px;
    background: var(--off-white);
    border: 1px solid var(--gray-light);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 500;
    color: var(--gray);
    transition: all 0.3s var(--ease);
}

.value-keywords span:hover {
    background: var(--logo-gold);
    border-color: var(--logo-gold);
    color: var(--white);
    transform: translateY(-2px);
}


/* Valor card específico - cores diferenciadas */

.mvv-card.value-card:nth-child(1)::before {
    background: #2d6a4f;
}

.mvv-card.value-card:nth-child(2)::before {
    background: #1a5a8a;
}

.mvv-card.value-card:nth-child(3)::before {
    background: #b8860b;
}

.mvv-card.value-card:nth-child(1) .mvv-tag {
    color: #2d6a4f;
    background: rgba(45, 106, 79, 0.1);
}

.mvv-card.value-card:nth-child(2) .mvv-tag {
    color: #1a5a8a;
    background: rgba(26, 90, 138, 0.1);
}

.mvv-card.value-card:nth-child(3) .mvv-tag {
    color: #b8860b;
    background: rgba(184, 134, 11, 0.1);
}


/* ============================================
   RESPONSIVIDADE
   ============================================ */

@media (max-width: 1024px) {
    .invest-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-image-wrapper img {
        height: 320px;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .mvv-grid {
        grid-template-columns: 1fr 1fr;
    }
    .mvv-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .site-container {
        padding: 0 20px;
    }
    .nav-container {
        padding: 0 16px;
    }
    .site-header {
        height: 64px;
        transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    .brand-text {
        font-size: 16px;
        transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    .brand {
        flex-shrink: 1;
        min-width: 0;
        padding-right: 8px;
    }
    .brand-mark {
        width: 56px;
        height: 56px;
        flex-shrink: 0;
        transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    .brand-content {
        gap: 10px;
    }
    .site-header.is-scrolled {
        height: 58px;
        transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    .site-header.is-scrolled .brand-text {
        font-size: 14px;
        transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    .site-header.is-scrolled .brand-mark {
        width: 46px;
        height: 46px;
        transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    .nav-wrapper {
        flex-wrap: nowrap;
    }
    .main-nav {
        display: none;
    }
    .menu-toggle {
        display: flex;
    }
    .nav-access {
        display: none;
    }
    .mobile-drawer__close {
        top: 16px;
        right: 16px;
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    .hero {
        padding-top: 64px;
        min-height: 80vh;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-copy {
        max-width: 100%;
    }
    .hero-copy p {
        margin: 0 auto;
    }
    .hero-ctas {
        justify-content: center;
    }
    .hero-signal {
        height: 200px;
        transform: scale(0.7);
    }
    .hero-footer {
        width: calc(100% - 40px);
        font-size: 8px;
    }
    .scroll-prompt {
        display: none;
    }
    .about-stats {
        grid-template-columns: 1fr 1fr;
    }
    .about-image-wrapper img {
        height: 260px;
    }
    .about-badge {
        top: -10px;
        right: -10px;
        min-width: 60px;
        min-height: 60px;
        padding: 12px 14px;
    }
    .badge-number {
        font-size: 18px;
    }
    .badge-label {
        font-size: 7px;
    }
    .invest-grid {
        grid-template-columns: 1fr 1fr;
    }
    .numbers-grid {
        grid-template-columns: 1fr 1fr;
    }
    .brands-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    .brand-image {
        height: 160px;
    }
    .brand-image img {
        max-height: 120px;
        max-width: 160px;
    }
    .contact-form-wrapper {
        padding: 28px 20px;
    }
    .form-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .consent {
        max-width: 100%;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    .mvv-container {
        margin-top: 50px;
        padding-top: 40px;
    }
    .mvv-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto 30px;
    }
    .mvv-values-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    .mvv-card {
        padding: 28px 20px;
    }
    .mvv-card h3 {
        font-size: 18px;
    }
    .footer-brand .brand-mark {
        width: 160px;
        height: 160px;
        border-radius: 16px;
    }
}

@media (max-width: 480px) {
    .invest-grid {
        grid-template-columns: 1fr;
    }
    .numbers-grid {
        grid-template-columns: 1fr;
    }
    .about-stats {
        grid-template-columns: 1fr 1fr;
    }
    .about-image-wrapper img {
        height: 220px;
    }
    .about-badge {
        top: -8px;
        right: -8px;
        min-width: 50px;
        min-height: 50px;
        padding: 10px 12px;
    }
    .badge-number {
        font-size: 16px;
    }
    .badge-label {
        font-size: 6px;
    }
    .hero h1 {
        font-size: 32px;
    }
    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }
    .section {
        padding: 60px 0;
    }
    .section-header h2 {
        font-size: 28px;
    }
    .brand-text {
        font-size: 13px;
        transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    .brand-mark {
        width: 44px;
        height: 44px;
        transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    .brand-content {
        gap: 10px;
    }
    .site-header.is-scrolled .brand-text {
        font-size: 12px;
        transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    .site-header.is-scrolled .brand-mark {
        width: 38px;
        height: 38px;
        transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    .mobile-drawer__inner {
        padding-top: 92px;
    }
    .mobile-drawer__close {
        top: 14px;
        right: 14px;
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    .brands-grid {
        max-width: 320px;
    }
    .brand-image {
        height: 140px;
    }
    .brand-image img {
        max-height: 100px;
        max-width: 130px;
        padding: 4px;
    }
    .brand-info {
        padding: 16px 18px 20px;
    }
    .brand-info h3 {
        font-size: 18px;
    }
    .footer-brand .brand-mark {
        width: 140px;
        height: 140px;
        border-radius: 12px;
    }
    .mvv-card {
        padding: 24px 16px;
    }
    .mvv-card h3 {
        font-size: 17px;
    }
    .value-keywords {
        gap: 6px;
    }
    .value-keywords span {
        font-size: 10px;
        padding: 3px 12px;
    }
}


/* ============================================
   ANIMAÇÕES INICIAIS
   ============================================ */

@media (prefers-reduced-motion: no-preference) {
    .hero-copy,
    .hero-signal {
        animation: fadeInUp 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
    }
    .hero-signal {
        animation-delay: 0.15s;
    }
}

:focus-visible {
    outline: 2px solid var(--logo-gold);
    outline-offset: 2px;
}