:root {
    --amber:       #FFAA32;
    --orange:      #FF8C00;
    --blue:        #0F62AC;
    --bg:          #0D0D0D;
    --bg-2:        #111111;
    --bg-3:        #181818;
    --text:        #FFFFFF;
    --text-sub:    rgba(255, 255, 255, 0.72);
    --text-muted:  rgba(255, 255, 255, 0.42);
    --max-width:   1160px;
    --font:        'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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


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

.hero-wrapper {
    position: relative;
    background: var(--bg);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

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

.hero {
    position: relative;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    padding: 44px 0 56px;
}

.bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 170, 50, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 170, 50, 0.045) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 85% 85% at 50% 40%, black 20%, transparent 100%);
}

.bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(130px);
}

.bg-glow--amber {
    width: 720px;
    height: 720px;
    background: var(--amber);
    opacity: 0.08;
    top: -260px;
    right: -160px;
}

.bg-glow--blue {
    width: 480px;
    height: 480px;
    background: var(--blue);
    opacity: 0.11;
    bottom: -160px;
    left: -80px;
}

.hero__inner {
    position: relative;
    z-index: 1;
    width: 100%;
}


/* Header row */
.hero__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 72px;
    gap: 24px;
    flex-wrap: wrap;
}

.logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    display: block;
}

.trust-strip {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.trust-sep {
    opacity: 0.25;
}


/* Main 2-col grid */
.hero__body {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 72px;
    align-items: center;
}

.hero__text {
    display: flex;
    flex-direction: column;
    gap: 32px;
}


/* Badge */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    border-radius: 40px;
    border: 1px solid rgba(255, 170, 50, 0.28);
    background: rgba(255, 170, 50, 0.07);
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--amber);
    width: fit-content;
}

.badge__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--amber);
    position: relative;
    flex-shrink: 0;
}

.badge__dot::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: var(--amber);
    opacity: 0.45;
    animation: pulse-dot 2.2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { transform: scale(1);   opacity: 0.45; }
    50%       { transform: scale(1.8); opacity: 0;    }
}


/* Headline */
.headline {
    font-size: clamp(34px, 3.8vw, 56px);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.025em;
    color: var(--text);
}

.headline mark {
    background: var(--amber);
    color: #111111;
    padding: 1px 8px 3px;
    border-radius: 5px;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    font-style: normal;
}


/* Subheadline */
.subheadline {
    font-size: clamp(15px, 1.55vw, 18px);
    line-height: 1.75;
    color: var(--text-sub);
    font-weight: 400;
    max-width: 540px;
}


