/* ─── HERO ILUSTRATIVAS ───────────────────────── */
.hero-ilustrativas {
    position: absolute;
    bottom: 25px;
    left: 24px;
    z-index: 4;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5)
}

/* ─── PAGE LOADER ────────────────────────────────── */


@keyframes loader-fill {
    0% {
        width: 0%;
    }

    60% {
        width: 75%;
    }

    100% {
        width: 100%;
    }
}


/* ─── TOKENS ──────────────────────────────────── */
:root {
    --brand-bg: #0d0d0d;
    --brand-orange: #f4a000;
    --brand-orange-dim: rgba(244, 160, 0, 0.12);
    --teal: #0F7280;
    --teal-dark: #0A5A66;
    --white: #ffffff;
    --black: #0d0d0d;
    --gray-1: #f5f5f5;
    --gray-2: #e0e0e0;
    --gray-text: #6b6b6b;
    --radius-card: 16px;
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.10);
    --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.22);
    --transition: 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    --season-primary: #9B2D1F;
    --season-cta: #C8410B;
    --season-light: #FEF3DC;
    --season-mid: #E8A020;
    --season-badge: #D4770A;
    --season-label: #7A3010;
    --season-border: #9B2D1F;

    /* Hero geo stroke vars */
    --gs-a: rgba(244, 160, 0, 0.06);
    --gs-b: rgba(244, 160, 0, 0.04);
    --gs-c: rgba(244, 160, 0, 0.20);
    --gs-d: rgba(244, 160, 0, 0.25);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden
}

body {
    font-family: 'Barlow', sans-serif;
    background: var(--white);
    color: var(--black);
    overflow-x: hidden
}

/* ─── Hero apresentação mode ─── */
body[data-mode="apresentacao"] {
    background: var(--gray-1);
    --gs-a: rgba(244, 160, 0, 0.22);
    --gs-b: rgba(244, 160, 0, 0.16);
    --gs-c: rgba(244, 160, 0, 0.50);
    --gs-d: rgba(244, 160, 0, 0.55);
}


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

a {
    text-decoration: none;
    color: inherit
}

button {
    font-family: inherit;
    cursor: pointer
}

/* ─── CONTAINER ───────────────────────────────── */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px
}

/* ─── REVEAL ──────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.6s ease, transform 0.6s ease
}

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

/* ─── REVEAL — escalonado (stagger) ─────────────── */
.reveal-stagger>* {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1)
}

.reveal-stagger.visible>*:nth-child(1) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0s
}

.reveal-stagger.visible>*:nth-child(2) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s
}

.reveal-stagger.visible>*:nth-child(3) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s
}

.reveal-stagger.visible>*:nth-child(4) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s
}

.reveal-stagger.visible>*:nth-child(5) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s
}

/* ─── SOBRE — eyebrow line animada ──────────────── */
.sobre-eyebrow-wrap {
    position: relative;
    display: inline-block
}

.sobre-eyebrow-line {
    position: absolute;
    bottom: -4px;
    left: 0;
    height: 2px;
    width: 0;
    background: var(--brand-orange);
    border-radius: 2px;
    transition: width 0.7s cubic-bezier(0.16, 1, 0.3, 1)
}

.sobre-eyebrow-line.visible {
    width: 100%
}

/* ─── SOBRE — flash laranja nos números ─────────── */
@keyframes number-flash {

    0%,
    100% {
        color: inherit;
        text-shadow: none
    }

    40% {
        color: var(--brand-orange);
        text-shadow: 0 0 12px rgba(244, 160, 0, 0.4)
    }
}

.sobre-para strong.flash {
    animation: number-flash 3s ease-in-out infinite
}

.sobre-para strong.flash:nth-of-type(1) .sobre-para strong.flash:nth-of-type(2) .sobre-para strong.flash:nth-of-type(3) .sobre-para strong.flash:nth-of-type(4)

/* ─── PRE-HEADER ──────────────────────────────── */
.pre-header {
    background: var(--white);
    border-bottom: 1px solid var(--teal-dark);
    padding: 9px 0;
    text-align: center;
    position: relative;
    z-index: 200
}

.pre-header span {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--teal-dark)
}

/* ─── LOGIN BUTTONS ───────────────────────────── */








/* ─── STICKY NAV ──────────────────────────────── */


/* ─── HERO WRAPPER ────────────────────────────── */




.header-row-1 {
    padding: 10px 0
}

.header-row-1 .container {
    display: flex;
    justify-content: flex-end;
    gap: 10px
}

.header-row-2 {
    padding: 14px 0;
    position: relative
}

.header-row-2 .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px
}

.site-header.menu-open .header-row-1,
.site-header.menu-open .header-row-2 {
    background: #ffffff;
    transition: background 0.2s ease
}

.site-header.menu-open .header-nav a,
.site-header.menu-open .site-header.menu-open .site-header.menu-open .site-header.menu-open .site-header.menu-open .site-header.menu-open .header-logo-img {
    filter: none
}

.header-logo-text {
    font-family: 'Anton', sans-serif;
    font-size: 22px;
    letter-spacing: 2px;
    color: var(--white)
}

.header-logo-img {
    height: 85px;
    width: auto;
    display: block;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.95)) drop-shadow(0 0 3px rgba(255, 255, 255, 0.8))
}

.header-logo-text em {
    color: var(--brand-orange);
    font-style: normal
}

.header-nav {
    display: flex;
    gap: 32px;
    list-style: none
}

.header-nav a {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    transition: color var(--transition);
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.7)
}

.header-nav a:hover {
    color: var(--brand-orange)
}

/* ─── HAMBURGER ───────────────────────────────── */














.mobile-nav.open ul li a:hover {
    color: var(--brand-orange);
    background: rgba(244, 160, 0, 0.06)
}










/* ─── SERVICES ────────────────────────────────── */
.services {
    background: var(--brand-bg);
    padding-top: 80px;
    padding-bottom: 80px
}

.service-row {
    display: grid;
    grid-template-columns: minmax(0, 480px) minmax(0, min(calc((100vh - 150px) * 0.75), 640px));
    justify-content: center;
    gap: 60px;
    align-items: center;
    padding: 88px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06)
}

.service-row:last-child {
    border-bottom: none
}

.service-row.reverse {
    direction: rtl
}

.service-row.reverse>* {
    direction: ltr
}

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

.service-num {
    font-family: 'Anton', sans-serif;
    font-size: 110px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.04);
    display: block;
    margin-bottom: -55px;
    letter-spacing: -4px
}

.service-badge {
    display: inline-block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 16px
}

.badge-current {
    background: var(--brand-orange);
    color: var(--black)
}

.badge-upcoming {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6)
}

.service-title {
    font-family: 'Anton', sans-serif;
    font-size: clamp(36px, 4.5vw, 56px);
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 20px
}

.service-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.75;
    margin-bottom: 32px;
    max-width: 440px
}

.service-countdown {
    display: inline-flex;
    align-items: flex-start;
    gap: 6px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 16px 20px
}

.service-countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    min-width: 36px
}

.service-countdown-val {
    font-family: 'Anton', sans-serif;
    font-size: 28px;
    color: var(--brand-orange);
    line-height: 1;
    min-width: 2ch;
    text-align: center;
    display: block
}

.service-countdown-sep {
    font-family: 'Anton', sans-serif;
    font-size: 24px;
    color: rgba(255, 255, 255, 0.25);
    padding-top: 2px
}

.service-countdown-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4)
}

/* ─── BTN VER PRODUTOS ───────────────────────── */
.btn-ver-produtos {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--brand-orange);
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    position: relative;
    margin-bottom: 28px
}

.btn-ver-produtos::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--brand-orange);
    transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1)
}

.btn-ver-produtos:hover::after {
    width: 79%
}

.btn-ver-produtos .btn-arrow {
    display: inline-block;
    opacity: 0.55;
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.32s ease
}

.btn-ver-produtos:hover .btn-arrow {
    transform: translateX(5px);
    opacity: 1
}

/* Service image — portrait desktop, landscape tablet, portrait mobile */
.service-img-col {
    align-self: stretch
}

.service-img-wrap {
    position: relative;
    width: 100%;
    max-width: min(calc((100vh - 150px) * 0.75), 640px);
    margin: 0 auto;
    aspect-ratio: 3/4;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center
}

.service-ilustrativas {
    position: absolute;
    bottom: 14px;
    right: 16px;
    z-index: 2;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    pointer-events: none
}

/* ─── SERVICE CAROUSEL ────────────────────────── */
.svc-carousel {
    position: relative;
    width: 100%;
    max-width: min(calc((100vh - 150px) * 0.75), 640px);
    aspect-ratio: 3/4;
    overflow: hidden
}

.svc-carousel-track {
    display: flex;
    width: 100%;
    height: 100%;
    overflow-x: scroll;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none
}

.svc-carousel-track::-webkit-scrollbar {
    display: none
}

.svc-slide {
    position: relative;
    flex: 0 0 100%;
    height: 100%;
    scroll-snap-align: start
}

.svc-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block
}

.svc-slide-label {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 3;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(0, 0, 0, 0.38);
    padding: 4px 10px;
    border-radius: 4px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px)
}

.svc-prev,
.svc-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(244, 160, 0, 0.65);
    color: #0d0d0d;
    width: 36px;
    height: 36px;
    padding-bottom: 3px;
    border-radius: 50%;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.22s, box-shadow 0.22s, transform 0.22s;
    box-shadow: 0 4px 18px rgba(244, 160, 0, 0.45);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px)
}

.svc-prev {
    left: 10px
}

.svc-next {
    right: 10px
}

.svc-prev span,
.svc-next span {
    color: var(--brand-orange);
    padding-bottom: 3.5px
}

.svc-prev:hover,
.svc-next:hover {
    background: rgba(244, 160, 0, 1);
    box-shadow: 0 6px 28px rgba(244, 160, 0, 0.65);
    transform: translateY(-50%) scale(1.08)
}

.svc-prev:hover span,
.svc-next:hover span {
    color: #000000
}

.svc-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    gap: 6px;
    align-items: center
}

.svc-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, transform 0.2s
}

.svc-dot.active {
    background: var(--brand-orange);
    transform: scale(1.3)
}

/* ─── SVC CAROUSEL — PEEK ────────────────────── */
@keyframes svc-peek {
    0% {
        transform: translateX(0)
    }

    65% {
        transform: translateX(var(--svc-peek-offset, -50%))
    }

    100% {
        transform: translateX(0)
    }
}

