:root {
    --container: 1120px;

    --bg: #0a0a0a;
    --text: #f5f5f5;
    --stroke: rgba(255, 255, 255, 0.07);

    /* brand */
    --orange: #ff7a00;
    --green: #00dd99;
    --green-strong: #00e1a4;

    /* gallery */
    --g-card-w: clamp(360px, 34vw, 520px);
    --g-height: clamp(420px, 60vh, 680px);
    --g-card-r: 20px;
    --g-gap: clamp(16px, 2vw, 28px);
    --marquee-speed: 95;

    /* timeline */
    --bg-900: #0b0b0b;
    --bg-950: #0a0a0a;
    --tl-media-h: clamp(240px, 32vw, 380px);
}

/* ====== base & header ====== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
img {
    max-width: 100%;
    display: block;
}
body {
    background: radial-gradient(
            1200px 360px at 8% -80px,
            rgba(255, 122, 0, 0.12),
            transparent 60%
        ),
        radial-gradient(
            1200px 360px at 92% -80px,
            rgba(0, 221, 153, 0.08),
            transparent 60%
        ),
        var(--bg);
    color: var(--text);
    font: 400 16px/1.5 "Inter", system-ui, -apple-system, Segoe UI, Helvetica,
        Arial;
    overflow-x: hidden;
}
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.1rem 1.6rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}
.logo {
    width: 66px;
    height: auto;
}
.language-switch {
    display: flex;
    background: #000;
    border-radius: 40px;
    padding: 5px;
}
.lang-btn {
    background: transparent;
    border: none;
    color: #fff;
    font-weight: 800;
    font-size: 0.9rem;
    padding: 0.35rem 1rem;
    border-radius: 18px;
    cursor: pointer;
}
.lang-btn.active {
    background: var(--orange);
}

/* ====== HERO ====== */
.hero {
    position: relative;
    min-height: 92vh;
    background: url("./img/hero-fallback1.png") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

/**************************************/

/* vídeo de fundo */
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;

    /* baixa proeminência */
    opacity: 0.39; /* torna o vídeo discreto */
    filter: saturate(0.8) blur(0.2px) contrast(0.95);

    /* fica atrás do overlay e do conteúdo */
    z-index: 0;
}

/* o overlay que já existe no teu HTML continua a funcionar por cima do vídeo */
.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

/* conteúdo */
.hero-content {
    position: relative;
    z-index: 2;
}

/* acessibilidade: se o utilizador prefere menos movimento, esconde o vídeo */
@media (prefers-reduced-motion: reduce) {
    .hero-video {
        display: none;
    }
}

/******************************************************/

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: min(88%, var(--container));
    padding-top: 5.5rem;
}
.hero-title {
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: 0.3px;
    font-size: clamp(1.9rem, 4.2vw, 3.2rem);
    margin-bottom: 1rem;
}
.hero-subtitle {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    font-weight: 300;
    min-height: 1.8rem;
    margin: 2.2rem 0 2.8rem;
}
.cursor {
    display: inline-block;
    color: var(--orange);
    animation: blink 1s infinite;
}
@keyframes blink {
    0%,
    50% {
        opacity: 1;
    }
    51%,
    100% {
        opacity: 0;
    }
}

/* bubbles */
.bubbles {
    position: relative;
    width: 100%;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-bottom: 0.6rem;
    pointer-events: none;
}
.bubble {
    position: absolute;
    bottom: 0;
    width: 8px;
    height: 8px;
    background: var(--orange);
    border-radius: 50%;
    opacity: 0;
    animation-name: rise, flicker;
    animation-duration: var(--dur, 2.6s), 1.2s;
    animation-timing-function: cubic-bezier(0.2, 0.6, 0.2, 1), linear;
    animation-iteration-count: infinite, infinite;
    animation-fill-mode: both, both;
}
@keyframes rise {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.9;
    }
    30% {
        transform: translate(var(--dx, 0px), -60px) scale(0.8);
        opacity: 1;
    }
    100% {
        transform: translate(calc(var(--dx, 0px) * 1.2), -150px) scale(0.35);
        opacity: 0;
    }
}
@keyframes flicker {
    0%,
    100% {
        filter: none;
    }
    50% {
        filter: brightness(1.08);
    }
}
.bubble:nth-child(1) {
    left: 50%;
    --dx: 0;
    --dur: 2.6s;
    animation-delay: 0s, 0.1s;
}
.bubble:nth-child(2) {
    left: 49.4%;
    --dx: -5px;
    --dur: 2.9s;
    animation-delay: 0.18s, 0.28s;
}
.bubble:nth-child(3) {
    left: 50.7%;
    --dx: 4px;
    --dur: 2.5s;
    animation-delay: 0.36s, 0.46s;
}
.bubble:nth-child(4) {
    left: 49.9%;
    --dx: -3px;
    --dur: 2.8s;
    animation-delay: 0.54s, 0.64s;
}
.bubble:nth-child(5) {
    left: 50.2%;
    --dx: 5px;
    --dur: 2.6s;
    animation-delay: 0.72s, 0.82s;
}
.bubble:nth-child(6) {
    left: 49.6%;
    --dx: -4px;
    --dur: 3s;
    animation-delay: 0.9s, 1s;
}
.bubble:nth-child(7) {
    left: 50.4%;
    --dx: 3px;
    --dur: 2.7s;
    animation-delay: 1.08s, 1.18s;
}
.explore-btn {
    background: transparent;
    border: none;
    color: #fff;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
}
.explore-btn:hover {
    color: var(--orange);
}