/* CTA */
.cta-wrap {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 34px;
    background: linear-gradient(135deg, var(--orange) 0%, #cc6e00 100%);
    color: #ffffff;
    font-family: var(--font);
    font-size: 17px;
    font-weight: 800;
    letter-spacing: -0.01em;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: 0 4px 28px rgba(255, 140, 0, 0.38);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(255, 140, 0, 0.52);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-primary svg {
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.btn-primary:hover svg {
    transform: translateX(3px);
}

.cta-note {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

.cta-note svg {
    color: var(--amber);
    flex-shrink: 0;
}


/* Image frame */
.hero__visual {
    position: relative;
}

.img-frame {
    position: relative;
    border-radius: 14px;
}

.img-frame__photo {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 14px;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.img-frame__corners {
    position: absolute;
    inset: -10px;
    pointer-events: none;
}

.corner {
    position: absolute;
    width: 26px;
    height: 26px;
    border-color: var(--amber);
    border-style: solid;
    opacity: 0.65;
}

.corner--tl {
    top: 0;
    left: 0;
    border-width: 3px 0 0 3px;
    border-radius: 5px 0 0 0;
}

.corner--br {
    bottom: 0;
    right: 0;
    border-width: 0 3px 3px 0;
    border-radius: 0 0 5px 0;
}

.img-frame__badge {
    position: absolute;
    bottom: -18px;
    left: -18px;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 13px 18px;
    background: #1A1A1A;
    border: 1px solid rgba(255, 170, 50, 0.22);
    border-radius: 11px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(8px);
}

.img-badge__icon {
    font-size: 24px;
    line-height: 1;
}

.img-badge__text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.img-badge__text strong {
    font-size: 13.5px;
    font-weight: 800;
    color: var(--amber);
    line-height: 1;
    display: block;
}

.img-badge__text span {
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1;
    display: block;
}


/* ── VIDEO SECTION ────────────────────────────────────────── */

.video-section {
    background: transparent;
    padding: 0 0 80px;
    position: relative;
    z-index: 1;
}

.video__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.video__cta {
    font-size: clamp(18px, 2.2vw, 26px);
    font-weight: 700;
    color: var(--text-sub);
    text-align: center;
    margin-bottom: 28px;
    max-width: 640px;
    line-height: 1.4;
}

.video__cta span {
    color: var(--amber);
}

.video-embed {
    position: relative;
    width: 100%;
    max-width: 840px;
    aspect-ratio: 16 / 9;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 0 0 1px rgba(255, 170, 50, 0.08),
        0 32px 80px rgba(0, 0, 0, 0.6);
}

.video-embed iframe,
.video-embed video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}


/* ── ENTRANCE ANIMATIONS ──────────────────────────────────── */

.reveal-item {
    opacity: 0;
    transform: translateY(14px);
}

.reveal-visual {
    opacity: 0;
    transform: translateX(14px);
}

.reveal-item.is-visible,
.reveal-visual.is-visible {
    animation: fade-up 0.38s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.reveal-visual.is-visible {
    animation-name: fade-right;
}

@keyframes fade-up {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fade-right {
    to { opacity: 1; transform: translateX(0); }
}


/* ── SOCIAL PROOF ────────────────────────────────────────── */

.social-proof {
    background: #0D0D0D;
    padding: 96px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.social-proof::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 170, 50, 0.12) 1px, transparent 1px);
    background-size: 30px 30px;
    mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 30%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}

.social-proof .container {
    position: relative;
    z-index: 1;
}

.sp-title {
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.15;
    color: var(--text);
    margin-bottom: 12px;
}

.social-proof .section-sub {
    margin-bottom: 48px;
}

.sp-title em {
    font-style: normal;
    color: var(--amber);
}

/* Carousel */
.carousel {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    max-width: 860px;
    margin: 0 auto 56px;
    box-shadow: 0 24px 72px rgba(0, 0, 0, 0.55);
}

.carousel__track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel__slide {
    min-width: 100%;
    position: relative;
    height: 520px;
    flex-shrink: 0;
    overflow: hidden;
}

.carousel__slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.carousel__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.82) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        transparent 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 32px;
}

.carousel__text {
    font-size: clamp(15px, 1.8vw, 20px);
    font-weight: 700;
    line-height: 1.4;
    color: #ffffff;
    max-width: 560px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.carousel__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(6px);
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
    z-index: 2;
}

.carousel__btn:hover {
    background: rgba(255, 170, 50, 0.25);
    border-color: var(--amber);
    transform: translateY(-50%) scale(1.08);
}

.carousel__btn--prev { left: 16px; }
.carousel__btn--next { right: 16px; }

.carousel__dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 7px;
    z-index: 2;
}

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

.carousel__dot.is-active {
    background: var(--amber);
    transform: scale(1.3);
}

/* Seals */
.seals {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    max-width: 900px;
    margin: 0 auto;
}

.seal {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-sub);
    white-space: nowrap;
    transition: border-color 0.2s, background 0.2s;
}

.seal:hover {
    border-color: rgba(255, 170, 50, 0.3);
    background: rgba(255, 170, 50, 0.05);
}

.seal__icon {
    color: var(--amber);
    flex-shrink: 0;
}


/* ── OPORTUNIDADE ────────────────────────────────────────── */

.opportunity {
    background: var(--bg-2);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.opportunity::before {
    content: '';
    position: absolute;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, var(--amber) 0%, transparent 65%);
    opacity: 0.07;
    right: -120px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.opportunity::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        -45deg,
        rgba(255, 170, 50, 0.025) 0px,
        rgba(255, 170, 50, 0.025) 1px,
        transparent 1px,
        transparent 18px
    );
    pointer-events: none;
    z-index: 0;
}

.opp__watermarks {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.opp__wm {
    position: absolute;
    font-family: var(--font);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.04em;
    color: rgba(255, 170, 50, 0.045);
    user-select: none;
}

.opp__wm--1 {
    font-size: 320px;
    top: -30px;
    right: -30px;
}

.opp__wm--2 {
    font-size: 280px;
    bottom: -20px;
    left: -15px;
}

.opp__container {
    position: relative;
    z-index: 1;
}

.opp__header {
    margin-bottom: 60px;
}

.opp__title {
    font-size: clamp(28px, 3.2vw, 46px);
    font-weight: 900;
    letter-spacing: -0.025em;
    line-height: 1.12;
    color: var(--text);
    margin-bottom: 20px;
}

.text-amber {
    color: #FFAA32 !important;
}

.opp__subtitle {
    font-size: clamp(16px, 1.6vw, 19px);
    color: var(--text-sub);
    line-height: 1.65;
    font-weight: 400;
}

.opp__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 56px;
}