.svc-carousel-track.peeking {
    animation: svc-peek 1.1s cubic-bezier(0.4, 0, 0.2, 1) forwards
}

/* ─── SVC CAROUSEL — PULSE ───────────────────── */
@keyframes svc-arrow-pulse {

    0%,
    100% {
        transform: translateY(-50%) scale(1);
        box-shadow: 0 4px 18px rgba(244, 160, 0, 0.45)
    }

    50% {
        transform: translateY(-50%) scale(1.2);
        box-shadow: 0 6px 32px rgba(244, 160, 0, 0.75)
    }
}

.svc-next.pulsing {
    animation: svc-arrow-pulse 2s ease-in-out infinite
}

.service-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center
}

.service-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center
}

.service-img-placeholder span {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.18);
    text-align: center
}


/* ─── NUMBERS STRIP ───────────────────────────── */
.numbers-strip {
    background: var(--white);
    border-top: 4px solid var(--brand-orange);
    border-bottom: 1px solid var(--gray-2);
    padding: 60px 0
}

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

.number-item {
    text-align: center;
    padding: 0 24px;
    border-right: 1px solid var(--gray-2)
}

.number-item:last-child {
    border-right: none
}

.number-value {
    font-family: 'Anton', sans-serif;
    font-size: clamp(44px, 5vw, 68px);
    color: var(--brand-orange);
    line-height: 1;
    display: block
}

.number-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gray-text);
    margin-top: 8px;
    display: block
}

/* ─── SECTION SHARED ──────────────────────────── */
.section-eyebrow {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--brand-orange);
    display: block;
    margin-bottom: 12px
}

.section-title {
    font-family: 'Anton', sans-serif;
    font-size: clamp(32px, 5vw, 52px);
    line-height: 1.05;
    color: var(--black)
}

.section-title em {
    color: var(--brand-orange);
    font-style: normal
}

.title-dark {
    font-family: 'Anton', sans-serif;
    font-size: clamp(32px, 4vw, 48px);
    color: var(--white);
    line-height: 1.05;
    margin-top: 12px
}

.title-dark em {
    color: var(--brand-orange);
    font-style: normal
}

/* ─── PRODUCTS ────────────────────────────────── */
.products {
    padding: 88px 0;
    background: var(--white)
}

.products-header {
    text-align: center;
    margin-bottom: 40px
}

.season-tabs {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px
}

.season-tab {
    padding: 9px 22px;
    border-radius: 100px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 2px solid var(--gray-2);
    background: transparent;
    color: var(--gray-text);
    transition: all var(--transition)
}

.season-tab:hover {
    border-color: var(--season-primary);
    color: var(--season-primary)
}

.season-tab.active {
    background: var(--season-primary);
    color: var(--white);
    border-color: var(--season-primary)
}

.season-panel {
    display: none;
    overflow: visible
}

.season-panel.active {
    display: block;
    overflow: visible
}

.products-row-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gray-text);
    margin-bottom: 16px;
    display: block
}

.cards-row-wrapper {
    position: relative;
    margin-bottom: 32px;
    padding-top: 10px;
    padding-bottom: 10px;
    overflow: visible
}

.cards-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding-top: 6px;
}

.cards-row-wrapper.carousel-mode .cards-row-scroller {
    overflow-x: auto;
    overflow-y: visible;
    -ms-overflow-style: none;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-top: 10px;
    padding-bottom: 48px;
    margin-top: -10px;
    margin-bottom: -48px
}

.cards-row-wrapper.carousel-mode .cards-row-scroller::-webkit-scrollbar {
    display: none
}

.cards-row-wrapper.carousel-mode .cards-row {
    display: flex;
    overflow: visible;
    gap: 20px
}

.cards-row-wrapper.carousel-mode .card {
    min-width: 273px;
    max-width: 273px;
    scroll-snap-align: start
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--gray-2);
    box-shadow: var(--shadow-card);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: all var(--transition)
}

.carousel-arrow:hover {
    background: var(--season-primary);
    border-color: var(--season-primary)
}

.carousel-arrow:hover svg {
    stroke: var(--white)
}

.carousel-arrow svg {
    width: 16px;
    height: 16px;
    stroke: var(--black);
    stroke-width: 2.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round
}

.carousel-arrow-prev {
    left: -22px
}

.carousel-arrow-next {
    right: -22px
}

.carousel-mode .carousel-arrow {
    display: flex
}

/* ─── CARD ────────────────────────────────────── */
.card {
    background: var(--white);
    border-radius: var(--radius-card);
    border: 2px solid var(--gray-2);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    will-change: transform
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--season-border)
}

.card-media {
    position: relative;
    aspect-ratio: 3/4;
    background: var(--season-light);
    overflow: hidden
}

.card-media-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--season-light)
}

.card-media-placeholder span {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    opacity: 1
}

/* ─── CARD MEDIA — IMAGEM DIRETA ────────────────── */
.card-media>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

/* ─── CARD CAROUSEL ─────────────────────────────── */
.card-carousel {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden
}

.card-carousel-track {
    display: flex;
    width: 100%;
    height: 100%;
    overflow-x: scroll;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none
}

.card-carousel-track::-webkit-scrollbar {
    display: none
}

.card-slide {
    position: relative;
    flex: 0 0 100%;
    height: 100%;
    scroll-snap-align: start
}

.card-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.card-prev,
.card-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: rgba(0, 0, 0, 0.42);
    border: none;
    color: #fff;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    font-size: 15px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 2px;
    transition: background var(--transition)
}

.card-prev:hover,
.card-next:hover {
    background: rgba(0, 0, 0, 0.72)
}

.card-prev {
    left: 6px
}

.card-next {
    right: 6px
}

.card-dots {
    position: absolute;
    bottom: 7px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 4px;
    z-index: 3
}

.card-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background var(--transition), transform var(--transition)
}

.card-dot.active {
    background: var(--season-badge);
    transform: scale(1.3)
}

/* ─── CARD REF ──────────────────────────────────── */
.card-ref {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: var(--season-badge);
    color: var(--white);
    font-family: 'Anton', sans-serif;
    font-size: 12.5px;
    letter-spacing: 2px;
    padding: 4px 10px;
    border-radius: 100px;
    z-index: 2
}

/* ─── CARD CTA SECONDARY — PULSE + ICON ─────────── */
@keyframes cta-border-pulse {

    0%,
    100% {
        border-color: var(--gray-2);
        color: var(--gray-text)
    }

    50% {
        border-color: var(--season-mid);
        color: var(--season-mid)
    }
}

.card-cta-secondary {
    animation: cta-border-pulse 3s ease-in-out infinite
}

.card-cta-secondary:hover {
    animation: none;
    border-color: var(--season-mid);
    color: var(--season-mid)
}

.card-cta-secondary svg {
    transition: transform var(--transition)
}

.card-cta-secondary:hover svg {
    transform: scale(1.2)
}

/* ─── SEASON TAB — PULSE + GLOW ─────────────────── */
@keyframes tab-pulse {

    0%,
    100% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.04)
    }
}

.season-tab.unvisited:not(.active) {
    animation: tab-pulse 2.5s ease-in-out infinite
}

.season-tab.active {
    animation: none
}

/* ─── CARD VIDEO BTN — SEM VÍDEO ────────────────── */
.card-video-btn-no-video {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--season-cta);
    color: var(--white);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 11px 16px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    width: 100%;
    opacity: 0.7;
    transition: opacity var(--transition)
}

.card-video-btn-no-video:hover {
    opacity: 0.55
}

.card-video-btn-no-video svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0
}

.no-video-msg {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    letter-spacing: 1px;
    color: var(--gray-text);
    text-align: center;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin-top: 0;
    transition: max-height 0.25s ease, opacity 0.25s ease, margin-top 0.25s ease
}

.no-video-msg.visible {
    max-height: 32px;
    opacity: 1;
    margin-top: 6px
}

.card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--season-badge);
    color: var(--white);
    font-family: 'Anton', sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    padding: 4px 10px;
    border-radius: 100px;
    z-index: 2
}

.card-body {
    padding: 20px 20px 16px;
    flex: 1;
    display: flex;
    flex-direction: column
}

.card-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    line-height: 1.25;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px
}

.card-desc {
    font-size: 13px;
    color: var(--gray-text);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 16px
}

.card-video-btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--season-cta);
    color: var(--white);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 11px 16px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: opacity var(--transition);
    width: 100%
}

.card-video-btn-primary:hover {
    opacity: 0.85
}

.card-video-btn-primary svg {
    width: 15px;
    height: 15px;
    fill: currentColor;
    flex-shrink: 0
}

.card-cta-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    background: transparent;
    color: var(--gray-text);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 8px;
    border: 1.5px solid var(--gray-2);
    cursor: pointer;
    transition: border-color var(--transition), color var(--transition);
    width: 100%;
    margin-top: 8px;
    text-decoration: none
}

.card-cta-secondary:hover {
    border-color: var(--season-mid);
    color: var(--season-mid)
}

.card-cta-secondary svg {
    width: 13px;
    height: 13px;
    fill: currentColor;
    flex-shrink: 0
}

/* ─── COPA — overrides de card ───────────────── */
[data-panel="copa"] .card-badge {
    background: #006828
}

[data-panel="copa"] .card:hover {
    border-color: #FDCB00
}

[data-panel="copa"] .card-video-btn-primary {
    background: #002776
}

[data-panel="copa"] .card-video-btn-primary-secondary:hover {
    border-color: #002776;
    color: #002776
}

/* ─── HALLOWEEN — overrides de card ──────────── */
[data-panel="halloween"] .card-media-placeholder {
    background: var(--black)
}

[data-panel="halloween"] .card:hover {
    border-color: #FF7800
}

[data-panel="halloween"] .card-badge {
    background: #FF7800
}

[data-panel="halloween"] .card-video-btn-primary {
    background: #3D0066
}

[data-panel="halloween"] .card-video-btn-primary-secondary:hover {
    border-color: #6A0080;
    color: #6A0080
}

/* ─── SOBRE ───────────────────────────────────── */
.sobre {
    padding: 100px 0 88px;
    background: var(--gray-1)
}

.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 28px
}