/* ====== STATS ====== */
.stats {
    position: relative;
    padding: 4rem 1.4rem 4.5rem;
    background: radial-gradient(
            900px 240px at 10% -40px,
            rgba(255, 102, 0, 0.14),
            transparent 60%
        ),
        radial-gradient(
            900px 240px at 90% -40px,
            rgba(255, 102, 0, 0.1),
            transparent 60%
        ),
        linear-gradient(180deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.96));
    overflow: hidden;
}
.cursor-light {
    position: absolute;
    top: 0;
    left: 0;
    width: 220px;
    height: 220px;
    pointer-events: none;
    border-radius: 50%;
    background: radial-gradient(
        closest-side,
        rgba(255, 140, 30, 0.18),
        rgba(255, 140, 30, 0.07) 55%,
        transparent 70%
    );
    filter: blur(8px);
    transform: translate(-36px, -36px);
    z-index: 0;
}
.stats-cards,
.stats-copy {
    position: relative;
    z-index: 1;
}
.stats-cards {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}
.stat-card {
    position: relative;
    background: linear-gradient(
        180deg,
        rgba(26, 26, 26, 0.86),
        rgba(18, 18, 18, 0.86)
    );
    border: 1px solid var(--stroke);
    border-radius: 14px;
    padding: 1.25rem;
    display: grid;
    place-items: center;
    text-align: center;
    gap: 0.5rem;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    cursor: pointer;
}
.stat-card:hover {
    border-color: var(--orange);
    box-shadow: 0 0 0 1px rgba(255, 102, 0, 0.22),
        0 12px 26px rgba(255, 102, 0, 0.15);
    transform: translateY(-2px);
}
.stat-icon {
    font-size: 1.6rem;
}
.stat-number {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--orange);
}
.stat-label {
    font-weight: 700;
    font-size: 0.95rem;
}
.stats-copy {
    max-width: var(--container);
    margin: 3.8rem auto 0;
    text-align: left;
}
.stats-title {
    font-size: clamp(1.6rem, 3.2vw, 2.4rem);
    line-height: 1.2;
    font-weight: 900;
    color: var(--orange);
    margin-bottom: 1rem;
}
.stats-title .title-shine {
    display: inline-block;
    background: linear-gradient(
        90deg,
        rgba(255, 200, 120, 0) 0%,
        rgba(255, 215, 150, 0.25) 35%,
        rgba(255, 230, 180, 0.35) 50%,
        rgba(255, 215, 150, 0.25) 65%,
        rgba(255, 200, 120, 0) 100%
    );
    background-size: 250% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    animation: shine 8s linear infinite;
}
@keyframes shine {
    0% {
        background-position: -150% 0;
    }
    100% {
        background-position: 150% 0;
    }
}
.stats-text {
    max-width: min(920px, 90%);
    color: #d2d2d2;
    font-size: clamp(0.95rem, 1.2vw, 1.05rem);
    line-height: 1.8;
    margin: 0 auto;
    text-align: center;
    padding: 0 1rem;
}

/* ====== GALLERY ====== */
.gallery {
    position: relative;
    padding: 2.6rem 0 3.2rem;
    background: linear-gradient(
            180deg,
            rgba(20, 10, 0, 0.22),
            rgba(0, 0, 0, 0) 25%
        ),
        radial-gradient(
            900px 260px at 10% 0,
            rgba(255, 102, 0, 0.1),
            transparent 60%
        ),
        linear-gradient(180deg, #0b0b0b, #0a0a0a);
    overflow: hidden;
}
.gallery-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.4rem;
}
.gallery-track {
    display: flex;
    gap: var(--g-gap);
    will-change: transform;
    animation: gallery-marquee var(--marquee-duration, 40s) linear infinite;
}
.g-card {
    flex: 0 0 auto;
    width: var(--g-card-w);
    height: var(--g-height);
    border-radius: var(--g-card-r);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.03) inset;
    background: #111;
    transition: transform 0.2s, box-shadow 0.2s;
}
.g-card:hover {
    transform: scale(1.05);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.45);
}
.g-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@keyframes gallery-marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-1 * var(--marquee-distance, 1600px)));
    }
}

/* ====== TIMELINE ====== */
.timeline {
    position: relative;
    padding: 4.2rem 0 6rem;
    background: radial-gradient(
            800px 360px at 8% 0,
            rgba(255, 110, 20, 0.1),
            transparent 60%
        ),
        linear-gradient(180deg, var(--bg-900), var(--bg-950));
    overflow: hidden;
}
.tl-header {
    display: flex;
    justify-content: center;
    margin-bottom: 1.6rem;
}
.tl-header h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: var(--orange);
    font-weight: 900;
    letter-spacing: 0.4px;
}
.tl-line-wrap {
    position: absolute;
    top: 8.2rem;
    bottom: 6.4rem;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    pointer-events: none;
    z-index: 0;
}
.tl-line-base {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent,
        rgba(90, 90, 90, 0.45) 30%,
        rgba(90, 90, 90, 0.48) 50%,
        rgba(90, 90, 90, 0.45) 70%,
        transparent
    );
}
.tl-line-progress {
    position: absolute;
    left: -1px;
    top: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 225, 164, 0),
        rgba(0, 225, 164, 0.65) 20%,
        rgba(0, 225, 164, 0.85)
    );
    box-shadow: 0 0 18px rgba(0, 225, 164, 0.35),
        0 0 40px rgba(0, 225, 164, 0.25);
    border-radius: 2px;
    transition: height 0.12s linear;
    will-change: height;
}
.tl-end-dot {
    position: absolute;
    left: -6px;
    top: 0;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: radial-gradient(
        circle at 30% 30%,
        #7fffe0,
        #00d9a6 60%,
        #009e7a
    );
    box-shadow: 0 0 0 4px rgba(0, 225, 164, 0.18),
        0 0 22px rgba(0, 225, 164, 0.55), 0 0 60px rgba(0, 225, 164, 0.35);
    transform: translateY(0);
}
.tl-item {
    position: relative;
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.2rem;
    padding: 2.4rem 1.4rem;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s, transform 0.5s;
    z-index: 1;
}
.tl-item.in-view {
    opacity: 1;
    transform: translateY(0);
}
.tl-item.left .tl-media {
    grid-column: 1;
}
.tl-item.left .tl-content {
    grid-column: 2;
}
.tl-item.right .tl-media {
    grid-column: 2;
}
.tl-item.right .tl-content {
    grid-column: 1;
}
.tl-media {
    height: var(--tl-media-h);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
    transition: transform 0.3s, box-shadow 0.3s, filter 0.3s;
}
.tl-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.tl-media:hover {
    transform: scale(1.03);
    box-shadow: 0 14px 44px rgba(0, 0, 0, 0.5), 0 0 22px rgba(0, 225, 164, 0.18);
    filter: brightness(1.04);
}
.tl-content {
    max-width: 520px;
}
.tl-badge {
    display: inline-block;
    background: var(--orange);
    color: #101010;
    font-weight: 800;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}
