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

:root {
    --c-navy: #1b2456;
    --c-cyan: #c3ece8;
    --c-orange: #f89543;
    --c-pink: #f16aad;
    --c-dark: #08111f;
    --c-white: #ffffff;
    --c-muted: #d9e2ea;
}

body {
    font-family: "Inter", Arial, sans-serif;
    background-color: var(--c-dark);
    color: var(--c-white);
    line-height: 1.6;
}

.container {
    width: min(1100px, 92%);
    margin: 0 auto;
}

section {
    padding: 70px 0;
}

.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background-image:
        linear-gradient(120deg, rgba(8, 17, 31, 0.84), rgba(27, 36, 86, 0.78)),
        url("https://images.unsplash.com/photo-1518509562904-e7ef99cdcc86?auto=format&fit=crop&w=1800&q=80");
    background-size: cover;
    background-position: center;
}

.language-selector {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}

.lang-btn {
    background: rgba(255, 255, 255, 0.12);
    border: 2px solid rgba(255, 255, 255, 0.3);
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    overflow: hidden;
    cursor: pointer;
}

.lang-btn.active {
    border-color: var(--c-white);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.35);
}

.flag-icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(241, 106, 173, 0.2), transparent 45%);
}

.hero-content {
    position: relative;
    text-align: center;
}

.logo {
    width: min(420px, 85vw);
    margin: 0 auto 24px;
    display: block;
}

.kicker {
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--c-cyan);
    margin-bottom: 10px;
    font-size: 0.85rem;
}

h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1.05;
    margin-bottom: 16px;
}

.description {
    width: min(760px, 100%);
    margin: 0 auto 34px;
    color: var(--c-muted);
}

.stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(150px, 230px));
    justify-content: center;
    gap: 16px;
    margin-bottom: 34px;
}

.stat-card {
    background: rgba(195, 236, 232, 0.13);
    border: 1px solid rgba(195, 236, 232, 0.4);
    border-radius: 14px;
    padding: 16px;
}

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
}

.stat-label {
    display: block;
    color: var(--c-cyan);
    font-size: 0.9rem;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    text-decoration: none;
    border-radius: 999px;
    padding: 12px 26px;
    font-weight: 700;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
    opacity: 0.95;
}

.btn-primary {
    color: #1b1b1b;
    background: var(--c-orange);
}

.btn-secondary {
    color: var(--c-white);
    background: transparent;
    border: 2px solid var(--c-pink);
}

.experience {
    background-image:
        linear-gradient(rgba(27, 36, 86, 0.88), rgba(27, 36, 86, 0.8)),
        url("https://images.unsplash.com/photo-1533105079780-92b9be482077?auto=format&fit=crop&w=1800&q=80");
    background-size: cover;
    background-position: center;
}

.experience .container,
.investment .container,
.video .container {
    text-align: center;
}

.experience h2,
.investment h2,
.video h2 {
    font-size: clamp(1.6rem, 3.6vw, 2.5rem);
    margin-bottom: 14px;
}

.experience p {
    max-width: 780px;
    color: var(--c-muted);
}

.investment {
    background: linear-gradient(160deg, #10203a 0%, #162a4a 55%, #27366f 100%);
}

.pricing-card {
    max-width: 540px;
    margin: 24px auto 0;
    padding: 30px;
    border-radius: 18px;
    background: rgba(195, 236, 232, 0.08);
    border: 1px solid rgba(195, 236, 232, 0.3);
    text-align: center;
}

.model-media {
    height: 240px;
    border-radius: 16px;
    margin-bottom: 20px;
    background-color: rgba(8, 17, 31, 0.35);
    background-image: url("imagens/sea-my25-gti-se-noss-m130-teal-blue-metallic-00029sc00-studio-34fr-cu.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.pricing-card h3 {
    color: var(--c-cyan);
    margin-bottom: 8px;
}

.installments {
    color: var(--c-white);
    font-size: 1.08rem;
    font-weight: 700;
}

.cashline {
    color: var(--c-muted);
    margin-top: 10px;
}

.pix {
    color: var(--c-orange);
    font-size: 1.7rem;
    font-weight: 900;
    margin-bottom: 18px;
}

.btn-full {
    width: 100%;
}

.btn-large {
    padding: 16px 34px;
    font-size: 1rem;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.video {
    background-image:
        linear-gradient(rgba(8, 17, 31, 0.78), rgba(8, 17, 31, 0.88)),
        url("https://images.unsplash.com/photo-1544551763-46a013bb70d5?auto=format&fit=crop&w=1800&q=80");
    background-size: cover;
    background-position: center;
    text-align: center;
}

.video p {
    color: var(--c-muted);
    margin-bottom: 20px;
}

.cta {
    background: linear-gradient(180deg, #0a1427 0%, #0e1e39 100%);
    text-align: center;
}

.cta .container,
.cta-title,
.cta-text {
    text-align: center;
}

.cta .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cta-logo {
    width: min(190px, 58vw);
    margin-bottom: 16px;
}

.cta-title {
    font-size: clamp(1.7rem, 4vw, 2.8rem);
    margin-bottom: 10px;
}

.cta-text {
    max-width: 760px;
    margin: 0 auto 24px;
    color: var(--c-muted);
}

.footer {
    background: #070d19;
    padding: 52px 0 28px;
}

.footer-logo {
    width: min(260px, 72vw);
    display: block;
    margin: 0 auto 16px;
}

.footer-tagline {
    text-align: center;
    max-width: 860px;
    margin: 0 auto 24px;
    color: var(--c-muted);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    max-width: 780px;
    margin: 0 auto 24px;
}

.footer-section {
    text-align: center;
}

.footer-title {
    font-size: 1rem;
    margin-bottom: 8px;
}

.footer-text {
    margin-bottom: 4px;
}

.footer-link {
    color: var(--c-pink);
    text-decoration: none;
    font-weight: 600;
}

.footer-copyright {
    text-align: center;
    color: var(--c-muted);
    font-size: 0.82rem;
    opacity: 0.9;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 14px;
}

@media (max-width: 680px) {
    .language-selector {
        top: 14px;
    }

    .lang-btn {
        width: 32px;
        height: 32px;
    }

    section {
        padding: 56px 0;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
    }
}