.sobre-text-top {
    grid-column: 1;
    grid-row: 1;
    padding-right: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.sobre-img-right {
    grid-column: 2;
    grid-row: 1;
    border-radius: 20px;
    overflow: hidden
}

.sobre-img-left {
    grid-column: 1;
    grid-row: 2;
    border-radius: 20px;
    overflow: hidden
}

.sobre-para-grid {
    grid-column: 2;
    grid-row: 2;
    display: flex;
    align-items: flex-start;
    padding-top: 10px
}

.sobre-img-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background: var(--gray-2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center
}

.sobre-img-placeholder span {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray-text)
}

/* ─── SOBRE VISUAL (logo animado) ───────────────── */
.sobre-visual {
    min-height: 300px;
    width: 100%;
    aspect-ratio: 16/9;
    background: var(--gray-1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden
}

.sobre-logo-wrap {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center
}

.sobre-logo {
    width: 250px;
    height: 250px;
    object-fit: contain;
    display: block;
    animation: sobre-logo-pulse 3.5s ease-in-out infinite,
        sobre-logo-glow 3s ease-in-out infinite alternate
}

@keyframes sobre-logo-pulse {

    0%,
    100% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.04)
    }
}

@keyframes sobre-logo-glow {
    from {
        filter: drop-shadow(0 0 16px rgba(244, 160, 0, 0.20)) drop-shadow(0 0 6px rgba(244, 160, 0, 0.12))
    }

    to {
        filter: drop-shadow(0 0 52px rgba(244, 160, 0, 0.55)) drop-shadow(0 0 20px rgba(244, 160, 0, 0.35))
    }
}

.sobre-title {
    font-family: 'Anton', sans-serif;
    font-size: clamp(30px, 4vw, 46px);
    color: var(--black);
    line-height: 1.08;
    margin-bottom: 16px;
    margin-top: 12px
}

.sobre-sub {
    font-size: 15px;
    color: var(--gray-text);
    line-height: 1.75
}

.sobre-para {
    font-size: 15px;
    color: var(--gray-text);
    line-height: 1.75
}

/* ─── PILARES ─────────────────────────────────── */
.pilares {
    background: var(--brand-bg);
    padding: 72px 0 88px
}

.pilares .section-header {
    text-align: center
}

.pilares-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 52px
}

.pilar-card {
    text-align: center;
    padding: 36px 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: background var(--transition), border-color var(--transition)
}

.pilar-card:hover {
    background: rgba(244, 160, 0, 0.07);
    border-color: rgba(244, 160, 0, 0.22)
}

.pilar-icon {
    width: 52px;
    height: 52px;
    background: var(--brand-orange-dim);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px
}

.pilar-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--brand-orange);
    stroke-width: 1.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round
}

.pilar-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 12px
}

.pilar-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.48);
    line-height: 1.65
}

/* ─── REDE COMERCIAL ─────────────────────────────── */
.depoimentos {
    padding: 100px 0;
    background: var(--white)
}

.depo-header {
    text-align: center;
    margin-bottom: 56px
}

.depo-carousel-wrapper {
    width: 100%;
    overflow: hidden
}

.depo-track {
    display: flex;
    gap: 20px;
    overflow-x: scroll;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    width: 100%;
    padding-bottom: 4px
}

.depo-track::-webkit-scrollbar {
    display: none
}

.depo-card {
    flex: 0 0 calc(33.333% - 14px);
    scroll-snap-align: start;
    background: var(--gray-1);
    border-radius: 16px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    min-width: 0
}

.depo-card.colored {
    background: var(--brand-orange)
}

.depo-quote {
    font-family: 'Anton', sans-serif;
    font-size: 52px;
    line-height: 0.8;
    color: var(--brand-orange);
    margin-bottom: 20px;
    display: block
}

.depo-card.colored .depo-quote {
    color: rgba(255, 255, 255, 0.35)
}

.depo-text {
    font-size: 14px;
    color: var(--gray-text);
    line-height: 1.75;
    flex: 1;
    margin-bottom: 20px
}

.depo-card.colored .depo-text {
    color: rgba(255, 255, 255, 0.92)
}

.depo-divider {
    border: none;
    border-top: 1px solid var(--gray-2);
    margin-bottom: 20px
}

.depo-card.colored .depo-divider {
    border-color: rgba(255, 255, 255, 0.28)
}

.depo-author {
    display: flex;
    align-items: center;
    gap: 12px
}


.depo-avatar {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    object-fit: contain;
    flex-shrink: 0;
}

/* .depo-card.colored .depo-avatar {
    background: rgba(255, 255, 255, 0.28);
    color: var(--white)
} */

.depo-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--black);
    letter-spacing: 0.3px
}

.depo-card.colored .depo-name {
    color: var(--white)
}

.depo-role {
    font-size: 12px;
    color: var(--gray-text);
    margin-top: 2px
}

.depo-card.colored .depo-role {
    color: rgba(255, 255, 255, 0.78)
}

.depo-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px
}

.depo-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid var(--gray-2);
    cursor: pointer;
    transition: background var(--transition), border-color var(--transition), transform var(--transition)
}

.depo-dot:not(.active).pulsing {
    animation: depo-dot-pulse 1.8s ease-in-out infinite
}

@keyframes depo-dot-pulse {

    0%,
    100% {
        transform: scale(1);
        border-color: var(--gray-2)
    }

    50% {
        transform: scale(1.5);
        border-color: var(--brand-orange)
    }
}

.depo-dot.active {
    background: var(--brand-orange);
    border-color: var(--brand-orange);
    animation: none
}

/* ─── FAQ ─────────────────────────────────────── */
.faq {
    padding: 100px 0;
    background: var(--gray-1)
}

.faq .section-header {
    text-align: center
}

.faq-list {
    margin-top: 52px
}

.faq-item {
    border-bottom: 1px solid var(--gray-2)
}

.faq-item:first-child {
    border-top: 1px solid var(--gray-2)
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    background: transparent;
    border: none;
    text-align: left;
    gap: 24px
}

.faq-question-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    letter-spacing: 0.3px
}

.faq-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--gray-2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background var(--transition)
}

.faq-icon svg {
    width: 14px;
    height: 14px;
    stroke: var(--black);
    stroke-width: 2.5;
    fill: none;
    stroke-linecap: round;
    transition: transform var(--transition)
}

.faq-item.open .faq-icon {
    background: var(--brand-orange)
}

.faq-item.open .faq-icon svg {
    transform: rotate(45deg)
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease
}

.faq-item.open .faq-answer {
    max-height: 200px
}

.faq-answer p {
    font-size: 15px;
    color: var(--gray-text);
    line-height: 1.75;
    padding-bottom: 24px;
    max-width: 700px
}

/* ─── CTA ─────────────────────────────────────── */
.cta {
    background: var(--brand-bg);
    padding: 100px 0;
    position: relative;
    overflow: hidden
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--brand-orange)
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 88px;
    align-items: center
}

.cta-eyebrow {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--brand-orange);
    display: block;
    margin-bottom: 12px
}

.cta-title {
    font-family: 'Anton', sans-serif;
    font-size: clamp(34px, 4.5vw, 56px);
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 20px
}

.cta-title em {
    color: var(--brand-orange);
    font-style: normal
}

.cta-sub {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.75
}

.cta-form {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 36px
}

.form-group {
    margin-bottom: 20px
}

.form-label {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 8px
}

.form-input {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    font-family: 'Barlow', sans-serif;
    font-size: 15px;
    color: var(--white);
    outline: none;
    transition: border-color var(--transition)
}

.form-input:focus {
    border-color: var(--brand-orange)
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.28)
}

.form-submit {
    width: 100%;
    padding: 16px;
    background: #25D366;
    color: var(--white);
    font-family: 'Anton', sans-serif;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: opacity var(--transition), transform var(--transition);
    margin-top: 8px
}

.form-submit:hover {
    opacity: 0.9;
    transform: translateY(-1px)
}

.form-submit svg {
    width: 20px;
    height: 20px;
    fill: var(--white);
    flex-shrink: 0
}

.form-note {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.28);
    text-align: center;
    margin-top: 14px
}

.form-input.error {
    border-color: #e53935
}

.field-error {
    display: block;
    font-size: 11px;
    color: #e53935;
    margin-top: 5px;
    margin-bottom: 8px;
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    min-height: 0
}

.field-error.visible {
    opacity: 1;
    transform: translateY(0)
}

/* ─── MODAL VÍDEO ────────────────────────────────── */
.modal-video {
    position: fixed;
    inset: 0;
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px
}

.modal-video[hidden] {
    display: none
}

.modal-video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 13, 13, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px)
}

.modal-video-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: min(400px, calc(100vw - 32px));
    max-height: calc(100vh - 48px)
}

.modal-video-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: background var(--transition);
    margin-bottom: 10px;
    flex-shrink: 0
}

.modal-video-close:hover {
    background: rgba(255, 255, 255, 0.28)
}

.modal-video-card {
    width: 100%;
    background: var(--white);
    border-radius: 20px;
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
    animation: modal-video-in 0.28s cubic-bezier(0.34, 1.56, 0.64, 1) forwards
}

@keyframes modal-video-in {
    from {
        opacity: 0;
        transform: scale(0.92) translateY(8px)
    }

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

.modal-video-media {
    width: 100%;
    aspect-ratio: 9 / 16;
    background: #000;
    display: block;
    flex-shrink: 0
}

.modal-video-media iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block
}

.modal-video-info {
    padding: 24px 22px 28px;
    background: var(--white)
}

.modal-video-product-name {
    font-family: 'Anton', sans-serif;
    font-size: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--black);
    line-height: 1.1;
    margin-bottom: 10px
}

.modal-video-product-name .modal-ref {
    color: var(--black)
}

.modal-video-product-desc {
    font-size: 13px;
    color: var(--gray-text);
    line-height: 1.65;
    margin-bottom: 20px
}

.modal-video-wa-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #25D366;
    color: var(--white);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 13px 16px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    width: 100%;
    transition: opacity var(--transition)
}

.modal-video-wa-btn:hover {
    opacity: .88
}

.modal-video-wa-btn svg {
    width: 15px;
    height: 15px;
    fill: currentColor;
    flex-shrink: 0
}

/* ─── MODAL WHATSAPP ──────────────────────────── */
.modal-wa {
    position: fixed;
    inset: 0;
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px
}

.modal-wa[hidden] {
    display: none
}