.tl-title {
    font-size: clamp(1.2rem, 1.9vw, 1.75rem);
    font-weight: 900;
    margin-bottom: 0.6rem;
}
.tl-text {
    color: #d8d8d8;
    line-height: 1.75;
    opacity: 0.9;
}
.tl-dot {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    top: 50%;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: radial-gradient(
        circle at 30% 30%,
        #7fffe0,
        #00d9a6 60%,
        #009e7a
    );
    box-shadow: 0 0 0 3px rgba(0, 225, 164, 0.18),
        0 0 20px rgba(0, 225, 164, 0.5), 0 0 56px rgba(0, 225, 164, 0.35);
}
@keyframes tl-pulse {
    0%,
    100% {
        box-shadow: 0 0 0 3px rgba(0, 225, 164, 0.18),
            0 0 20px rgba(0, 225, 164, 0.5), 0 0 56px rgba(0, 225, 164, 0.35);
    }
    50% {
        box-shadow: 0 0 0 7px rgba(0, 225, 164, 0.22),
            0 0 28px rgba(0, 225, 164, 0.6), 0 0 76px rgba(0, 225, 164, 0.42);
    }
}
.tl-item.in-view .tl-dot {
    animation: tl-pulse 2s ease-in-out infinite;
}
.tl-hline {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    opacity: 0.55;
    background: linear-gradient(
        90deg,
        transparent 12%,
        rgba(120, 120, 120, 0.45) 25%,
        rgba(120, 120, 120, 0.55) 50%,
        rgba(120, 120, 120, 0.45) 75%,
        transparent 88%
    );
    pointer-events: none;
    transform: translateY(0);
}
.tl-cta {
    max-width: 680px;
    margin: 2rem auto 0;
    padding: 0 1rem;
}
.cta-card {
    width: 100%;
    background: radial-gradient(
            480px 300px at 22% 50%,
            rgba(0, 225, 164, 0.1),
            rgba(0, 225, 164, 0.05) 60%,
            transparent 70%
        ),
        linear-gradient(180deg, rgba(10, 40, 34, 0.9), rgba(10, 36, 31, 0.95));
    border: 1.5px solid rgba(0, 225, 164, 0.7);
    border-radius: 16px;
    box-shadow: 0 0 22px rgba(0, 225, 164, 0.12), 0 8px 22px rgba(0, 0, 0, 0.35);
    padding: 1.2rem 1.4rem;
    color: #eafff8;
    display: grid;
    gap: 0.28rem;
    justify-items: center;
    text-align: center;
    cursor: pointer;
    transition: transform 0.22s, box-shadow 0.22s, background 0.35s;
    position: relative;
    overflow: hidden;
}
.cta-card::after {
    content: "";
    position: absolute;
    inset: -30% -15%;
    background: radial-gradient(
        58% 38% at 50% 55%,
        rgba(0, 255, 200, 0.18),
        rgba(0, 255, 200, 0) 70%
    );
    opacity: 0;
    transition: opacity 0.35s;
}
.cta-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 225, 164, 0.22),
        0 18px 36px rgba(0, 0, 0, 0.45);
}
.cta-card:hover::after {
    opacity: 1;
}

/* ====== VOICES ====== */
.voices {
    padding: 48px 16px;
}
.container {
    max-width: var(--container);
    margin: 0 auto;
}
.voices-title {
    text-align: center;
    color: var(--orange);
    font-weight: 900;
    font-size: clamp(26px, 3.4vw, 42px);
}
.voices-sub {
    text-align: center;
    color: #cfd3d6;
    margin: 8px 0 20px;
}
.voice-map {
    position: relative;
    margin: 18px auto 0;
    max-width: 1100px;
    min-height: 220px;
}
.vnode {
    position: relative;
    display: inline-grid;
    place-items: center;
    margin: 14px 28px;
    text-decoration: none;
}
.vnode .dot {
    width: 92px;
    height: 92px;
    border-radius: 50%;
    border: 2px solid rgba(255, 140, 20, 0.7);
    background: #161616;
    box-shadow: 0 0 0 3px rgba(255, 140, 20, 0.15),
        0 14px 40px rgba(255, 140, 20, 0.25);
}
.vnode .play {
    position: absolute;
    color: #ffb36d;
    font-weight: 900;
    font-size: 28px;
}
.vnode .label {
    position: absolute;
    top: 100%;
    margin-top: 10px;
    color: #e8e8ea;
    font-size: 13px;
}
.vnode .label b {
    opacity: 0.7;
    margin-right: 6px;
}
.vnode:hover .dot {
    transform: scale(1.06);
    box-shadow: 0 0 0 6px rgba(255, 140, 20, 0.25),
        0 18px 46px rgba(255, 140, 20, 0.35);
    transition: 0.25s;
}
.wires {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.wire {
    fill: none;
    stroke: rgba(255, 160, 60, 0.35);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-dasharray: 6 8;
    animation: wire 6s ease-in-out infinite;
}
.wire--delay {
    animation-delay: -2.5s;
}
@keyframes wire {
    0% {
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dashoffset: 36;
    }
    100% {
        stroke-dashoffset: 0;
    }
}
.vnode.v2 {
    display: block;
    margin-left: 90px;
    margin-top: 24px;
}

/* ====== PRICING (NOVOS CARDS EMPILHADOS) ====== */
.pricing {
    padding: 48px 16px 72px;
}
.pricing-title {
    text-align: center;
    font-weight: 900;
    letter-spacing: 0.4px;
    color: #ffd8b3;
    font-size: clamp(28px, 3.6vw, 44px);
}
.pricing-sub {
    text-align: center;
    color: #c9c9c9;
    max-width: 840px;
    margin: 10px auto 26px;
    font-size: clamp(14px, 1.4vw, 18px);
}

.p-stack {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}

/* Card base – dark, com brilho por plano */
.p-card.p-full {
    --accent: #888;
    background: radial-gradient(
            600px 280px at 12% -10%,
            rgba(255, 255, 255, 0.04),
            transparent 60%
        ),
        linear-gradient(180deg, rgba(14, 14, 16, 0.95), rgba(10, 10, 12, 0.98));
    border: 1px solid
        color-mix(in srgb, var(--accent) 40%, rgba(255, 255, 255, 0.08));
    border-radius: 16px;
    padding: 18px 16px 20px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.p-card.p-full:hover {
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.55),
        0 0 0 1px color-mix(in srgb, var(--accent) 22%, transparent) inset;
    transform: translateY(-2px);
    transition: 0.25s ease;
}

/* Card EPIC - com sombra laranja intensa */
.p-card.p-epic {
    position: relative;
    border-radius: 12px;
    background: #0d0d0d; /* fundo escuro para destacar o glow */
    box-shadow: 0 0 20px rgba(255, 140, 0, 0.4),
        /* brilho interno suave */ 0 0 40px rgba(255, 140, 0, 0.35),
        /* brilho intermediário */ 0 0 70px rgba(255, 140, 0, 0.3); /* espalhamento mais largo */
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    border: 1px solid rgba(255, 140, 0, 0.4);
}

/* Efeito hover – intensifica o brilho laranja */
.p-card.p-epic:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 25px rgba(255, 160, 0, 0.6), 0 0 60px rgba(255, 160, 0, 0.5),
        0 0 90px rgba(255, 160, 0, 0.4);
}