.opp__card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
    transition: border-color 0.25s, background 0.25s, transform 0.25s;
}

.opp__card:hover {
    border-color: rgba(255, 170, 50, 0.35);
    background: rgba(255, 170, 50, 0.04);
    transform: translateY(-4px);
}

.opp__card-icon {
    font-size: 36px;
    line-height: 1;
}

.opp__card-stat {
    font-size: clamp(22px, 2.4vw, 32px);
    font-weight: 900;
    letter-spacing: -0.02em;
    color: var(--amber);
    line-height: 1;
}

.opp__card-text {
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--text-sub);
    font-weight: 400;
}

.opp__closing {
    text-align: center;
    padding: 36px 40px;
    background: rgba(255, 170, 50, 0.06);
    border: 1px solid rgba(255, 170, 50, 0.2);
    border-radius: 14px;
    max-width: 680px;
    margin: 0 auto;
}

.opp__closing p {
    font-size: clamp(17px, 1.8vw, 21px);
    line-height: 1.55;
    color: var(--text-sub);
    font-weight: 500;
}

.opp__closing strong {
    color: var(--amber);
    font-weight: 800;
}


/* ── COMO APRENDER ───────────────────────────────────────── */

.how-learn {
    background: #0D0D0D;
    padding: 100px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.how-learn::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 170, 50, 0.12) 1px, transparent 1px);
    background-size: 30px 30px;
    mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 30%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}

.how-learn .container {
    position: relative;
    z-index: 1;
}

.hl__header {
    margin-bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}

.hl__title {
    font-size: clamp(28px, 3.2vw, 44px);
    font-weight: 900;
    letter-spacing: -0.025em;
    line-height: 1.15;
    color: var(--text);
}

.hl__title em {
    font-style: normal;
    color: var(--amber);
}

.hl__steps {
    display: flex;
    flex-direction: column;
    gap: 88px;
}

.hl__step {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 20px;
    align-items: center;
}

.hl__step--reversed .hl__video-wrap { order: -1; }

.hl__text {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hl__number {
    font-size: 88px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.04em;
    color: rgba(255, 170, 50, 0.12);
    display: block;
    margin-bottom: -16px;
}

.hl__step-title {
    font-size: clamp(22px, 2.2vw, 30px);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--text);
}

.hl__step-desc {
    font-size: clamp(15px, 1.5vw, 17px);
    line-height: 1.75;
    color: var(--text-sub);
    font-weight: 400;
    max-width: 440px;
}

.hl__video-frame {
    position: relative;
    display: flex;
    justify-content: center;
    padding: 12px;
    width: fit-content;
    margin: 0 auto;
}

.hl__video-frame::before,
.hl__video-frame::after {
    content: '';
    position: absolute;
    width: 28px;
    height: 28px;
    border-color: var(--amber);
    border-style: solid;
    opacity: 0.7;
    z-index: 2;
}

.hl__video-frame::before {
    top: 0;
    left: 0;
    border-width: 3px 0 0 3px;
    border-radius: 5px 0 0 0;
}

.hl__video-frame::after {
    bottom: 0;
    right: 0;
    border-width: 0 3px 3px 0;
    border-radius: 0 0 5px 0;
}

.hl__video-wrap {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 0 0 1px rgba(255, 170, 50, 0.12),
        0 0 48px rgba(255, 170, 50, 0.1),
        0 24px 60px rgba(0, 0, 0, 0.55);
    aspect-ratio: 9 / 16;
    width: 320px;
}

.hl__video-wrap video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hl__closing {
    text-align: center;
    padding: 36px 40px;
    background: rgba(255, 170, 50, 0.06);
    border: 1px solid rgba(255, 170, 50, 0.2);
    border-radius: 14px;
    max-width: 680px;
    margin: 72px auto 0;
}

.hl__closing p {
    font-size: clamp(17px, 1.8vw, 21px);
    line-height: 1.55;
    color: var(--text-sub);
    font-weight: 500;
}

.hl__closing strong {
    color: var(--amber);
    font-weight: 800;
}