.modal-wa-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px)
}

.modal-wa-card {
    position: relative;
    z-index: 1;
    background: var(--white);
    border-radius: 20px;
    padding: 40px 36px 32px;
    width: 100%;
    max-width: 460px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(244, 160, 0, 0.2);
    animation: modal-in 0.28s cubic-bezier(0.34, 1.56, 0.64, 1) forwards
}

.modal-wa-card .form-label {
    color: var(--gray-text)
}

.modal-wa-card .form-input {
    background: var(--gray-1);
    border: 1.5px solid var(--gray-2);
    color: var(--black)
}

.modal-wa-card .form-input::placeholder {
    color: #b0b0b0
}

.modal-wa-card .form-input:focus {
    border-color: var(--brand-orange);
    background: var(--white)
}

@keyframes modal-in {
    from {
        opacity: 0;
        transform: scale(0.92) translateY(12px)
    }

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

.modal-wa-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.06);
    color: #666;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition), color var(--transition)
}

.modal-wa-close:hover {
    background: rgba(0, 0, 0, 0.12);
    color: var(--black)
}

.modal-wa-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px
}

.modal-wa-icon {
    width: 40px;
    height: 40px;
    fill: #25D366;
    flex-shrink: 0
}

.modal-wa-title {
    font-family: 'Anton', sans-serif;
    font-size: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--black);
    line-height: 1.1
}

.modal-wa-sub {
    font-size: 13px;
    color: var(--gray-text);
    margin-top: 4px
}

.modal-form-group {
    margin-bottom: 18px
}

.modal-form-label {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray-text);
    margin-bottom: 7px
}

.modal-form-input {
    width: 100%;
    padding: 13px 16px;
    background: var(--gray-1);
    border: 1.5px solid var(--gray-2);
    border-radius: 10px;
    font-family: 'Barlow', sans-serif;
    font-size: 15px;
    color: var(--black);
    outline: none;
    transition: border-color var(--transition), background var(--transition)
}

.modal-form-input:focus {
    border-color: var(--brand-orange);
    background: var(--white)
}

.modal-form-input::placeholder {
    color: #b0b0b0
}

.modal-form-submit {
    width: 100%;
    padding: 15px;
    background: #25D366;
    color: var(--white);
    font-family: 'Anton', sans-serif;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: opacity var(--transition), transform var(--transition);
    margin-top: 8px
}

.modal-form-submit:hover {
    opacity: 0.9;
    transform: translateY(-1px)
}

.modal-form-submit svg {
    width: 18px;
    height: 18px;
    fill: var(--white);
    flex-shrink: 0
}

.modal-form-note {
    font-size: 11px;
    color: #b0b0b0;
    text-align: center;
    margin-top: 12px
}

/* ─── MODAL POLÍTICA DE PRIVACIDADE ─────────────── */
.modal-privacy {
    position: fixed;
    inset: 0;
    z-index: 9200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px
}

.modal-privacy[hidden] {
    display: none
}

.modal-privacy-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 13, 13, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px)
}

.modal-privacy-card {
    position: relative;
    z-index: 1;
    background: var(--white);
    border-radius: 20px;
    width: 100%;
    max-width: 640px;
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
    animation: modal-in 0.28s cubic-bezier(0.34, 1.56, 0.64, 1) forwards
}

.modal-privacy-close {
    position: sticky;
    top: 16px;
    float: right;
    margin: 16px 16px 0 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.07);
    color: #666;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
    z-index: 2
}

.modal-privacy-close:hover {
    background: rgba(0, 0, 0, 0.14)
}

.modal-privacy-content {
    padding: 16px 36px 40px;
    clear: both
}

.modal-privacy-title {
    font-family: 'Anton', sans-serif;
    font-size: 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 6px
}

.modal-privacy-updated {
    font-size: 12px;
    color: var(--gray-text);
    margin-bottom: 28px
}

.modal-privacy-content h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--brand-orange);
    margin: 24px 0 8px
}

.modal-privacy-content p {
    font-size: 14px;
    color: var(--gray-text);
    line-height: 1.7;
    margin-bottom: 8px
}

.footer-email-note {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 6px;
    min-height: 16px
}

/* ─── FOOTER ──────────────────────────────────── */
.footer {
    background: #111111;
    padding: 56px 0 0
}

.footer-top {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 48px;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07)
}

.footer-logo {
    font-family: 'Anton', sans-serif;
    font-size: 24px;
    letter-spacing: 2px;
    color: var(--white);
    display: block;
    margin-bottom: 4px
}

.footer-logo em {
    color: var(--brand-orange);
    font-style: normal
}

.footer-tagline {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35)
}

.footer-nav {
    display: flex;
    gap: 32px;
    list-style: none;
    justify-content: center;
    flex-wrap: wrap
}

.footer-nav a {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    transition: color var(--transition)
}

.footer-nav a:hover {
    color: var(--white)
}

.footer-socials {
    display: flex;
    gap: 10px
}

.footer-social {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition)
}

.footer-social:hover {
    border-color: var(--brand-orange);
    background: var(--brand-orange-dim)
}

.footer-social svg {
    width: 18px;
    height: 18px;
    fill: rgba(255, 255, 255, 0.55)
}

.footer-social:hover svg {
    fill: var(--brand-orange)
}

.footer-mid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07)
}

.footer-contact-badge {
    display: inline-block;
    background: var(--brand-orange);
    color: var(--black);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 100px;
    margin-bottom: 20px
}

.footer-contact-item {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 2.1
}

.footer-contact-item strong {
    color: rgba(255, 255, 255, 0.75)
}

.footer-newsletter-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 16px
}

.footer-email-row {
    display: flex;
    border-radius: 100px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14)
}

.footer-email-input {
    flex: 1;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    color: var(--white);
    outline: none;
    min-width: 0
}

.footer-email-input::placeholder {
    color: rgba(255, 255, 255, 0.28)
}

.footer-email-btn {
    padding: 14px 24px;
    background: var(--brand-orange);
    color: var(--black);
    font-family: 'Anton', sans-serif;
    font-size: 12px;
    letter-spacing: 1.5px;
    border: none;
    white-space: nowrap;
    transition: opacity var(--transition)
}

.footer-email-btn:hover {
    opacity: 0.85
}

.footer-bottom {
    padding: 20px 0
}

.footer-bottom .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap
}

.footer-copy {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.22)
}

.footer-copy a {
    color: rgba(255, 255, 255, 0.38);
    transition: color var(--transition)
}

.footer-copy a:hover {
    color: var(--white)
}

/* ─── FABs ────────────────────────────────────── */
.fab-group {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.fab {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative
}

.fab:hover {
    transform: scale(1.1)
}

.fab svg {
    width: 26px;
    height: 26px;
    fill: var(--white)
}

.fab-instagram {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    box-shadow: 0 4px 20px rgba(220, 39, 67, 0.4)
}

.fab-whatsapp {
    background: #25D366;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45)
}

.fab-whatsapp::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.4);
    animation: pulse-ring 2s ease-out infinite
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.8
    }

    100% {
        transform: scale(1.5);
        opacity: 0
    }
}

/* ─── STICKY NAV ──────────────────────────────── */
.sticky-nav {
    position: fixed;
    padding: 0 110px;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 2px solid var(--brand-orange);
    transform: translateY(-100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1)
}

.sticky-nav.visible {
    transform: translateY(0)
}

.sticky-nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
    max-width: 100%;
    padding: 0;
    gap: 24px;
    position: relative
}

.sticky-logo {
    font-family: 'Anton', sans-serif;
    font-size: 20px;
    letter-spacing: 2px;
    color: var(--white);
    flex-shrink: 0
}

.sticky-logo em {
    color: var(--brand-orange);
    font-style: normal
}

.sticky-logo img {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 0 14px rgba(255, 255, 255, 0.82)) drop-shadow(0 0 4px rgba(255, 255, 255, 0.6));
}

.sticky-links {
    display: flex;
    gap: 28px;
    list-style: none
}

.sticky-links a {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(13, 13, 13, 0.7);
    transition: color var(--transition)
}

.sticky-links a:hover {
    color: var(--brand-orange)
}

.sticky-nav .btn-login {
    color: rgba(13, 13, 13, 0.75);
    border-color: rgba(13, 13, 13, 0.25)
}

.sticky-nav .btn-login:hover {
    border-color: var(--brand-orange);
    color: var(--brand-orange)
}

.sticky-logins {
    display: flex;
    gap: 8px;
    flex-shrink: 0
}

.sticky-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    padding: 6px;
    cursor: pointer;
    flex-shrink: 0
}

.sticky-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--black);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease
}

.sticky-hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg)
}

.sticky-hamburger.open span:nth-child(2) {
    opacity: 0
}

.sticky-hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg)
}

.sticky-mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(244, 160, 0, 0.15);
    border-bottom: 2px solid var(--brand-orange);
    z-index: 150;
    padding: 8px 0
}

.sticky-mobile-nav.open {
    display: block
}

.sticky-mobile-nav ul {
    list-style: none;
    padding: 0
}



.sticky-mobile-nav ul li a {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(13, 13, 13, 0.8);
    padding: 14px 24px;
    transition: color var(--transition), background var(--transition)
}

.sticky-mobile-nav ul li a:hover {
    color: var(--brand-orange);
    background: rgba(244, 160, 0, 0.06)
}

.sticky-mobile-logins {
    display: flex;
    gap: 10px;
    padding: 14px 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    flex-wrap: wrap
}

/* ─── HERO WRAPPER ────────────────────────────── */
.hero-wrapper {
    position: relative
}

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100
}

.header-row-1 {
    padding: 10px 0
}

.header-row-1 .container {
    display: flex;
    justify-content: flex-end;
    gap: 10px
}

.header-row-2 {
    padding: 14px 0;
    /* border-bottom: 1px solid rgba(244, 160, 0, 0.18); */
    position: relative
}

.header-row-2 .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px
}

.site-header.menu-open .header-row-1,
.site-header.menu-open .header-row-2 {
    background: #ffffff;
    transition: background 0.2s ease
}

.site-header.menu-open .header-nav a,
.site-header.menu-open .mobile-nav ul li a {
    color: rgba(13, 13, 13, 0.8);
}

.site-header.menu-open .btn-login {
    color: rgba(13, 13, 13, 0.75);
    border-color: rgba(13, 13, 13, 0.25)
}