/* Card Express - com sombra verde intensa */
.p-card.p-express {
    position: relative;
    border-radius: 12px;
    background: #0d0d0d; /* fundo escuro para destacar o glow */
    box-shadow: 0 0 20px rgba(0, 255, 100, 0.4),
        /* brilho suave verde */ 0 0 40px rgba(0, 255, 100, 0.3),
        /* brilho mais largo */ 0 0 60px rgba(0, 255, 100, 0.2); /* espalhamento distante */
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
/* Efeito hover – intensifica o brilho verde */
.p-card.p-express:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 25px rgba(0, 255, 120, 0.6), 0 0 60px rgba(0, 255, 120, 0.5),
        0 0 90px rgba(0, 255, 120, 0.4);
}

.p-card.p-couple {
    position: relative;
    border-radius: 12px;
    background: #0d0d0d; /* fundo escuro para destacar o glow */
    box-shadow: 0 0 20px rgba(255, 20, 150, 0.4),
        /* brilho rosa suave */ 0 0 40px rgba(255, 20, 150, 0.3),
        /* brilho mais largo */ 0 0 60px rgba(255, 20, 150, 0.2); /* espalhamento distante */
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
/* Efeito hover – intensifica o brilho rosa */
.p-card.p-couple:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 25px rgba(255, 50, 180, 0.6),
        0 0 60px rgba(255, 50, 180, 0.5), 0 0 90px rgba(255, 50, 180, 0.4);
}

/* Plan modifiers */
.p-epic {
    --accent: #ff8a3d;
}
.p-express {
    --accent: #00b387;
}
.p-couple {
    --accent: #ff4f8e;
}

