/* =========================
   BASE / RESET
   ========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg1: #000326;
    --bg2: #00052F;
    --text: #fff;
    --muted: #E0E0E0;
    --link: #0099EB;
    --linkHover: #51B8FB;

    --g1: #A139FB;
    --g2: #51B8FB;
    --g3: #6D6EEF;

    --card: rgba(255, 255, 255, .05);
    --border: rgba(255, 255, 255, .12);
    --shadow: 0 12px 30px rgba(0, 0, 0, .18);
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: linear-gradient(135deg, var(--bg1), var(--bg2));
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

a {
    color: var(--link);
    text-decoration: none;
    transition: color .25s ease;
}

a:hover {
    color: var(--linkHover);
}

p {
    margin-bottom: 15px;
    font-weight: 300;
    color: var(--muted);
}

h1,
h2,
h3 {
    color: var(--text);
    font-weight: 700;
    margin-bottom: 15px;
}

h2 {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 40px;
    background: linear-gradient(90deg, var(--g1), var(--g2), var(--g3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* =========================
      HEADER (só logo / NÃO sticky)
      ========================= */
.main-header {
    border: 0;
    background: transparent;
    padding: 10px 0 6px;
}

.main-header .container {
    padding-top: 0;
    padding-bottom: 0;
}

.header-logo-only {
    display: flex;
    justify-content: center;
    align-items: center;
}

h1.logo {
    margin: 0;
    padding: 0;
    line-height: 0;
}

h1.logo img {
    height: 124px;
    /* <<< tamanho principal */
    width: auto;
    display: block;
    object-fit: contain;
}

/* =========================
      BOTÕES
      ========================= */
.cta-button {
    display: inline-block;
    color: var(--text);
    padding: 15px 30px;
    border-radius: 999px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 20px;
    transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
    background: linear-gradient(90deg, var(--g1), var(--g2));
    box-shadow: 0 5px 15px rgba(161, 57, 251, .40);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(161, 57, 251, .60);
}

.cta-button.primary {
    background: linear-gradient(90deg, var(--g2), var(--g3));
    box-shadow: 0 5px 15px rgba(81, 184, 251, .40);
}

.cta-button.primary:hover {
    box-shadow: 0 8px 20px rgba(81, 184, 251, .60);
}

.cta-button.ghost {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    box-shadow: none;
}

/* =========================
      SEÇÕES
      ========================= */
section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* =========================
      HERO (grid)
      ========================= */
.hero-section {
    padding: 50px 0 30px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 26px;
    align-items: start;
}

.hero-copy {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 16px;
    padding: 26px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
}

.hero-title {
    text-align: left;
    margin-bottom: 14px;
    font-size: 2.6em;
}

.hero-lead {
    font-size: 1.12em;
    max-width: 560px;
    margin-bottom: 18px;
    color: #E7E7E7;
}

.hero-mini {
    font-size: .95em;
    opacity: .9;
    margin-top: 14px;
}

.hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 12px;
}

/* Chips */
.chips {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.chip {
    font-size: .9em;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .10);
}

.chips-strong {
    margin-top: 10px;
}

.chip.strong {
    background: rgba(81, 184, 251, .10);
    border-color: rgba(81, 184, 251, .22);
}

/* HERO media */
.hero-media {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Wrapper base */
.vsl-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .3);
}

/* HERO: formato shorts (9:16) */
.vsl-wrapper--hero {
    max-width: 380px;
    width: 100%;
    margin: 0 auto;
    aspect-ratio: 9 / 16;
    background: #000;
}

/* Video ocupa tudo */
.vsl-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* ou contain se não quiser crop */
    border: 0;
}

/* Caption */
.vsl-caption {
    font-size: 1.05em;
    color: var(--link);
    font-weight: 600;
    margin-top: 10px;
}


/* =========================
      BENEFÍCIOS
      ========================= */
.benefits-section {
    padding: 40px 0 10px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 14px;
}

.mini-card {
    background: var(--card);
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
}

.mini-card h3 {
    margin-bottom: 8px;
    font-size: 1.2em;
}

.mini-card p {
    margin: 0;
    opacity: .9;
}

/* =========================
      PRODUCT SHOWCASE
      ========================= */
.product-showcase-section {
    padding: 100px 0;
    background: rgba(0, 0, 0, .10);
}

.grid-2-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: center;
}

.product-info {
    text-align: left;
}

.product-info h2 {
    text-align: left;
    font-size: 3em;
    margin-bottom: 25px;
}

.product-info p {
    font-size: 1.1em;
    max-width: 500px;
}