.site-header.menu-open .btn-login:hover {
    border-color: var(--teal);
    color: var(--teal)
}

.site-header.menu-open .btn-login-primary {
    background: var(--teal);
    color: var(--gray-1) !important;
    border-color: transparent !important
}

.site-header.menu-open .hamburger span {
    background: var(--black)
}

.site-header.menu-open .header-logo-img {
    filter: none
}

.header-logo-text {
    font-family: 'Anton', sans-serif;
    font-size: 22px;
    letter-spacing: 2px;
    color: var(--white)
}

.header-logo-img {
    height: 85px;
    width: auto;
    display: block;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.95)) drop-shadow(0 0 3px rgba(255, 255, 255, 0.8))
}

.header-logo-text em {
    color: var(--brand-orange);
    font-style: normal
}

.header-nav {
    display: flex;
    gap: 32px;
    list-style: none
}

.header-nav a {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    transition: color var(--transition);
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.7)
}

.header-nav a:hover {
    color: var(--brand-orange)
}

/* ─── RESPONSIVE ──────────────────────────────── */
@media(max-width:910px) {

    .service-row,
    .service-row.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 32px;
        padding: 60px 0
    }

    .service-img-col {
        align-self: auto
    }

    .service-img-wrap {
        height: auto;
        min-height: auto;
        margin: 0;
        aspect-ratio: 3/4;
        max-width: 420px;
    }

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

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

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

@media(max-width:768px) {
    .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px
    }

    .number-item {
        border-right: none;
        padding-bottom: 24px
    }

    .footer-mid {
        grid-template-columns: 1fr
    }

    .depo-card {
        min-width: calc(50% - 10px)
    }
}

@media(max-width:950px) {
    .sobre-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto
    }

    .sobre-text-top {
        grid-column: 1;
        grid-row: 1;
        padding-right: 0;
        order: 1
    }

    .sobre-img-left {
        grid-column: 1;
        grid-row: auto;
        order: 2
    }

    .sobre-para-grid {
        grid-column: 1;
        grid-row: auto;
        order: 3
    }

    .sobre-img-right {
        grid-column: 1;
        grid-row: auto;
        order: 4
    }

    .sobre-logo {
        width: 240px;
        height: 240px
    }
}

@media(max-width:550px) {
    .header-row-1 {
        display: none
    }

    .service-ilustrativas {
        top: 14px;
    }

    .service-img-wrap {
        aspect-ratio: 3/4;
        min-height: 280px
    }

    .pilares-grid {
        grid-template-columns: 1fr
    }

    .cards-row {
        grid-template-columns: repeat(2, 1fr)
    }

    .depo-card {
        min-width: 100%
    }

    .cta-form {
        padding: 24px
    }
}

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

body[data-mode="apresentacao"] {
    background: var(--gray-1);
    --gs-a: rgba(244, 160, 0, 0.22);
    --gs-b: rgba(244, 160, 0, 0.16);
    --gs-c: rgba(244, 160, 0, 0.50);
    --gs-d: rgba(244, 160, 0, 0.55);
}

/* ─── HERO ───────────────────────────────── */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100svh;
    /* iOS Safari: exclui barra de endereço */
    min-height: 100svh;
    /* garante que nunca ultrapasse a viewport */
    display: flex;
    flex-direction: column;
    background-color: var(--brand-bg);
    transition: background-color 600ms ease;
}

/* Clip layer: clipa canvas e geo sem clipar o mobile-nav */
.hero-bg-clip {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

body[data-mode="apresentacao"] .hero {
    background-color: var(--gray-1);
    background-image:
        radial-gradient(ellipse 55% 65% at 100% 55%, rgba(244, 160, 0, 0.11) 0%, transparent 68%),
        radial-gradient(ellipse 38% 45% at 8% 82%, rgba(244, 160, 0, 0.08) 0%, transparent 60%);
}

/* ─── CANVAS z1 (inside hero-bg-clip) ───── */
#confetti-canvas {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

/* ─── GEO LAYER z2 ───────────────────────── */
.geo-layer {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.geo-ring-1 {
    position: absolute;
    width: 680px;
    height: 680px;
    top: 50%;
    left: -160px;
    margin-top: -340px;
    border-radius: 50%;
    border: 1px solid rgba(244, 160, 0, 0.09);
    animation: spin-cw 60s linear infinite;
    transition: border-color 600ms ease;
}

.geo-ring-2 {
    position: absolute;
    width: 460px;
    height: 460px;
    top: 50%;
    left: -60px;
    margin-top: -230px;
    border-radius: 50%;
    border: 1px dashed rgba(244, 160, 0, 0.12);
    animation: spin-ccw 38s linear infinite;
    transition: border-color 600ms ease;
}

.geo-ring-3 {
    position: absolute;
    width: 220px;
    height: 220px;
    top: -60px;
    right: 180px;
    border-radius: 50%;
    border: 1.5px solid rgba(244, 160, 0, 0.14);
    animation: spin-cw 28s linear infinite;
    transition: border-color 600ms ease;
}

.geo-ring-4 {
    position: absolute;
    width: 80px;
    height: 80px;
    top: 38%;
    right: 120px;
    border-radius: 50%;
    border: 1.5px solid rgba(244, 160, 0, 0.30);
    animation: spin-ccw 18s linear infinite;
    transition: border-color 600ms ease;
}

.geo-ring-5 {
    position: absolute;
    width: 520px;
    height: 520px;
    bottom: -180px;
    right: -120px;
    border-radius: 50%;
    border: 1px solid rgba(244, 160, 0, 0.07);
    animation: spin-cw 75s linear infinite;
    transition: border-color 600ms ease;
}

/* Boost rings on light bg */
body[data-mode="apresentacao"] .geo-ring-1 {
    border-color: rgba(244, 160, 0, 0.26);
}

body[data-mode="apresentacao"] .geo-ring-2 {
    border-color: rgba(244, 160, 0, 0.30);
}

body[data-mode="apresentacao"] .geo-ring-3 {
    border-color: rgba(244, 160, 0, 0.34);
}

body[data-mode="apresentacao"] .geo-ring-4 {
    border-color: rgba(244, 160, 0, 0.65);
}

body[data-mode="apresentacao"] .geo-ring-5 {
    border-color: rgba(244, 160, 0, 0.20);
}

.geo-sq-1 {
    position: absolute;
    width: 28px;
    height: 28px;
    top: 22%;
    right: 28%;
    border: 1px solid rgba(244, 160, 0, 0.18);
    animation: spin-cw 20s linear infinite, geo-drift-1 12s ease-in-out infinite alternate;
    transition: border-color 600ms ease;
}

.geo-sq-2 {
    position: absolute;
    width: 14px;
    height: 14px;
    bottom: 28%;
    left: 42%;
    border: 1px solid rgba(244, 160, 0, 0.25);
    animation: spin-ccw 14s linear infinite, geo-drift-2 9s ease-in-out infinite alternate;
    transition: border-color 600ms ease;
}

.geo-sq-3 {
    position: absolute;
    width: 8px;
    height: 8px;
    top: 55%;
    right: 32%;
    background: rgba(244, 160, 0, 0.22);
    animation: spin-cw 10s linear infinite, geo-drift-3 7s ease-in-out infinite alternate;
    transition: background 600ms ease;
}

body[data-mode="apresentacao"] .geo-sq-1 {
    border-color: rgba(244, 160, 0, 0.48);
}

body[data-mode="apresentacao"] .geo-sq-2 {
    border-color: rgba(244, 160, 0, 0.58);
}

body[data-mode="apresentacao"] .geo-sq-3 {
    background: rgba(244, 160, 0, 0.52);
}

.geo-dot {
    position: absolute;
    border-radius: 50%;
    background: var(--brand-orange);
}

.geo-dot-1 {
    width: 5px;
    height: 5px;
    top: 30%;
    right: 22%;
    animation: pulse-dot 4s ease-in-out infinite;
}

.geo-dot-2 {
    width: 3px;
    height: 3px;
    bottom: 35%;
    left: 38%;
    animation: pulse-dot 6s ease-in-out infinite 2s;
}

.geo-dot-3 {
    width: 4px;
    height: 4px;
    top: 65%;
    right: 40%;
    animation: pulse-dot 5s ease-in-out infinite 1s;
}

.geo-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}



/* ─── PAGE LOADER ────────────────────────── */
#page-loader {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 700ms cubic-bezier(0.76, 0, 0.24, 1);
}

#page-loader.slide-out {
    transform: translateY(-100%);
}

/* Textura real — Cloudinary */
#page-loader::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.45;
    background-image: url("https://res.cloudinary.com/dzt1kqdbc/image/upload/v1778845920/PAGE-LOADER_y3yro6.webp");
    background-size: 300px;
    background-repeat: repeat;
    pointer-events: none;
}

/* Column: logo on top, ring below */
.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    position: relative;
    z-index: 1;
}

/* Logo — starts at bottom of viewport, rises via JS class */
.loader-logo {
    width: 140px;
    height: auto;
    display: block;
    opacity: 0;
    transform: translateY(65vh);
}