/* Banner */
.p-banner {
    display: grid;
    grid-template-columns: 42px 1fr;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 12px;
    color: #fff;
    font-weight: 800;
    margin-bottom: 10px;
    box-shadow: 0 10px 26px color-mix(in srgb, var(--accent) 28%, transparent);
}
.p-banner--epic {
    background: linear-gradient(135deg, #ff9f5c, #ff7f34);
}
.p-banner--express {
    background: linear-gradient(135deg, #00ce9b, #00b387);
}
.p-banner--couple {
    background: linear-gradient(135deg, #ff6aa6, #ff4f8e);
}
.p-banner-emoji {
    font-size: 22px;
}
.p-banner-title {
    font-size: 1.05rem;
    line-height: 1;
}
.p-banner-sub {
    font-weight: 600;
    opacity: 0.9;
}

/* Badge line */
.p-badge-line {
    display: flex;
    justify-content: center;
    margin: 6px 0 10px;
}
.p-badge {
    border: 1px solid color-mix(in srgb, var(--accent) 60%, #000);
    background: color-mix(in srgb, var(--accent) 12%, #0c0c0c);
    color: color-mix(in srgb, var(--accent) 90%, #fff);
    border-radius: 999px;
    padding: 8px 14px;
    font-weight: 900;
    letter-spacing: 0.2px;
}

/* Currency selector (reusa estilo antigo, com cor por plano) */
.p-cur {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin: 8px 0 10px;
}
.p-cur .currency-btn {
    background: #0f0f12;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    padding: 7px 12px;
    font-weight: 700;
    color: #e8e8ea;
    cursor: pointer;
    transition: all 0.2s ease;
}
.p-cur .currency-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}
.p-cur .currency-btn.active {
    color: #0b0b0d;
    background: var(--accent);
    border-color: transparent;
    box-shadow: 0 6px 16px color-mix(in srgb, var(--accent) 35%, transparent);
}

/* Price */
.p-price {
    margin: 6px 0 12px;
    text-align: center;
}
.p-strike {
    color: #a9a9b0;
    text-decoration: line-through;
    margin-bottom: 2px;
}
.p-value {
    font-weight: 900;
    font-size: clamp(28px, 4.4vw, 40px);
    color: var(--accent);
}
.p-value .num {
    margin-left: 6px;
}
.p-note {
    font-size: 0.92rem;
    color: #c9cbd2;
    opacity: 0.85;
    margin-top: 4px;
}

/* Benefits – duas variantes */
.p-benefits {
    margin: 12px auto 16px;
    max-width: 760px;
    list-style: none;
    color: #e7e7ea;
}
.p-benefits li {
    padding: 10px 6px;
}
.p-benefits--check li,
.p-benefits--dash li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.p-benefits--check li:last-child,
.p-benefits--dash li:last-child {
    border-bottom: none;
}
.p-benefits--check li {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Couple blocks */
.p-block {
    border-radius: 14px;
    padding: 14px 14px 6px;
    margin: 10px auto;
    max-width: 860px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.p-block header {
    font-weight: 900;
    margin-bottom: 6px;
}
.p-block--blue {
    background: linear-gradient(
        180deg,
        rgba(0, 40, 80, 0.25),
        rgba(0, 20, 50, 0.18)
    );
    border-color: rgba(40, 140, 255, 0.28);
}
.p-block--rose {
    background: radial-gradient(
            600px 280px at 15% -20%,
            rgba(255, 60, 140, 0.18),
            transparent 70%
        ),
        linear-gradient(180deg, rgba(70, 0, 30, 0.25), rgba(40, 0, 20, 0.18));
    border-color: rgba(255, 60, 140, 0.28);
}
.p-block--shared {
    background: linear-gradient(
        180deg,
        rgba(60, 20, 60, 0.25),
        rgba(40, 10, 40, 0.18)
    );
    border-color: rgba(200, 120, 220, 0.28);
}

/* Footnotes */
.p-footnote {
    max-width: 900px;
    margin: 12px auto 0;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 10px 12px;
    color: #d8d8de;
    font-size: 0.92rem;
}

/* ====== FORMA DE PAGAMENTOS (NOVO) ====== */
.payment {
    padding: 40px 16px 72px;
}
.pm-wrap {
    max-width: var(--container);
    margin: 0 auto 18px;
    padding: 16px;
    border-radius: 14px;
    background: radial-gradient(
            500px 140px at 50% -40px,
            rgba(255, 140, 20, 0.15),
            rgba(255, 140, 20, 0) 70%
        ),
        linear-gradient(180deg, rgba(32, 18, 6, 0.35), rgba(16, 10, 4, 0.4));
    border: 1px solid rgba(255, 140, 20, 0.18);
    box-shadow: 0 24px 60px rgba(255, 140, 20, 0.08);
}
.pm-title {
    text-align: center;
    margin-bottom: 12px;
    font-weight: 800;
}
.pm-chips {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}
.pm-chip {
    background: rgba(255, 140, 20, 0.06);
    border: 1px solid rgba(255, 140, 20, 0.28);
    padding: 10px 16px;
    border-radius: 999px;
    color: #ffd7b1;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    box-shadow: 0 0 0 2px rgba(255, 140, 20, 0.08) inset,
        0 8px 24px rgba(255, 140, 20, 0.08);
}
.pm-chip:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 0 2px rgba(255, 140, 20, 0.16) inset,
        0 14px 36px rgba(255, 140, 20, 0.14);
}
.pm-chip.active {
    background: rgba(255, 140, 20, 0.18);
}

.terms {
    max-width: var(--container);
    margin: 16px auto 0;
    background: #121212;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}
.terms-title {
    text-align: center;
    color: #9fffe9;
    font-weight: 800;
    margin-bottom: 14px;
}

.terms-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 22px;
    align-items: center;
    padding: 18px;
    border-radius: 14px;
    background: radial-gradient(
            600px 260px at 6% -30%,
            rgba(0, 225, 164, 0.06),
            transparent 60%
        ),
        radial-gradient(
            600px 260px at 94% -30%,
            rgba(0, 225, 164, 0.06),
            transparent 60%
        ),
        linear-gradient(180deg, rgba(8, 8, 8, 0.95), rgba(12, 12, 12, 0.98));
    overflow: hidden;
}

/* Proximity Glow Cards */
.paycard {
    --mx: 0px;
    --my: 0px;
    --p: 0;
    position: relative;
    isolation: isolate;
    background: linear-gradient(
        180deg,
        rgba(20, 20, 20, 0.7),
        rgba(18, 18, 18, 0.8)
    );
    border: 1px solid rgba(160, 160, 160, 0.2);
    border-radius: 16px;
    padding: 18px 18px 22px;
    min-height: 280px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
    transition: transform 0.25s ease, border-color 0.25s ease,
        box-shadow 0.25s ease;
    overflow: hidden;
}
.paycard:focus-visible {
    outline: 2px solid #00e1a4;
    outline-offset: 2px;
}
.pc-outline {
    position: absolute;
    inset: 0;
    border-radius: 16px;
    pointer-events: none;
    background: radial-gradient(
        160px 160px at var(--mx) var(--my),
        color-mix(
            in srgb,
            var(--green-strong) calc(60% * var(--p)),
            transparent
        ),
        transparent 70%
    );
    opacity: 1;
    transition: opacity 0.2s;
}
.paycard:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 225, 164, 0.45);
    box-shadow: 0 20px 40px rgba(0, 225, 164, 0.1),
        0 0 0 1px rgba(0, 225, 164, 0.12) inset;
}

.paycard::after {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: 15px;
    pointer-events: none;
    background: linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.02),
            rgba(255, 255, 255, 0.01)
        ),
        radial-gradient(
            220px 160px at var(--mx) var(--my),
            rgba(0, 225, 164, calc(0.25 * var(--p))),
            transparent 65%
        );
    mix-blend-mode: screen;
}

.pc-top {
    display: flex;
    justify-content: flex-start;
}
.pc-badge {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    font-weight: 900;
    background: radial-gradient(
        circle at 30% 30%,
        #7fffe0,
        #00d9a6 60%,
        #009e7a
    );
    color: #071a14;
    box-shadow: 0 10px 26px rgba(0, 225, 164, 0.25),
        0 0 0 3px rgba(0, 225, 164, 0.18);
}
.pc-body {
    display: grid;
    gap: 10px;
    justify-items: center;
    text-align: center;
    margin-top: 12px;
}
.pc-emoji {
    font-size: 26px;
}
.pc-title {
    font-size: 1.1rem;
    font-weight: 800;
}
.pc-percent {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 900;
    color: #30f0bf;
    letter-spacing: 0.4px;
}
.pc-desc {
    color: #cfd6d3;
    opacity: 0.95;
}

/* seta entre os cards */
.step-arrow {
    font-size: 28px;
    color: #6ef2cf;
    opacity: 0.85;
}

/* ====== BREAKPOINTS ====== */
@media (max-width: 1060px) {
    :root {
        --container: 960px;
    }
}
@media (max-width: 860px) {
    .timeline .tl-item {
        grid-template-columns: 1fr;
        gap: 1.3rem;
        padding: 1.8rem 1rem;
    }
}
@media (max-width: 760px) {
    :root {
        --container: 92vw;
    }
    .terms-grid {
        grid-template-columns: 1fr;
    }
    .step-arrow {
        display: none;
    }
}

/* ====== Motion preferences ====== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

/* ==== Estilos do CTA (apenas o necessário para o botão/efeitos) ==== */
/* ======== CTA Heroico ======== */
/* ======== SEÇÃO CTA (contexto) ======== */
#stats {
    padding: 4rem 1rem;
    text-align: center;
    color: #fff;
    background: radial-gradient(circle at 50% 0%, #0c0c0c 0%, #000 100%);
    position: relative;
}
.stats-copy {
    max-width: 720px;
    margin: 0 auto;
}
.stats-title {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 1rem;
}
.stats-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #d9d9d9;
}

/* ===== CTA BUTTON (mesmo visual) ===== */
.cta-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 2.5rem;
    gap: 0.75rem;
}
.cta-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 3rem;
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: 0.02em;
    border: none;
    border-radius: 9999px;
    color: #fff;
    background: linear-gradient(90deg, #00e676, #00bfa5);
    cursor: pointer;
    overflow: hidden;
    text-transform: uppercase;
    box-shadow: 0 0 25px rgba(0, 255, 170, 0.6), 0 0 70px rgba(0, 255, 170, 0.3);
    transition: transform 0.25s ease, box-shadow 0.3s ease;
}
.cta-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 0 40px rgba(0, 255, 200, 0.8),
        0 0 100px rgba(0, 255, 180, 0.4);
}
.cta-text {
    position: relative;
    z-index: 2;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}