.hl__thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hl__thumb.is-hidden {
    display: none;
}

.hl__play {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.45);
    border: none;
    cursor: pointer;
    transition: background 0.25s;
    z-index: 2;
    width: 100%;
    height: 100%;
}

.hl__play:hover {
    background: rgba(0, 0, 0, 0.6);
}

.hl__play.is-hidden {
    display: none;
}

.hl__play-icon {
    width: 64px;
    height: 64px;
    background: var(--amber);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    transition: transform 0.25s, box-shadow 0.25s;
}

.hl__play:hover .hl__play-icon {
    transform: scale(1.1);
    box-shadow: 0 0 0 10px rgba(255, 170, 50, 0.22);
}

.reveal-step {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.38s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

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


/* ── SOBRE A NEED ────────────────────────────────────────── */

.about {
    background: #111111;
    padding: 100px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    width: 560px;
    height: 560px;
    background: radial-gradient(circle, var(--blue) 0%, transparent 70%);
    opacity: 0.08;
    left: -100px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.about::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        -45deg,
        rgba(255, 170, 50, 0.025) 0px,
        rgba(255, 170, 50, 0.025) 1px,
        transparent 1px,
        transparent 18px
    );
    pointer-events: none;
    z-index: 0;
}

.about__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about__dep-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    margin: 80px 0 64px;
    position: relative;
    z-index: 1;
}

.about__slideshow {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    aspect-ratio: 4 / 3;
}

.about__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.9s ease;
}

.about__slide.is-active {
    opacity: 1;
}

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

.about__slide-dots {
    position: absolute;
    bottom: 14px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 6px;
    z-index: 2;
}

.about__slide-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    transition: background 0.3s, transform 0.3s;
}

.about__slide-dot.is-active {
    background: var(--amber);
    transform: scale(1.3);
}

.about__content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about__logo {
    height: 44px;
    width: auto;
    object-fit: contain;
    display: block;
}

.about__title {
    font-size: clamp(24px, 2.6vw, 36px);
    font-weight: 900;
    letter-spacing: -0.025em;
    line-height: 1.15;
    color: var(--text);
}

.about__title em {
    font-style: normal;
    color: var(--amber);
}

.about__text {
    font-size: 15.5px;
    line-height: 1.78;
    color: var(--text-sub);
    font-weight: 400;
}

.about__counters {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.about__counter {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    padding: 0 16px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.about__counter:first-child {
    border-left: none;
    padding-left: 0;
}

.counter__number {
    font-size: clamp(22px, 2vw, 30px);
    font-weight: 900;
    color: var(--amber);
    letter-spacing: -0.02em;
    line-height: 1;
}

.counter__label {
    font-size: 11.5px;
    color: var(--text-muted);
    font-weight: 500;
    line-height: 1.3;
}


/* ── RESPONSIVE ───────────────────────────────────────────── */

@media (max-width: 960px) {
    .about__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .hl__step,
    .hl__step--reversed {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hl__step--reversed .hl__video-frame {
        order: 1;
    }

    .hl__step--reversed .hl__text {
        order: 0;
    }

    .hl__steps {
        gap: 60px;
    }

    .hl__video-wrap {
        width: 280px;
        height: 498px;
    }

    .hl__number {
        font-size: 64px;
    }

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

    .hero__body {
        grid-template-columns: 1fr;
        gap: 52px;
    }

    .hero__visual {
        order: -1;
    }

    .img-frame__photo {
        aspect-ratio: 16 / 9;
    }

    .subheadline {
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 32px 0 72px;
        min-height: auto;
    }

    .hero__header {
        margin-bottom: 40px;
    }

    .trust-strip {
        display: none;
    }

    .logo {
        height: 40px;
        margin: 0 auto;
    }

    .badge {
        display: none;
    }

    .hero__body {
        gap: 36px;
    }

    .hero__text {
        gap: 24px;
    }

    .img-frame__badge {
        bottom: -14px;
        left: 12px;
    }

    .btn-primary {
        width: 100%;
        justify-content: center;
        font-size: 16px;
        padding: 17px 24px;
    }

    .cta-wrap {
        align-items: stretch;
    }

    .cta-note {
        justify-content: center;
    }

    .video-section {
        padding: 0 0 52px;
    }

    .social-proof {
        padding: 64px 0;
    }

    .carousel__slide {
        height: 340px;
    }

    .carousel__overlay {
        padding: 20px;
    }

    .carousel__btn {
        width: 36px;
        height: 36px;
    }

    .seal {
        font-size: 13px;
        padding: 11px 16px;
    }
}


/* ── DEPOIMENTOS (dentro da seção about) ───────────────────── */

.section-badge {
    display: inline-flex;
    align-items: center;
    padding: 7px 16px;
    border-radius: 40px;
    border: 1px solid rgba(255, 170, 50, 0.28);
    background: rgba(255, 170, 50, 0.07);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 900;
    letter-spacing: -0.025em;
    line-height: 1.15;
    color: var(--text);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.section-sub {
    font-size: 15.5px;
    color: var(--text-sub);
    line-height: 1.6;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.dep__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 24px;
    position: relative;
    z-index: 1;
}

.dep__card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: var(--bg-3);
    border: 1px solid rgba(255,255,255,0.07);
    transition: transform 0.3s, box-shadow 0.3s;
}

.dep__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}

.dep__media {
    position: relative;
    height: 400px;
    background: #000;
    overflow: hidden;
}

.dep__thumb {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s;
}

.dep__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

.dep__card.is-playing .dep__thumb,
.dep__card.is-playing .dep__play {
    display: none;
}

.dep__card.is-playing .dep__media {
    position: absolute;
    inset: 0;
    height: 100%;
    z-index: 2;
}

.dep__card.is-playing .dep__video {
    display: block;
}

.dep__play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.38);
    border: none;
    cursor: pointer;
    transition: background 0.25s;
}