.loader-logo.animating {
    animation: logo-rise 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes logo-rise {
    from {
        transform: translateY(65vh);
        opacity: 0;
    }

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

/* Ring container */
.loader-ring-wrap {
    width: 52px;
    height: 52px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.loader-ring-wrap.animating {
    opacity: 1;
}

.loader-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.loader-track {
    fill: none;
    stroke: rgba(244, 160, 0, 0.15);
    stroke-width: 2;
}

.loader-ring {
    fill: none;
    stroke: #f4a000;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-dasharray: 138.23;
    stroke-dashoffset: 138.23;
}

.loader-ring.animating {
    animation: draw-ring 1.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes draw-ring {
    from {
        stroke-dashoffset: 138.23;
    }

    to {
        stroke-dashoffset: 0;
    }
}

/* ─── HEADER CONTAINER — dois níveis ────────
           > 1420px: padding 110px (header mais largo que layout)
           ≤ 1420px: max-width 1200px + 24px (iguala ao layout)
        ── */
.header-container {
    width: 100%;
    padding: 0 110px;
    display: flex;
    align-items: center;
}

@media (max-width: 1420px) {
    .header-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 24px;
    }

    .sticky-nav {
        padding: 0;
    }

    .sticky-nav .container {
        max-width: 1200px;
        padding: 0 24px;
        margin: 0 auto;
    }
}

/* ─── HERO SITE-HEADER ───────────────────── */
.site-header {
    position: relative;
    z-index: 1000;
    width: 100%;
    /* Respiro entre borda superior da página e o header */
    /* padding-top: clamp(12px, 2vh, 24px); */
}

/* Nav elements — initially hidden, JS reveals */
.site-header .header-row-1,
.site-header .header-nav li {
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header .header-row-1.el-visible,
.site-header .header-nav li.el-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Logo link — initially hidden */
.nav-logo {
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Row 1 — login buttons */
.header-row-1 {
    padding: 10px 0;
}



.header-row-1 .header-container {
    justify-content: flex-end;
    gap: 10px;
}

/* Row 2 — logo + nav */
.header-row-2 {
    padding: 14px 0;
    position: relative;
}

.header-row-2 .header-container {
    justify-content: space-between;
    gap: 24px;
}

/* Menu open: rows turn white */

.site-header.menu-open .header-row-1,
.site-header.menu-open .header-row-2 {
    background: #ffffff;
    transition: background 0.2s ease;
}

.site-header.menu-open .header-nav a,
.site-header.menu-open .mobile-nav ul li a {
    color: rgba(13, 13, 13, 0.8);
}

.site-header.menu-open .btn-login {
    color: rgba(13, 13, 13, 0.75);
    border-color: rgba(13, 13, 13, 0.25);
}

.site-header.menu-open .btn-login:hover {
    border-color: var(--brand-orange);
    color: var(--brand-orange);
}

.site-header.menu-open .btn-login-primary {
    background: var(--brand-orange);
    color: #f5f5f5 !important;
    border-color: transparent !important;
}

.site-header.menu-open .hamburger span {
    background: var(--brand-bg);
}

.site-header.menu-open .header-logo-img {
    filter: none;
}

.nav-logo {
    font-family: 'Anton', sans-serif;
    font-size: 22px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.82);
    white-space: nowrap;
    flex-shrink: 0;
    transition: color 600ms ease, opacity 0.55s ease, transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateY(-10px);
}

.nav-logo.el-visible {
    opacity: 1;
    transform: translateY(0);
}

body[data-mode="apresentacao"] .nav-logo {
    color: var(--brand-bg);
}

/* Logo swap: text visible by default, image hidden */
.nav-logo-text {
    display: block;
}

.nav-logo em {
    color: var(--brand-orange);
    font-style: normal
}

.nav-logo-img {
    display: none;
    height: 80px;
    width: auto;
}

/* When hamburger is open, swap text → image */
.site-header.menu-open .nav-logo-text {
    display: none;
}

.site-header.menu-open .nav-logo-img {
    display: block;
}

/* height-menu-open: mesmo swap de logo */
.site-header.height-menu-open .nav-logo-text {
    display: none;
}

.site-header.height-menu-open .nav-logo-img {
    display: block;
}

/* Fix 5: hamburger dark in apresentação */
body[data-mode="apresentacao"] .hamburger span {
    background: var(--brand-bg);
}


/* ─── HEADER NAV ─────────────────────────── */
.header-nav {
    display: flex;
    gap: 32px;
    list-style: none;
}

.header-nav a {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.7);
    transition: color 0.32s ease;
}

.header-nav a:hover {
    color: var(--brand-orange);
}

/* Apresentação mode: nav links adapt to light bg */
body[data-mode="apresentacao"] .header-nav a {
    color: rgba(13, 13, 13, 0.70);
    text-shadow: none;
}

body[data-mode="apresentacao"] .header-nav a:hover {
    color: var(--brand-orange);
}

body[data-mode="apresentacao"] .header-logo-img {
    filter: none;
}

body[data-mode="apresentacao"] .site-header:not(.menu-open) .btn-login {
    color: rgba(13, 13, 13, 0.75);
    border-color: rgba(13, 13, 13, 0.25);
}

body[data-mode="apresentacao"] .site-header:not(.menu-open) .btn-login:hover {
    border-color: var(--brand-orange);
    color: var(--brand-orange);
}

/* ─── LOGIN BUTTONS ──────────────────────── */
.btn-login {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    padding: 9px 22px;
    border-radius: 100px;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    white-space: nowrap;
    display: inline-block;
    text-decoration: none;
    transition: border-color 0.32s ease, color 0.32s ease;
}

.btn-login:hover {
    border-color: var(--brand-orange);
    color: var(--brand-orange);
}

.btn-login-primary {
    background: var(--brand-orange);
    color: #f5f5f5 !important;
    border-color: transparent !important;
    /* transition: 0.3s; */
    cursor: auto;
    opacity: 0.7;
}

.btn-login-primary:hover {
    /* opacity: 0.83; */
}

/* ─── HAMBURGER ──────────────────────────── */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    padding: 6px;
    cursor: pointer;
    z-index: 200;
    flex-shrink: 0;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

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

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

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

/* ─── MOBILE NAV ─────────────────────────── */
.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 2px solid var(--brand-orange);
    z-index: 500;
    padding: 8px 0;
}

.mobile-nav.open {
    display: block;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
}

.mobile-nav ul li a {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(13, 13, 13, 0.8);
    padding: 14px 24px;
    text-decoration: none;
    transition: color 0.32s ease, background 0.32s ease;
}

.mobile-nav ul li a:hover {
    color: var(--brand-orange);
    background: rgba(244, 160, 0, 0.06);
}

.mobile-logins {
    display: none;
    gap: 10px;
    padding: 14px 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    flex-wrap: wrap;
}

.mobile-logins .btn-login {
    white-space: normal;
    text-align: center;
    font-size: 11px;
    color: rgba(13, 13, 13, 0.75);
    border-color: rgba(13, 13, 13, 0.25);
}

/* ─── HERO MAIN ──────────────────────────── */
.hero-main {
    position: relative;
    z-index: 10;
    flex: 1;
    display: flex;
    flex-direction: column;
    /* Espaço entre conteúdo e toggle-wrap:
               proporcional à altura disponível, sem gerar vazio excessivo.
               640px → ~22px  |  900px → ~36px  |  1080px → ~43px */
    padding-bottom: clamp(16px, 4vh, 48px);
}

/* ─── PANELS ─────────────────────────────── */
.hero-panels {
    flex: 1;
    position: relative;
    overflow: hidden;
}

/* ─── GEO PARALLAX WRAPPERS ─────────────────
           Each wrapper fills the geo-layer.
           JS translates the wrapper; CSS animates the child.
        ── */
.geo-px {
    position: absolute;
    inset: 0;
    pointer-events: none;
    will-change: transform;
}

/* ─── PAGE TURN CANVAS — removed ───────────── */

/* ─── PANELS — Flip 3D ───────────────────── */
.hero-panels {
    flex: 1;
    position: relative;
    overflow: hidden;
    perspective: 1400px;
}

/* Flip card — the rotating element */
.flip-card {
    position: absolute;
    inset: 0;
    transform-style: preserve-3d;
    transition: transform 720ms cubic-bezier(0.76, 0, 0.24, 1);
}

.flip-card.flipped {
    transform: rotateY(180deg);
}

/* Both faces fill the card */
.hero-panel {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 clamp(20px, 7.5vw, 110px);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

#panel-inicio {
    transform: rotateY(0deg);
}

#panel-apresentacao {
    transform: rotateY(180deg);
}

/* Apresentação text fades in after flip */
.apres-content {
    opacity: 0;
    transition: opacity 350ms ease;
}

.flip-card.flipped .apres-content {
    opacity: 1;
    transition-delay: 380ms;
}

/* ─── INÍCIO CONTENT ─────────────────────── */
.inicio-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(24px, 4vw, 60px);
    width: 100%;
}

/* ── Logo A+C ── */
/* Outer: float physics (C), triggered by JS */
.hero-logo-outer {
    flex-shrink: 0;
}

.hero-logo-outer.logo-floating {
    animation: float-physics 4.5s ease-in-out infinite;
}

@keyframes float-physics {
    0% {
        transform: translateY(0px);
    }

    30% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Inner img: scale+blur entry (A), triggered by JS */
.hero-logo {
    width: clamp(160px, 22vw, 300px);
    height: auto;
    display: block;
    opacity: 0;
    filter: drop-shadow(0 0 0 rgba(244, 160, 0, 0));
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    /* fallback: se JS não disparar a animação, logo aparece após 4s */
    transition: opacity 0.6s ease 4s;
}

/* Quando JS dispara, o transition do fallback é sobrescrito pela animation */
.hero-logo.logo-entering {
    transition: none;
}

.hero-logo.logo-entering {
    animation: hero-logo-enter 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes hero-logo-enter {
    from {
        opacity: 0;
        transform: scale(0.82);
        filter: drop-shadow(0 0 0 rgba(244, 160, 0, 0));
    }

    to {
        opacity: 1;
        transform: scale(1);
        filter: drop-shadow(0 0 52px rgba(244, 160, 0, 0.45)) drop-shadow(0 0 16px rgba(244, 160, 0, 0.28));
    }
}

/* ── Split text ── */
.char {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
}

.char-inner {
    display: inline-block;
    transform: translateY(110%);
    transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.char-inner.revealed {
    transform: translateY(0);
}

/* ── Separator: initially hidden ── */
.hero-separator {
    width: 1px;
    height: 100px;
    background: linear-gradient(to bottom, transparent, rgba(244, 160, 0, 0.45), transparent);
    flex-shrink: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.hero-separator.el-visible {
    opacity: 1;
}

.inicio-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.inicio-label-top {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1;
}

.inicio-label-bottom {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(18px, 2.2vw, 30px);
    font-weight: 300;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.38);
    line-height: 1;
}

/* ─── APRESENTAÇÃO CONTENT ───────────────── */
.apres-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
    max-width: 820px;
    opacity: 0;
    transition: opacity 350ms ease;
}

.flip-card.flipped .apres-content {
    opacity: 1;
    transition-delay: 380ms;
}

.apres-title {
    font-family: 'Anton', sans-serif;
    text-transform: uppercase;
    line-height: 0.92;
    letter-spacing: 1px;
}

.apres-line-sm {
    display: block;
    font-size: clamp(38px, 5vw, 62px);
    color: var(--brand-bg);
}

.apres-line-lg {
    display: block;
    font-size: clamp(80px, 13vw, 148px);
    color: var(--brand-orange);
    line-height: 0.88;
}

.apres-line-md {
    display: block;
    font-size: clamp(38px, 5vw, 62px);
    color: var(--brand-bg);
}

.apres-body {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.5px;
    line-height: 1.65;
    color: rgba(13, 13, 13, 0.60);
    max-width: 520px;
}

/* ─── TOGGLE — minimal underline style ───── */
.hero-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    /* Distância toggle-wrap → conteúdo: proporcional à altura
               640px → ~16px | 900px → ~22px | 1080px → ~26px */
    padding: clamp(10px, 2.4vh, 28px) 0 0;
    flex-shrink: 0;
}

.toggle-wrap {
    position: relative;
    display: inline-flex;
    gap: 40px;
}

.toggle-btn {
    position: relative;
    z-index: 1;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 0 0 10px 0;
    border: none;
    background: transparent;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.30);
    transition: color 300ms ease;
}