.cta-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.35),
        transparent
    );
    transform: translateX(-100%);
    animation: move-shine 3s linear infinite;
    z-index: 1;
    mix-blend-mode: screen;
}
.cta-ring {
    position: absolute;
    inset: -4px;
    border-radius: 9999px;
    border: 2px solid rgba(0, 255, 180, 0.4);
    animation: ring-pulse 2.5s ease-in-out infinite;
    z-index: 0;
}
.cta-subtext {
    color: #b7ffe7;
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
}
@keyframes move-shine {
    0% {
        transform: translateX(-100%);
    }
    50% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}
@keyframes ring-pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.25);
        opacity: 0.4;
    }
    100% {
        transform: scale(1);
        opacity: 0.8;
    }
}
@media (prefers-reduced-motion: reduce) {
    .cta-glow,
    .cta-ring {
        animation: none;
    }
}

/* ======== MODAL ======== */
.modal-overlay[hidden] {
    display: none;
}
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(2px);
    display: grid;
    place-items: center;
    padding: 1rem;
}
.modal-content {
    width: min(560px, 96vw); /* maior que antes */
    max-height: 92vh; /* controla a rolagem */
    background: linear-gradient(180deg, #1a1a1a, #121212);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 24px 26px 20px;
    position: relative;
    font-size: 1.1rem; /* texto ligeiramente maior */
    line-height: 1.55;
    overflow: hidden;
    animation: fadeIn 0.35s ease forwards;
}
.modal-content.modal-lg {
    width: min(600px, 96vw);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 12px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: #222;
    color: #fff;
    font-size: 1.35rem;
    cursor: pointer;
    transition: background 0.2s ease;
}
.modal-close:hover {
    background: #2a2a2a;
}

.modal-title {
    margin-top: 6px;
    font-size: 1.7rem;
    font-weight: 800;
    color: #ff8a3d;
}
.modal-subtitle {
    font-size: 1.05rem;
    color: #cfcfcf;
    margin: 4px 0 14px;
}

/* Corpo rolável */
.modal-body {
    max-height: calc(92vh - 130px);
    overflow-y: auto;
    padding-right: 0.4rem;
    scrollbar-width: thin;
    scrollbar-color: #00e676 #1a1a1a;
}
.modal-body::-webkit-scrollbar {
    width: 7px;
}
.modal-body::-webkit-scrollbar-thumb {
    background: #00e676;
    border-radius: 6px;
}
.modal-body::-webkit-scrollbar-track {
    background: #1a1a1a;
}

/* ======= CAMPOS ======= */
.field-label {
    display: block;
    margin: 0.8rem 0 0.4rem;
    font-size: 1.05rem;
    color: #f1f1f1;
    text-align: left;
}
.input,
.select {
    width: 100%;
    background: #1d1d1d;
    border: 1px solid #3a3a3a;
    border-radius: 12px;
    color: #f5f5f5;
    padding: 1rem 0.95rem;
    outline: none;
    font-size: 1.05rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.input:focus,
.select:focus {
    border-color: #00e676;
    box-shadow: 0 0 0 3px rgba(0, 230, 118, 0.15);
}
.hidden {
    display: none;
}

/* DATA + ÍCONE 🗓 */
.date-wrap {
    position: relative;
    display: flex;
    align-items: center;
}
.date-icon-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    color: #00e676;
    opacity: 0.9;
    transition: opacity 0.2s, transform 0.15s;
}
.date-icon-btn:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.08);
}
.date-icon-btn:focus-visible {
    outline: 2px solid #9af0cd;
    outline-offset: 2px;
}

/* TELEFONE */
.phone-row {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 0.65rem;
}

/* PACOTES (seleção exclusiva) */
.packages {
    display: grid;
    gap: 0.7rem;
    margin-top: 0.2rem;
}
.pkg {
    display: flex;
    flex-direction: column;
    gap: 3px;
    align-items: center;
    justify-content: center;
    border: 1px solid #3a3a3a;
    background: #161616;
    border-radius: 14px;
    padding: 1.05rem 0.95rem;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
    font-size: 1.05rem;
}
.pkg:hover {
    border-color: #00bfa5;
}
.pkg[aria-pressed="true"] {
    border-color: #00e676;
    box-shadow: 0 0 0 3px rgba(0, 230, 118, 0.15);
    transform: translateY(-1px);
}
.pkg-title {
    font-weight: 800;
    color: #ffd9be;
}
.pkg-sub {
    font-size: 0.95rem;
    color: #c8c8c8;
}