.dep__play:hover {
    background: rgba(0,0,0,0.52);
}

.dep__play-icon {
    width: 60px;
    height: 60px;
    background: var(--amber);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    transition: transform 0.25s, box-shadow 0.25s;
}

.dep__play:hover .dep__play-icon {
    transform: scale(1.12);
    box-shadow: 0 0 0 10px rgba(255,170,50,0.22);
}

.dep__info {
    padding: 22px 22px 26px;
}

.dep__quote {
    font-size: 0.92rem;
    color: var(--text-sub);
    line-height: 1.65;
    margin-bottom: 14px;
    font-style: italic;
}

.dep__name {
    font-size: 0.82rem;
    color: var(--amber);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.dep__closing {
    padding: 36px 40px;
    background: rgba(255, 170, 50, 0.06);
    border: 1px solid rgba(255, 170, 50, 0.2);
    border-radius: 14px;
    max-width: 600px;
    margin: 56px auto 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.dep__closing p {
    font-size: clamp(16px, 1.6vw, 20px);
    color: var(--text-sub);
    line-height: 1.6;
    font-style: italic;
}

.dep__closing strong {
    color: var(--amber);
    font-style: normal;
}

@media (max-width: 960px) {
    .dep__grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
        margin-top: 40px;
    }
}

@media (max-width: 640px) {
    .dep__grid {
        max-width: 300px;
    }

    .dep__media {
        height: 400px;
    }

    .about__dep-divider {
        margin: 56px 0 48px;
    }
}


/* ── FAQ ───────────────────────────────────────────────────── */

.faq {
    position: relative;
    background: var(--bg-3);
    padding: 100px 0;
    overflow: hidden;
}

.faq::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,170,50,0.09) 1px, transparent 1px);
    background-size: 30px 30px;
    mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 30%, transparent 100%);
    pointer-events: none;
}

.faq .section-badge,
.faq .section-title,
.faq .section-sub {
    position: relative;
    z-index: 1;
}

.faq__list {
    margin-top: 52px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq__item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.25s;
}

.faq__item.is-open {
    border-color: rgba(255,170,50,0.35);
}

.faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    color: var(--text);
    font-family: var(--font);
    font-size: 15.5px;
    font-weight: 600;
    line-height: 1.45;
    transition: color 0.2s;
}

.faq__item.is-open .faq__question {
    color: var(--amber);
}

.faq__icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 300;
    color: var(--text-muted);
    transition: background 0.25s, border-color 0.25s, transform 0.35s, color 0.25s;
}

.faq__icon::before {
    content: '+';
}

.faq__item.is-open .faq__icon {
    background: rgba(255,170,50,0.12);
    border-color: rgba(255,170,50,0.4);
    color: var(--amber);
    transform: rotate(45deg);
}

.faq__answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s ease;
}

.faq__item.is-open .faq__answer {
    grid-template-rows: 1fr;
}

.faq__answer > div {
    overflow: hidden;
}

