/* ===================== RESET & BASE ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Poppins', sans-serif;
    color: #303030;
    background: #fff;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; }

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 25px;
}

/* ===================== COLORS ===================== */
.purple { color: #8A00FF; }
.orange { color: #FF4600; }
.bold   { font-weight: 700; }

/* ===================== BUTTONS ===================== */
.btn-green {
    display: inline-block;
    background: #23C714;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 18px 40px;
    border-radius: 10px;
    border-bottom: 5px solid #2B9F18;
    box-shadow: 0 20px 40px -20px rgba(0,0,0,0.3);
    transition: background 0.2s, transform 0.2s;
}
.btn-green:hover { background: #8A00FF; border-color: #7202D1; transform: translateY(-3px); }
.btn-green.btn-large { font-size: 1.5rem; padding: 20px 60px; }
.btn-green.btn-cta   { font-size: 1.4rem; padding: 22px 70px; letter-spacing: 1px; }

.btn-orange {
    display: inline-block;
    background: #FF4600;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 10px 18px;
    border-radius: 8px;
    border-bottom: 3px solid #cc3800;
    transition: background 0.2s, transform 0.2s;
}
.btn-orange:hover { background: #FFD200; color: #303030; transform: translateY(-2px); }

.btn-ghost {
    display: inline-block;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    padding: 8px 14px;
    border-radius: 6px;
    letter-spacing: 0.5px;
    transition: opacity 0.2s;
}
.btn-ghost:hover { opacity: 0.75; }

/* ===================== WAVE DIVIDERS ===================== */
.wave-bottom { position: absolute; bottom: -2px; left: 0; width: 100%; overflow: hidden; line-height: 0; pointer-events: none; }
.wave-bottom svg { display: block; width: 100%; }

/* ===================== HEADER ===================== */
.header {
    position: relative;
    background: #AB4BFC;
    background-image: url('https://alangarcia.com.br/wp-content/uploads/2024/12/header-pattern.png');
    background-position: bottom center;
    background-repeat: no-repeat;
    border-bottom: 2px solid #fff;
    box-shadow: 0 20px 25px -20px rgba(0,0,0,0.2);
    z-index: 10;
    padding-bottom: 40px;
}

.header-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 10px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.logo { width: 160px; margin-bottom: -45px; position: relative; z-index: 2; }

.header-btns { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }

/* ===================== HERO ===================== */
.hero {
    position: relative;
    background: url('https://alangarcia.com.br/wp-content/uploads/2025/02/Capa-pc-labkids.webp') center/cover no-repeat;
    padding: 75px 25px 140px;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.67);
}
.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.hero-sub {
    font-size: 1.1rem;
    color: #e0e0e0;
    max-width: 72%;
    line-height: 1.6;
}

.hero-title {
    font-family: 'Bakbak One', sans-serif;
    font-size: 5rem;
    font-weight: 800;
    line-height: 0.85;
    margin-top: -10px;
}

.video-wrapper {
    width: 72%;
    border: 7px solid rgba(235,235,235,0.85);
    border-radius: 17px;
    overflow: hidden;
    box-shadow: 0 20px 40px -15px rgba(0,0,0,0.37);
    margin: 10px 0;
}

/* ===================== BENEFITS ===================== */
.benefits {
    position: relative;
    background: #8A00FF;
    padding: 75px 0 180px;
    overflow: hidden;
}

.benefit-list {
    list-style: none;
    color: #fff;
    font-size: 1.05rem;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.card {
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border: 1px solid rgba(255,255,255,0.16);
    transition: box-shadow 0.2s;
}
.card:hover { box-shadow: 0 25px 20px -15px rgba(0,0,0,0.2); }
.card img { width: 25%; }
.card p { font-size: 0.9rem; color: #4B4B4B; line-height: 1.5; }

/* ===================== DEVICES ===================== */
.devices {
    position: relative;
    background: #FDF6EC;
    padding: 80px 0 160px;
    overflow: hidden;
    text-align: center;
}

.badge-orange {
    display: inline-block;
    background: #FF4600;
    color: #fff;
    font-size: 0.85rem;
    padding: 6px 18px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.devices h2 {
    font-size: 1.8rem;
    margin-bottom: 40px;
    line-height: 1.3;
}

.devices-flex {
    display: flex;
    align-items: center;
    gap: 40px;
    text-align: left;
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.devices-img { width: 45%; border-radius: 10px; }

.devices-text h3 {
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 24px;
    color: #303030;
}

/* ===================== PAIN ===================== */
.pain {
    position: relative;
    background: #3a3a3a;
    padding: 80px 0 160px;
    overflow: hidden;
    color: #fff;
}

.pain-flex {
    display: flex;
    align-items: center;
    gap: 50px;
}

.pain-img { width: 40%; border-radius: 12px; flex-shrink: 0; }

.pain-text h2 {
    font-size: 1.6rem;
    line-height: 1.5;
    margin-bottom: 24px;
}

.pain-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    font-size: 1rem;
    line-height: 1.5;
}

/* ===================== BRAND ===================== */
.brand {
    position: relative;
    background: #FDF6EC;
    padding: 80px 0 160px;
    overflow: hidden;
}

.brand-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.brand-center h2 { font-size: 2rem; }
.brand-logo { width: 220px; }
.brand-ecover { width: 300px; border-radius: 10px; }

/* ===================== PREVIEW VIDEOS ===================== */
.preview {
    position: relative;
    background: #2a2a2a;
    padding: 80px 0 160px;
    overflow: hidden;
    text-align: center;
    color: #fff;
}

.preview .orange { font-size: 1.2rem; margin-bottom: 8px; }
.preview-sub { font-size: 0.95rem; color: #ccc; max-width: 680px; margin: 0 auto 12px; line-height: 1.6; }
.preview h2 { font-size: 1.8rem; margin-bottom: 40px; color: #fff; }

.videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
}

.video-item { border-radius: 8px; overflow: hidden; }

/* ===================== BONUS ===================== */
.bonus {
    background: #1e1e1e;
    padding: 80px 0;
    color: #fff;
}

.bonus-flex {
    display: flex;
    align-items: center;
    gap: 50px;
}

.bonus-img { width: 40%; flex-shrink: 0; }

.bonus-text h2 { font-size: 1.8rem; line-height: 1.4; margin-bottom: 16px; }
.bonus-text p  { font-size: 0.95rem; line-height: 1.7; color: #ccc; }

/* ===================== OFFER ===================== */
.offer {
    background: #FDF6EC;
    padding: 80px 0;
    text-align: center;
}

.offer-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.offer h2 { font-size: 2.2rem; color: #303030; }
.offer h3 { font-size: 1.4rem; color: #303030; }
.offer-img { width: 320px; margin: 10px auto; }
.price-old { font-size: 1.1rem; color: #888; }
.price-new { font-size: 2rem; color: #303030; }
.offer-tag  { font-size: 1.3rem; color: #8A00FF; }
.offer-info { font-size: 1rem; color: #555; }
.offer-security  { font-size: 0.9rem; color: #555; max-width: 500px; }
.offer-guarantee { font-size: 0.9rem; color: #555; max-width: 600px; line-height: 1.7; }

/* ===================== FAQ ===================== */
.faq {
    background: #fff;
    padding: 80px 0;
}

.faq h2 { font-size: 1.2rem; color: #FF4600; margin-bottom: 8px; }
.faq h3 { font-size: 2rem; margin-bottom: 40px; }

.accordion { display: flex; flex-direction: column; gap: 12px; }

details {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
}

summary {
    padding: 18px 24px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    background: #f9f9f9;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
summary::after { content: '+'; font-size: 1.4rem; color: #8A00FF; }
details[open] summary::after { content: '−'; }

details p {
    padding: 16px 24px;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

/* ===================== FOOTER ===================== */
.footer {
    background: #1a1a1a;
    color: #aaa;
    text-align: center;
    padding: 40px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.footer-logo { width: 120px; }
.footer-links { display: flex; gap: 12px; align-items: center; font-size: 0.85rem; }
.footer-links a { color: #aaa; transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer p { font-size: 0.8rem; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
    .cards-grid      { grid-template-columns: 1fr; }
    .videos-grid     { grid-template-columns: repeat(2, 1fr); }
    .devices-flex    { flex-direction: column; }
    .devices-img     { width: 100%; }
    .pain-flex       { flex-direction: column; }
    .pain-img        { width: 100%; }
    .bonus-flex      { flex-direction: column; }
    .bonus-img       { width: 100%; }
}

@media (max-width: 600px) {
    .hero { padding: 35px 20px 120px; }
    .hero-sub   { max-width: 100%; font-size: 0.9rem; }
    .hero-title { font-size: 3rem; }
    .video-wrapper { width: 100%; }
    .logo  { margin-bottom: -38px; width: 26%; min-width: 100px; }
    .header-inner { justify-content: space-evenly; }
    .videos-grid { grid-template-columns: 1fr; }
    .btn-green.btn-large { font-size: 1.1rem; padding: 15px 30px; }
    .btn-green.btn-cta   { font-size: 1.1rem; padding: 18px 40px; }
    .devices h2 { font-size: 1.3rem; }
    .offer h2 { font-size: 1.6rem; }
}

/* ===================== CHECKOUT POPUP ===================== */
.checkout-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(3px);
}
.checkout-overlay[hidden] { display: none; }

.checkout-modal {
    background: #fff;
    border-radius: 20px;
    padding: 40px 36px;
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.checkout-close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #888;
    line-height: 1;
}
.checkout-close:hover { color: #FF4600; }

.checkout-header { text-align: center; margin-bottom: 28px; }
.checkout-logo   { width: 130px; margin: 0 auto 10px; }
.checkout-product { font-weight: 600; font-size: 1rem; color: #303030; }
.checkout-price  { font-size: 1.6rem; font-weight: 800; color: #8A00FF; margin-top: 4px; }
.checkout-price-old { font-size: 0.9rem; color: #aaa; margin-left: 8px; }

.checkout-form { display: flex; flex-direction: column; gap: 16px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: #555; }
.form-group input {
    padding: 12px 14px;
    border: 1.5px solid #ddd;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.2s;
    outline: none;
}
.form-group input:focus { border-color: #8A00FF; }

.stripe-card-element {
    padding: 12px 14px;
    border: 1.5px solid #ddd;
    border-radius: 8px;
    transition: border-color 0.2s;
}
.stripe-card-element.StripeElement--focus { border-color: #8A00FF; }

.card-errors { color: #e53e3e; font-size: 0.85rem; min-height: 18px; }

.checkout-submit { width: 100%; justify-content: center; margin-top: 6px; cursor: pointer; border: none; font-family: 'Poppins', sans-serif; }
.checkout-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.checkout-security { text-align: center; font-size: 0.78rem; color: #aaa; margin-top: 8px; }

/* Pix result */
.pix-result { display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; }
.pix-instructions { font-size: 0.95rem; color: #303030; font-weight: 600; }
.pix-qr { width: 200px; border-radius: 10px; border: 2px solid #eee; }
.pix-copy-wrap { display: flex; gap: 8px; width: 100%; }
.pix-code { flex: 1; padding: 10px 12px; border: 1.5px solid #ddd; border-radius: 8px; font-size: 0.75rem; color: #555; }
.pix-timer { font-size: 0.9rem; color: #555; }
.pix-waiting { font-size: 0.85rem; color: #8A00FF; animation: pulse 1.5s infinite; }

@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }

/* Success */
.checkout-success { text-align: center; padding: 20px 0; }
.success-icon { font-size: 3rem; margin-bottom: 16px; }
.checkout-success h3 { font-size: 1.4rem; color: #23C714; margin-bottom: 10px; }
.checkout-success p  { font-size: 0.95rem; color: #555; line-height: 1.6; }

/* ===================== EN-SPECIFIC STYLES ===================== */

/* Hero EN – fundo claro com padrão */
.hero-en {
    background: url('https://alangarcia.com.br/wp-content/uploads/2024/12/header-pattern.png') center/cover no-repeat, #f5f0ff;
    padding: 60px 25px 140px;
    position: relative;
    overflow: hidden;
}
.hero-en::before { display: none; }
.hero-en .hero-sub   { color: #303030; }
.hero-en .hero-title { color: #303030; }

/* SVG wave dividers */
.wave-bottom-svg {
    position: absolute;
    bottom: -2px; left: 0;
    width: 100%; overflow: hidden;
    line-height: 0; pointer-events: none;
}
.wave-bottom-svg svg { display: block; width: 100%; height: 80px; }

/* Brand tag */
.brand-tag { font-size: 1.1rem; font-weight: 500; color: #303030; }

/* Launch label */
.launch-label { font-size: 1.1rem; font-weight: 600; color: #303030; margin-bottom: 8px; }
.underline-orange { color: #FF4600; text-decoration: underline; }

/* Bonus section */
.bonus { position: relative; background: #2C2C2C; padding: 100px 0 160px; overflow: hidden; }
.bonus-inner { position: relative; z-index: 2; }

/* Offer EN */
.offer-en {
    background: #FFFBF8;
    padding: 80px 0 80px;
    text-align: center;
}
.offer-en-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.offer-pill {
    display: inline-block;
    background: #222;
    color: #fff;
    font-size: 0.85rem;
    padding: 6px 22px;
    border-radius: 100px;
}
.offer-en-title { font-size: 1.8rem; color: #303030; }

/* Price card */
.price-card {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #8A00FF 0%, #FF4600 100%);
    border-radius: 15px;
    border: 3px solid #FFD700;
    padding: 20px;
    gap: 20px;
    max-width: 620px;
    width: 100%;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}
.price-card-img { flex: 0 0 55%; }
.price-card-img img { width: 100%; border-radius: 8px; }
.price-card-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    color: #fff;
}
.price-card-old { font-size: 1rem; opacity: 0.85; }
.price-card-new { font-size: 1.6rem; font-weight: 700; line-height: 1.2; }
.price-card-tag { font-size: 1.3rem; font-weight: 700; }
.price-card-sub { font-size: 0.75rem; font-weight: 300; opacity: 0.85; }

.btn-yellow {
    display: inline-block;
    background: #FFDF00;
    color: #000;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 24px;
    border-radius: 8px;
    box-shadow: 7px 7px 0 rgba(15,13,0,0.39);
    transition: background 0.2s, transform 0.2s;
    width: 100%;
    text-align: center;
}
.btn-yellow:hover { background: #09C770; color: #fff; transform: translateY(-2px); }

.offer-en-security { font-size: 0.85rem; color: #888; }
.offer-en-guarantee {
    background: #333;
    color: #fff;
    padding: 16px 24px;
    border-radius: 0 15px 0 15px;
    max-width: 600px;
    font-size: 0.9rem;
    line-height: 1.7;
    text-align: center;
}

/* FAQ EN */
.faq-en { background: #FDF3EA; }
.faq-badge {
    display: inline-block;
    background: #FF4600;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 5px 20px;
    border-radius: 100px;
    margin-bottom: 12px;
    margin-top: 40px;
}
.faq-en h3 { font-size: 2rem; margin-bottom: 24px; color: #333; }
.faq-box {
    background: #8A00FF;
    border-radius: 15px;
    padding: 10px;
    max-width: 82%;
    margin: 0 auto 30px;
    border: 1px solid rgba(255,123,0,0.43);
}
.faq-box details { border-color: #8A00FF; background: #6200B4; }
.faq-box summary { background: #33353D; color: #fff; }
.faq-box summary::after { color: #fff; }
.faq-box details p { background: #6200B4; color: #fff; }

/* Footer EN */
.footer-en {
    background-image: url('https://alangarcia.com.br/wp-content/uploads/2025/01/header-pattern-1.png');
    background-repeat: no-repeat;
    background-size: initial;
}
.footer-en .footer-logo { margin-top: -114px; width: 200px; }

@media (max-width: 600px) {
    .price-card { flex-direction: column; }
    .price-card-img { flex: unset; width: 100%; }
    .faq-box { max-width: 100%; }
    .footer-en .footer-logo { margin-top: -72px; width: 150px; }
}