/* PESSOAS */
.people-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.1rem;
    background: #161616;
    border: 1px solid #3a3a3a;
    border-radius: 14px;
    padding: 0.65rem;
}
.counter-btn {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    border: 1px solid #3a3a3a;
    background: #222;
    color: #fff;
    font-size: 1.6rem;
    cursor: pointer;
    transition: border-color 0.2s;
}
.counter-btn:hover {
    border-color: #00bfa5;
}
#peopleCount {
    min-width: 2ch;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 800;
}

/* AÇÕES */
.actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin-top: 1rem;
}
.send {
    border: none;
    border-radius: 14px;
    padding: 1.05rem 1.15rem;
    font-weight: 800;
    font-size: 1.08rem;
    cursor: pointer;
    transition: filter 0.2s, transform 0.15s;
}
.send:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
}
.send-whatsapp {
    background: #25d366;
    color: #03210f;
}
.send-email {
    background: #ff9e54;
    color: #3c1f05;
}

.whats-fab {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: #25d366;
    display: grid;
    place-items: center;
    cursor: pointer;
    z-index: 10001;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35),
        0 0 0 3px rgba(37, 211, 102, 0.2);
    transition: transform 0.18s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.whats-fab img {
    width: 28px;
    height: 28px;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.35));
}
.whats-fab:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.45),
        0 0 0 4px rgba(37, 211, 102, 0.26);
}
/* ====== TESTIMONIALS (loop contínuo, sem gaps) ====== */
:root {
    --t-gap: clamp(14px, 2vw, 22px);
    --t-card-w: clamp(280px, 36vw, 420px);
    --t-card-h: clamp(160px, 22vw, 190px);
    --t-speed: 85; /* px/s - velocidade */
}

.testimonials {
    position: relative;
    padding: 48px 16px 64px;
    background: radial-gradient(
            900px 260px at 10% -20px,
            rgba(255, 140, 20, 0.08),
            transparent 60%
        ),
        linear-gradient(180deg, #0b0b0b, #0a0a0a);
    overflow: hidden;
}

.t-head {
    text-align: center;
    margin: 0 auto 18px;
    max-width: 1000px;
    padding: 0 8px;
}
.t-title {
    color: var(--orange);
    font-weight: 900;
    letter-spacing: 0.3px;
    font-size: clamp(26px, 3.6vw, 44px);
}
.t-sub {
    color: #cfd3d6;
    margin-top: 8px;
}

.t-rail {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 16px auto 0;
    padding: 6px 2px;
    /* opcional: fade nas extremidades */
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0,
        #000 60px,
        #000 calc(100% - 60px),
        transparent 100%
    );
    mask-image: linear-gradient(
        to right,
        transparent 0,
        #000 60px,
        #000 calc(100% - 60px),
        transparent 100%
    );
}

.t-track {
    display: flex;
    align-items: stretch;
    gap: var(--t-gap);
    width: max-content;
    will-change: transform;
    /* anima 0 -> -50% do trilho (2 cópias), garantindo continuidade */
    animation: t-marquee-loop var(--t-duration, 40s) linear infinite;
}

@keyframes t-marquee-loop {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-0.5 * var(--t-total, 2000px)));
    }
}