.faq__answer p {
    padding: 0 24px 22px;
    font-size: 15px;
    color: var(--text-sub);
    line-height: 1.75;
}

.faq__answer strong {
    color: var(--amber);
    font-weight: 600;
}

@media (max-width: 640px) {
    .faq {
        padding: 64px 0;
    }

    .faq__question {
        font-size: 14.5px;
        padding: 18px 18px;
    }

    .faq__answer p {
        padding: 0 18px 18px;
    }
}


/* ── CTA WHATSAPP ──────────────────────────────────────────── */

.cta-wpp {
    position: relative;
    background: var(--bg);
    padding: 120px 0;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.cta-wpp__glow {
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,170,50,0.13) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.cta-wpp__inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: relative;
    z-index: 1;
}

.cta-wpp__title {
    font-size: clamp(36px, 5vw, 68px);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.05;
    color: var(--text);
    margin-bottom: 20px;
}

.cta-wpp__title span {
    color: var(--amber);
}

.cta-wpp__sub {
    font-size: clamp(16px, 1.7vw, 20px);
    color: var(--text-sub);
    line-height: 1.65;
    margin-bottom: 44px;
}

.cta-wpp__sub strong {
    color: var(--text);
    font-weight: 700;
}

.cta-wpp__btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: #25D366;
    color: #fff;
    font-family: var(--font);
    font-size: 17px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    box-shadow: 0 8px 32px rgba(37,211,102,0.3);
    margin-bottom: 20px;
}

.cta-wpp__btn:hover {
    background: #1ebe5d;
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(37,211,102,0.42);
}

.cta-wpp__note {
    font-size: 13px;
    color: var(--text-muted);
    letter-spacing: 0.03em;
}

/* ── FLOATING WHATSAPP ─────────────────────────────────────── */

.wpp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(37,211,102,0.45);
    z-index: 999;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.3s, transform 0.3s, box-shadow 0.2s;
    pointer-events: none;
}

.wpp-float.is-visible {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.wpp-float:hover {
    box-shadow: 0 8px 32px rgba(37,211,102,0.6);
    transform: scale(1.08);
}

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

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

@media (max-width: 640px) {
    .cta-wpp {
        padding: 80px 0;
    }

    .cta-wpp__btn {
        width: 100%;
        justify-content: center;
    }
}


/* ── FOOTER ────────────────────────────────────────────────── */

.footer {
    background: #000;
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 36px 0 28px;
    text-align: center;
}

.footer__logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto 20px;
}

.footer__copy {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    margin-bottom: 10px;
    line-height: 1.5;
}

.footer__links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}

.footer__links a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: color 0.2s;
}

.footer__links a:hover {
    color: var(--amber);
}

@media (max-width: 640px) {
    .footer__copy {
        font-size: 12px;
    }
}

/* ── Modal seleção de cidade ─────────────────────────────── */
.cidade-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}
.cidade-modal.is-open { display: flex; }

.cidade-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(4px);
}

.cidade-modal__box {
    position: relative;
    background: #1a1a1a;
    border: 1px solid rgba(255,170,50,0.25);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    max-width: 380px;
    width: calc(100% - 2rem);
    text-align: center;
    box-shadow: 0 24px 64px rgba(0,0,0,0.6);
    animation: modalIn .25s ease;
}

@keyframes modalIn {
    from { opacity:0; transform: translateY(16px) scale(.97); }
    to   { opacity:1; transform: translateY(0) scale(1); }
}

.cidade-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: rgba(255,255,255,0.4);
    font-size: 1.1rem;
    cursor: pointer;
    line-height: 1;
    padding: 4px 8px;
    border-radius: 6px;
    transition: color .2s, background .2s;
}
.cidade-modal__close:hover { color: #fff; background: rgba(255,255,255,0.08); }

.cidade-modal__icon { font-size: 2.5rem; margin-bottom: .75rem; }

.cidade-modal__title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: .4rem;
}

.cidade-modal__sub {
    font-size: .9rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 1.75rem;
}

.cidade-modal__btns {
    display: flex;
    gap: .75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cidade-modal__btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: #25D366;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    padding: .85rem 1.75rem;
    border-radius: 12px;
    text-decoration: none;
    flex: 1;
    min-width: 160px;
    white-space: nowrap;
    justify-content: center;
    transition: filter .2s, transform .15s;
}
.cidade-modal__btn:hover { filter: brightness(1.1); transform: translateY(-2px); }