/* Checklist */
.checklist {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
}

.checklist li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 12px;
    margin-bottom: 10px;
}

/* Mockup */
.mockup-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 420px;
}

.floating-mockup {
    max-width: 92%;
    height: auto;
    position: relative;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, .5));
}

.mockup-glow {
    position: absolute;
    width: 70%;
    height: 70%;
    background: radial-gradient(circle, rgba(81, 184, 251, .20), transparent 60%);
    filter: blur(8px);
    border-radius: 999px;
    z-index: 0;
}

.mockup-container img {
    z-index: 1;
}

/* =========================
      PROVA SOCIAL
      ========================= */
.social-proof-section {
    text-align: center;
    background: var(--bg1);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.testimonial-card {
    background: rgba(255, 255, 255, .05);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .2);
    transition: transform .25s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-card p {
    font-style: italic;
    font-size: 1.05em;
    color: #E0E0E0;
    margin-bottom: 15px;
}

.customer-name {
    font-weight: 600;
    color: var(--link);
}

/* =========================
      CONTATO (grid)
      ========================= */
.product-boleto-section {
    background: var(--bg2);
    padding-bottom: 100px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 22px;
    align-items: start;
}

.info-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 20px;
    box-shadow: var(--shadow);
}

.map-link {
    display: inline-block;
    margin-top: 8px;
    font-weight: 700;
}

.boleto-details ul {
    list-style: none;
    margin-top: 20px;
    margin-bottom: 30px;
}

.boleto-details li {
    font-size: 1.05em;
    margin-bottom: 10px;
    color: #E0E0E0;
}

.icon {
    color: var(--linkHover);
    margin-right: 10px;
    font-weight: 700;
}

/* =========================
      LOCALIZAÇÃO + MAPA
      ========================= */
.store-locations-section {
    text-align: center;
    background: rgba(0, 0, 0, .20);
}

.location-copy {
    max-width: 720px;
    margin: 0 auto 28px;
    font-size: 1.05em;
    opacity: .9;
    color: #E7E7E7;
}

.location-grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 26px;
    align-items: stretch;
}

.location-info {
    background: rgba(255, 255, 255, .06);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 22px;
    box-shadow: var(--shadow);
    text-align: left;
}

.location-info h3 {
    margin-bottom: 12px;
    color: var(--linkHover);
}

.map-wrapper {
    position: relative;
    width: 100%;
    min-height: 320px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 14px 40px rgba(0, 0, 0, .35);
}

.map-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* =========================
      FOOTER
      ========================= */
.main-footer {
    padding: 30px 0;
    text-align: center;
    font-size: .9em;
    color: rgba(255, 255, 255, .7);
    border-top: 1px solid rgba(255, 255, 255, .1);
    margin-top: auto;
}

.main-footer a {
    color: rgba(255, 255, 255, .7);
}

.main-footer a:hover {
    color: var(--link);
}

/* =========================
      CTA FIXO (mobile)
      ========================= */
.sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 12px;
    background: rgba(0, 3, 38, .88);
    border-top: 1px solid rgba(255, 255, 255, .10);
    backdrop-filter: blur(10px);
    display: none;
    z-index: 999;
}

.sticky-cta__btn {
    display: block;
    text-align: center;
    padding: 14px 16px;
    border-radius: 14px;
    font-weight: 700;
    color: var(--text);
    background: linear-gradient(90deg, #25D366, var(--g2));
}

/* =========================
      RESPONSIVO
      ========================= */
@media (max-width: 980px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        text-align: center;
    }

    .hero-copy {
        text-align: center;
    }

    .hero-lead {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-ctas {
        justify-content: center;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .location-grid {
        grid-template-columns: 1fr;
    }

    .map-wrapper {
        min-height: 260px;
    }
}

@media (max-width: 768px) {
    h2 {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .sticky-cta {
        display: block;
    }
}

@media (max-width: 600px) {

    /* Header mais compacto */
    .main-header {
        padding: 14px 0 6px;
    }

    /* Mobile: chips escondidos */
    .chips {
        display: none;
    }

    /* Mobile: vídeo vira horizontal (16:9) com “card” */
    .vsl-wrapper--hero {
        max-width: 100%;
        aspect-ratio: 16 / 9;
        background: rgba(255, 255, 255, .04);
        border: 1px solid rgba(255, 255, 255, .10);
        box-shadow: 0 18px 50px rgba(0, 0, 0, .42);
    }

    .vsl-caption {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 15px;
    }

    h1.logo img {
        height: 90px;
    }

    h2 {
        font-size: 1.5em;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: .9em;
    }
}