.t-card {
    flex: 0 0 auto;
    width: var(--t-card-w);
    min-height: var(--t-card-h);
    border-radius: 14px;
    padding: 14px;
    background: radial-gradient(
            420px 240px at 0% 0%,
            rgba(255, 255, 255, 0.05),
            transparent 70%
        ),
        linear-gradient(180deg, rgba(18, 18, 18, 0.92), rgba(12, 12, 12, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(255, 255, 255, 0.03) inset;
    transition: transform 0.22s ease, box-shadow 0.22s ease,
        border-color 0.22s ease;
}
.t-card:hover,
.t-card:focus-within {
    transform: translateY(-3px);
    border-color: var(--orange);
    box-shadow: 0 0 0 1px rgba(255, 140, 20, 0.22),
        0 16px 40px rgba(255, 140, 20, 0.14);
}

.t-top {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 10px;
}
.t-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}
.t-id {
    display: grid;
    line-height: 1.15;
}
.t-name {
    font-weight: 800;
    color: #ffe1c9;
}
.t-country {
    font-size: 0.9rem;
    color: #cfd3d6;
    opacity: 0.9;
}
.t-stars {
    color: #ffb85c;
    letter-spacing: 0.18ch;
    font-size: 1rem;
}
.t-quote {
    margin-top: 10px;
    color: #e7e7ea;
    line-height: 1.55;
}

@media (max-width: 720px) {
    .t-card {
        width: clamp(260px, 78vw, 360px);
    }
}

/* ====== FAQ ====== */
.faq {
    padding: 48px 16px 72px;
    background: radial-gradient(
            900px 260px at 50% -40px,
            rgba(255, 140, 20, 0.1),
            transparent 60%
        ),
        linear-gradient(180deg, #0b0b0b, #0a0a0a);
}
.faq-container {
    max-width: var(--container);
    margin: 0 auto;
}
.faq-title {
    text-align: center;
    color: var(--orange);
    font-weight: 900;
    font-size: clamp(28px, 3.6vw, 44px);
    margin-bottom: 18px;
}

.faq-item {
    background: linear-gradient(
        180deg,
        rgba(16, 16, 16, 0.96),
        rgba(10, 10, 10, 0.98)
    );
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.45);
    margin: 14px 0;
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.faq-item[data-open="true"] {
    border-color: color-mix(
        in srgb,
        var(--orange) 60%,
        rgba(255, 255, 255, 0.12)
    );
    box-shadow: 0 0 0 2px rgba(255, 140, 20, 0.2) inset,
        0 22px 60px rgba(0, 0, 0, 0.55);
}

.faq-header {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    cursor: pointer;
}
.faq-question {
    font-size: clamp(15px, 1.6vw, 18px);
    font-weight: 800;
}
.faq-toggle {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: #181818;
    color: #ffb36d; /* tom laranja claro, igual ao visual */
    font-weight: 900;
    font-size: 18px;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: transform 0.15s ease, border-color 0.2s ease,
        background 0.2s ease;
}
.faq-item[data-open="true"] .faq-toggle {
    background: rgba(255, 140, 20, 0.08);
    border-color: rgba(255, 140, 20, 0.45);
    color: var(--orange);
    transform: rotate(45deg); /* '+' vira 'x' */
}

.faq-answer {
    height: 0;
    overflow: hidden;
    padding: 0 20px;
    color: #cfd3d6;
    transition: height 0.25s ease, padding 0.2s ease;
}
.faq-item[data-open="true"] .faq-answer {
    padding: 10px 20px 18px;
    height: auto; /* será controlado via JS para animar */
}
.faq-answer p {
    line-height: 1.65;
    opacity: 0.95;
}
/* ====== FOOTER ====== */
.footer {
    position: relative;
    padding: 56px 16px 28px;
    background: radial-gradient(
            900px 240px at 12% -60px,
            rgba(255, 140, 20, 0.12),
            transparent 60%
        ),
        radial-gradient(
            900px 240px at 88% -60px,
            rgba(0, 221, 153, 0.1),
            transparent 60%
        ),
        linear-gradient(180deg, #0b0b0b, #090909);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text);
}
.footer-container {
    max-width: var(--container);
    margin: 0 auto;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.7fr 0.9fr;
    gap: 28px;
}
.footer-col {
    min-width: 0;
}

.footer-brand {
    font-weight: 900;
    letter-spacing: 0.3px;
    color: #ffd8b3;
    font-size: clamp(20px, 2.4vw, 28px);
    margin-bottom: 8px;
}
.footer-lead {
    color: #cfd3d6;
    line-height: 1.7;
    margin-bottom: 18px;
}

/* Localização */
.loc-card {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 12px;
    align-items: start;
    background: linear-gradient(
        180deg,
        rgba(16, 16, 16, 0.92),
        rgba(10, 10, 10, 0.96)
    );
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 14px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4);
}
.loc-pin {
    font-size: 22px;
    filter: drop-shadow(0 6px 10px rgba(255, 140, 20, 0.25));
}
.loc-title {
    color: var(--orange);
    font-weight: 900;
    margin-bottom: 6px;
}
.loc-addr {
    font-style: normal;
    color: #dbdde0;
    line-height: 1.6;
}
.loc-link {
    display: inline-block;
    margin-top: 8px;
    color: var(--green-strong);
    font-weight: 800;
    border-bottom: 1px dashed rgba(0, 225, 164, 0.35);
    text-decoration: none;
}
.loc-link:hover {
    filter: brightness(1.1);
}

/* Links rápidos */
.footer-title {
    color: var(--orange);
    font-weight: 900;
    letter-spacing: 0.2px;
    margin-bottom: 10px;
}
.footer-links {
    list-style: none;
}
.footer-links li {
    margin: 10px 0;
}
.footer-links a {
    color: #e8e8ea;
    text-decoration: none;
    font-weight: 700;
    border-bottom: 1px solid transparent;
    transition: color 0.2s, border-color 0.2s, transform 0.15s;
}
.footer-links a:hover {
    color: var(--orange);
    border-color: rgba(255, 140, 20, 0.35);
    transform: translateX(2px);
}

/* Contato + social */
.contact-list {
    list-style: none;
    margin: 0 0 14px;
    padding: 0;
}
.contact-link {
    display: inline-block;
    color: #e8e8ea;
    text-decoration: none;
    padding: 6px 0;
    font-weight: 700;
}
.contact-link:hover {
    color: var(--green-strong);
}

.ig-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    text-decoration: none;
    color: #e8e8ea;
    font-weight: 800;
    transition: transform 0.15s ease, box-shadow 0.25s ease,
        border-color 0.2s ease;
}
.ig-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 140, 20, 0.35);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.4),
        0 0 0 3px rgba(255, 140, 20, 0.12) inset;
}
.ig-icon {
    font-size: 18px;
}
.ig-text {
    opacity: 0.95;
}

/* Divider + bottom */
.footer-divider {
    margin: 26px 0 16px;
    border: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(170, 170, 170, 0.35) 15%,
        rgba(170, 170, 170, 0.45) 50%,
        rgba(170, 170, 170, 0.35) 85%,
        transparent
    );
}
.footer-bottom {
    display: grid;
    gap: 6px;
    justify-items: center;
    text-align: center;
}
.footer-bottom .tourism {
    color: #cfd3d6;
    opacity: 0.85;
    font-size: 0.95rem;
    letter-spacing: 0.2px;
}
.footer-bottom .copy {
    color: #aeb2b7;
    font-size: 0.92rem;
}

/* Responsivo */
@media (max-width: 980px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 720px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .ig-btn {
        width: 100%;
        justify-content: center;
    }
}

/* 📱 Responsividade para telas até 320x568 */
@media screen and (max-width: 800px) {
    .stats-cards {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 0.5rem;
    }

    .stat-card {
        width: 90%;
        max-width: 280px;
        padding: 0.8rem;
    }

    .stat-icon {
        font-size: 1.5rem;
        margin-bottom: 0.4rem;
    }

    .stat-number {
        font-size: 1.4rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .stat-sub {
        font-size: 0.8rem;
    }
}
/* 📱 Esconde a linha verde em telas pequenas (até 568px de altura) */
@media screen and (max-width: 800px) {
    .tl-line-progress {
        display: none !important;
        opacity: 0;
    }
}
/* Linha base e linha de progresso (desktop) */
.tl-line-wrap,
.tl-line-progress {
    transition: opacity 0.3s ease;
}

/* 📱 Esconde a linha vertical (verde e base) em telas pequenas */
@media screen and (max-width: 568px) {
    .tl-line-wrap,
    .tl-line-progress {
        display: none !important;
    }
}

/* 📱 Em telas pequenas (ex: 320×568) */
@media screen and (max-width: 568px) {
    .tl-dot {
        opacity: 0.15; /* quase invisível */
        box-shadow: none; /* remove o brilho */
        background-color: rgba(0, 225, 164, 0.15); /* verde bem suave */
    }
}