.toggle-btn.active {
    color: rgba(255, 255, 255, 0.90);
}

/* Hover on inactive button */
.toggle-btn:not(.active):hover {
    color: var(--brand-orange);
}

body[data-mode="apresentacao"] .toggle-btn {
    color: rgba(13, 13, 13, 0.35);
}

body[data-mode="apresentacao"] .toggle-btn.active {
    color: var(--brand-bg);
}

body[data-mode="apresentacao"] .toggle-btn:not(.active):hover {
    color: var(--brand-orange);
}

/* Sliding underline indicator */
.toggle-indicator {
    position: absolute;
    bottom: 0;
    height: 2px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.90);
    transition: left 420ms cubic-bezier(0.76, 0, 0.24, 1),
        width 420ms cubic-bezier(0.76, 0, 0.24, 1),
        background 600ms ease,
        box-shadow 600ms ease;
    pointer-events: none;
}

body[data-mode="apresentacao"] .toggle-indicator {
    background: var(--brand-bg);
}

/* Hint pulse on the indicator */
.toggle-indicator.hinting {
    animation: indicator-hint 2.2s ease-in-out infinite;
}

@keyframes indicator-hint {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(244, 160, 0, 0);
    }

    50% {
        box-shadow: 0 0 10px 3px rgba(244, 160, 0, 0.55);
    }
}

/* ─── HERO BOTTOM ────────────────────────── */
.hero-bottom {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Respiro proporcional à altura: afasta hero-scroll da borda inferior
               640px → top ~14px, bottom ~18px  |  1080px → top ~22px, bottom ~28px */
    padding: clamp(12px, 2.2vh, 24px) 0 clamp(16px, 2.8vh, 32px);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.hero-bottom.el-visible {
    opacity: 1;
}

.hero-toggle.el-visible {
    opacity: 1;
}

/* ─── GEO ELEMENTS — initially hidden ────── */
.geo-ring-1,
.geo-ring-2,
.geo-ring-3,
.geo-ring-4,
.geo-ring-5,
.geo-sq-1,
.geo-sq-2,
.geo-sq-3,
.geo-dot-1,
.geo-dot-2,
.geo-dot-3 {
    opacity: 0;
    transition: opacity 0.9s ease;
}

.geo-ring-1.geo-visible,
.geo-ring-2.geo-visible,
.geo-ring-3.geo-visible,
.geo-ring-4.geo-visible,
.geo-ring-5.geo-visible,
.geo-sq-1.geo-visible,
.geo-sq-2.geo-visible,
.geo-sq-3.geo-visible,
.geo-dot-1.geo-visible,
.geo-dot-2.geo-visible,
.geo-dot-3.geo-visible {
    opacity: 1;
}

.hero-scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}

.scroll-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--brand-orange);
}

.scroll-arrow {
    font-size: 30px;
    color: var(--brand-orange);
    line-height: 1;
    will-change: transform, opacity, filter;
    animation: arrow-glow 2.2s ease-in-out infinite;
}

@keyframes arrow-glow {

    0%,
    100% {
        transform: translateY(0) translateZ(0);
        filter: drop-shadow(0 0 4px rgba(244, 160, 0, 0.4));
        opacity: 0.65;
    }

    50% {
        transform: translateY(9px) translateZ(0);
        filter: drop-shadow(0 0 10px rgba(244, 160, 0, 1)) drop-shadow(0 0 20px rgba(244, 160, 0, 0.6));
        opacity: 1;
    }
}

/* ─── EDGE LINE ──────────────────────────── */
.hero-edge {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    z-index: 10;
    background: linear-gradient(to right, transparent, rgba(244, 160, 0, 0.45), transparent);
}

/* ─── GEO KEYFRAMES ──────────────────────── */
@keyframes spin-cw {
    to {
        transform: rotate(360deg);
    }
}

@keyframes spin-ccw {
    to {
        transform: rotate(-360deg);
    }
}

@keyframes geo-drift-1 {
    from {
        transform: translate(0, 0) rotate(0deg);
    }

    to {
        transform: translate(8px, -12px) rotate(45deg);
    }
}

@keyframes geo-drift-2 {
    from {
        transform: translate(0, 0) rotate(0deg);
    }

    to {
        transform: translate(-6px, 10px) rotate(-60deg);
    }
}

@keyframes geo-drift-3 {
    from {
        transform: translate(0, 0) rotate(0deg);
    }

    to {
        transform: translate(10px, 6px) rotate(90deg);
    }
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 0.10;
        transform: scale(1);
    }

    50% {
        opacity: 0.60;
        transform: scale(1.8);
    }
}

@keyframes fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ─── HEIGHT-HAMBURGER + HEIGHT-NAV ─────────
           Visível apenas em max-height:560px + min-width:600px.
           Mesmo estilo do hamburger e mobile-nav existentes.
           Contém links de navegação + btn-login.
        ── */
.height-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    padding: 6px;
    cursor: pointer;
    z-index: 200;
    flex-shrink: 0;
}

.height-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

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

.height-hamburger.open span:nth-child(2) {
    opacity: 0;
}

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

body[data-mode="apresentacao"] .height-hamburger span {
    background: var(--brand-bg);
}

.site-header.height-menu-open .height-hamburger span {
    background: var(--brand-bg);
}

.site-header.height-menu-open {
    padding-top: 0;
}

.site-header.height-menu-open .header-row-2 {
    background: #ffffff;
    transition: background-color 0.2s ease;

}

/* Dropdown — idêntico ao mobile-nav */
.height-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 2px solid var(--brand-orange);
    z-index: 500;
    padding: 8px 0;
    margin-top: -1px;
}

.height-nav.open {
    display: block;
}

.height-nav ul {
    list-style: none;
    padding: 0;
}

.height-nav ul li a {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(13, 13, 13, 0.8);
    padding: 14px 24px;
    text-decoration: none;
    transition: color 0.32s ease, background 0.32s ease;
}

.height-nav ul li a:hover {
    color: var(--brand-orange);
    background: rgba(244, 160, 0, 0.06);
}

.height-nav ul li a:hover {
    color: var(--brand-orange);
    background: rgba(244, 160, 0, 0.06);
}

.height-nav-logins {
    display: flex;
    gap: 10px;
    padding: 14px 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    flex-wrap: wrap;
}

.height-nav-logins .btn-login {
    color: rgba(13, 13, 13, 0.75);
    border-color: rgba(13, 13, 13, 0.25);
}

/* ═══════════════════════════════════════════
           RESPONSIVE
           Ordem de cascata:
           1. Queries de LARGURA (portrait mobile → tablet → laptop → desktop)
           2. Queries de ALTURA  (landscape comprimido, qualquer largura)
           3. prefers-reduced-motion
        ═══════════════════════════════════════════ */

/* 950px — sticky hamburger */
@media (max-width: 1100px) {
    .sticky-links {
        display: none;
    }

    .sticky-logins {
        display: none;
    }

    .sticky-hamburger {
        display: flex;
    }
}

/* 900px — hero hamburger aparece */
@media (max-width: 900px) {
    .header-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

/* ── 769px–1024px: tablet (portrait e landscape) + laptop 1024×640 ── */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-logo {
        width: clamp(200px, 22vw, 260px);
    }

    .inicio-content {
        gap: clamp(28px, 3.5vw, 48px);
    }

    .hero-separator {
        height: 90px;
    }

    .inicio-label-top {
        font-size: clamp(28px, 3.8vw, 44px);
    }

    .inicio-label-bottom {
        font-size: clamp(16px, 2.2vw, 26px);
    }

    .apres-line-sm {
        font-size: clamp(38px, 5.2vw, 58px);
    }

    .apres-line-lg {
        font-size: clamp(86px, 13vw, 138px);
    }

    .apres-line-md {
        font-size: clamp(38px, 5.2vw, 58px);
    }

    .apres-body {
        font-size: 19px;
        max-width: 600px;
        line-height: 1.65;
    }

    .apres-content {
        gap: 24px;
    }

    .hero-toggle {
        padding: 16px 0 0;
    }
}

/* ── ≤ 768px: mobile portrait — layout empilhado ── */
@media (max-width: 768px) {
    .inicio-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
    }

    .hero-logo {
        width: clamp(180px, 50vw, 240px);
    }

    .hero-logo-outer.logo-floating .hero-logo,
    .hero-logo {
        filter: drop-shadow(0 0 24px rgba(244, 160, 0, 0.35)) drop-shadow(0 0 8px rgba(244, 160, 0, 0.18));
    }

    .hero-separator {
        width: 60px;
        height: 1px !important;
        background: linear-gradient(to right, transparent, rgba(244, 160, 0, 0.45), transparent) !important;
    }

    .inicio-text {
        align-items: center;
    }

    .inicio-label-top {
        font-size: clamp(26px, 8vw, 42px);
    }

    .inicio-label-bottom {
        font-size: clamp(14px, 4.5vw, 22px);
    }

    .apres-line-sm {
        font-size: clamp(30px, 9vw, 44px);
    }

    .apres-line-lg {
        font-size: clamp(78px, 24vw, 116px);
    }

    .apres-line-md {
        font-size: clamp(30px, 9vw, 44px);
    }

    .apres-body {
        font-size: 17px;
        max-width: 340px;
        line-height: 1.6;
    }

    .apres-content {
        gap: 22px;
        padding-top: 60px;
    }

    .hero-toggle {
        padding: 14px 0 0;
    }

    .geo-ring-1 {
        display: none;
    }

    .geo-ring-5 {
        display: none;
    }

    .geo-ring-2 {
        width: 280px;
        height: 280px;
        margin-top: -140px;
        left: -80px;
    }

    .geo-ring-3 {
        width: 140px;
        height: 140px;
        right: 10px;
        top: -40px;
    }
}

/* ── ≤ 550px: logins entram no hamburger ── */
@media (max-width: 550px) {
    .header-row-1 {
        display: none;
    }

    .mobile-logins {
        display: flex;
    }

    .hero-logo {
        width: clamp(160px, 46vw, 210px);
    }

    .inicio-content {
        gap: 14px;
    }

    .inicio-label-top {
        font-size: clamp(22px, 7.5vw, 34px);
    }

    .inicio-label-bottom {
        font-size: clamp(12px, 4vw, 18px);
    }

    .apres-line-sm {
        font-size: clamp(26px, 8vw, 36px);
    }

    .apres-line-lg {
        font-size: clamp(68px, 21vw, 92px);
    }

    .apres-line-md {
        font-size: clamp(26px, 8vw, 36px);
    }

    .apres-body {
        font-size: 15px;
        max-width: 300px;
        line-height: 1.6;
    }

    .apres-content {
        gap: 18px;
        padding-top: 55px;
    }

    .hero-toggle {
        padding: 10px 0 0;
    }
}



/* ══════════════════════════════════════════════
           QUERIES DE ALTURA — landscape comprimido
           Sem restrição de largura: cobrem celulares deitados
           com largura > 768px que as queries de largura não alcançam.

           IMPORTANTE: estas vêm DEPOIS das queries de largura,
           então sobrescrevem apenas o que precisam reduzir.
           O layout já está empilhado ou horizontal conforme o contexto.
        ══════════════════════════════════════════════ */

/* ── Landscape médio: 501px–700px de altura ──
           Ex: MacBook 11" (1024×640), tablet landscape com barra visível.
           Reduz sem eliminar elementos.
        ── */
@media (max-height: 700px) {

    /* Apenas compacta o header e espaçamentos — não reduz fontes.
               A solução para altura reduzida é o clamp no hero-main e
               hero-bottom, não diminuir elementos. */
    .header-row-1 {
        padding: 2px 0;
    }

    .header-row-2 {
        padding: 4px 0;
    }

    .header-logo-img {
        height: 50px;
    }

    .site-header {
        padding-top: 1px;
    }

    .hero-separator {
        height: 70px;
    }

    .scroll-label {
        font-size: 10px;
    }

    .scroll-arrow {
        font-size: 22px;
    }

    .apres-content {
        padding-top: 3px;
    }
}



/* ── Tablet landscape crítico: altura ≤560px, largura ≥600px ──
           Cobre tablets grandes deitados cuja altura real (descontada a barra
           do browser) fica abaixo de 560px — ex: ~530px num tablet de 620px
           de largura em portrait, deitado.
           height-hamburger assume o controle: contém links + logins.
           Elementos calibrados para tablet grande, não para celular.
        ── */
@media (max-height: 560px) and (min-width: 600px) {

    /* Header: esconde row-1 (logins) e header-nav (links) */
    .header-row-1 {
        display: none;
    }

    .header-nav {
        display: none;
    }

    /* Esconde hamburger hero (só aparece em max-width:800px) */
    .hamburger {
        display: none;
    }

    /* Ativa height-hamburger — o único botão de menu nesse contexto */
    .height-hamburger {
        display: flex;
    }

    /* Compacta header-row-2 */
    .header-logo-img {
        height: 42px;
    }

    .header-row-2 {
        padding: 5px 0;
    }

    .site-header {
        padding-top: 4px;
    }

    /* Layout horizontal — aproveita largura disponível */
    .inicio-content {
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: clamp(20px, 3.5vw, 40px);
    }

    .inicio-text {
        align-items: flex-start;
    }

    /* Separador vertical */
    .hero-separator {
        width: 1px !important;
        height: clamp(60px, 11vh, 90px) !important;
        background: linear-gradient(to bottom, transparent, rgba(244, 160, 0, 0.45), transparent) !important;
    }

    /* Logo: vw como dominante — tablet landscape tem largura generosa */
    .hero-logo {
        width: clamp(130px, 16vw, 200px);
    }

    /* Início: vw para aproveitar a largura disponível */
    .inicio-label-top {
        font-size: clamp(28px, 4vw, 48px);
        letter-spacing: 4px;
    }

    .inicio-label-bottom {
        font-size: clamp(16px, 2.4vw, 30px);
        letter-spacing: 3px;
    }

    /* Apresentação: presença visual real para tablet grande */
    .apres-line-sm {
        font-size: clamp(28px, 3.8vw, 48px);
    }

    .apres-line-lg {
        font-size: clamp(64px, 10vw, 120px);
    }

    .apres-line-md {
        font-size: clamp(28px, 3.8vw, 48px);
    }

    .apres-body {
        font-size: 16px;
        max-width: 560px;
        line-height: 1.55;
    }

    .apres-content {
        gap: 14px;
    }

    /* Toggle e scroll hint */
    .hero-toggle {
        padding: 8px 0 0;
    }

    .scroll-label {
        font-size: 11px;
    }

    .scroll-arrow {
        font-size: 20px;
    }
}


/* ── prefers-reduced-motion ── */
@media (prefers-reduced-motion: reduce) {

    .geo-ring-1,
    .geo-ring-2,
    .geo-ring-3,
    .geo-ring-4,
    .geo-ring-5,
    .geo-sq-1,
    .geo-sq-2,
    .geo-sq-3 {
        animation: none;
    }

    .geo-dot-1,
    .geo-dot-2,
    .geo-dot-3 {
        animation: none;
        opacity: 0.3;
    }

    .hero-logo-outer.logo-floating {
        animation: none;
    }

    .scroll-arrow {
        animation: none;
    }
}

/* ─── TELAS GRANDES (≥ 1500px) ──────────────────── */
@media (min-width: 1500px) {

    /* Container */
    .container {
        max-width: 1440px
    }

    /* ── Títulos e display (tinham clamp) ── */
    .inicio-label-top {
        font-size: clamp(52px, 2.92vw, 56px)
    }

    .inicio-label-bottom {
        font-size: clamp(30px, 1.77vw, 34px)
    }

    .apres-line-sm {
        font-size: clamp(38px, 5vw, 62px)
    }

    .apres-line-lg {
        font-size: clamp(80px, 13vw, 148px)
    }

    .apres-line-md {
        font-size: clamp(38px, 5vw, 62px)
    }

    .service-title {
        font-size: clamp(56px, 3.54vw, 68px)
    }

    .number-value {
        font-size: clamp(68px, 4.27vw, 82px)
    }

    .section-title {
        font-size: clamp(52px, 3.33vw, 64px)
    }

    .title-dark {
        font-size: clamp(48px, 3.02vw, 58px)
    }

    .sobre-title {
        font-size: clamp(46px, 2.92vw, 56px)
    }

    .cta-title {
        font-size: clamp(56px, 3.54vw, 68px)
    }

    /* ── Textos de leitura (px fixo) ── */
    .apres-body {
        font-size: 18px
    }


    .service-desc {
        font-size: 20px
    }

    .sobre-para {
        font-size: 19px
    }

    .sobre-sub {
        font-size: 18px
    }

    .pilar-title {
        font-size: 19px
    }

    .pilar-desc {
        font-size: 17px
    }

    .faq-question-text {
        font-size: 22px
    }

    .faq-answer p {
        font-size: 18px
    }

    .cta-sub {
        font-size: 20px
    }

    .depo-text {
        font-size: 17px
    }

    .depo-name {
        font-size: 18px
    }

    .section-eyebrow {
        font-size: 17px
    }

    .card-name {
        font-size: 20px
    }

    .card-desc {
        font-size: 15px
    }

    /* ── Navegação ── */
    .hero-logo {
        width: clamp(300px, 20.83vw, 400px);
        height: clamp(300px, 20.83vw, 400px)
    }

    .nav-logo {
        font-size: 28px
    }


    .header-nav a {
        font-size: 18px
    }

    .btn-login {
        font-size: 19px
    }

    .sticky-links a {
        font-size: 15px;
    }

    .sticky-logo img {
        height: 85px;
    }

    /* ── Hero UI ── */
    .toggle-btn {
        font-size: 15px
    }

    .scroll-label {
        font-size: 15px
    }

    .scroll-arrow {
        font-size: 36px
    }

    /* ── Services ── */
    .svc-slide-label {
        font-size: 15px
    }

    .service-ilustrativas {
        font-size: 13px
    }

    .service-countdown-val {
        font-size: 34px
    }

    .service-countdown-label {
        font-size: 12px
    }

    /* ── Products ── */
    .season-tab {
        font-size: 15px
    }

    .products-row-label {
        font-size: 14px
    }

    .btn-ver-produtos {
        font-size: 15px
    }

    /* ── Rede Comercial ── */
    .depo-role {
        font-size: 14px
    }

    .depo-dot {
        width: 12px;
        height: 12px
    }

    /* ── Números ── */
    .number-label {
        font-size: 15px
    }

    /* ── Formulário CTA ── */
    .form-label {
        font-size: 14px
    }

    .form-input {
        font-size: 17px
    }

    .form-submit {
        font-size: 16px
    }

    .form-note {
        font-size: 14px
    }

    /* ── Footer ── */
    .footer-logo {
        font-size: 28px
    }

    .footer-tagline {
        font-size: 14px
    }

    .footer-nav a {
        font-size: 15px
    }

    .footer-contact-badge {
        font-size: 13px
    }

    .footer-contact-item {
        font-size: 16px
    }

    .footer-newsletter-title {
        font-size: 15px
    }

    .footer-email-input {
        font-size: 16px
    }

    .footer-email-btn {
        font-size: 14px
    }

    .footer-copy {
        font-size: 13px
    }
}

/* ─── APRESENTAÇÃO — telas largas com altura suficiente ─────── */
@media (min-width: 1500px) and (min-height: 800px) {
    .apres-line-sm {
        font-size: clamp(62px, 3.96vw, 76px)
    }

    .apres-line-lg {
        font-size: clamp(148px, 9.38vw, 180px)
    }

    .apres-line-md {
        font-size: clamp(62px, 3.96vw, 76px)
    }

    .apres-body {
        font-size: 22px
    }
}