/* === RESET E BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a2e 50%, #16213e 100%);
    color: #ffffff;
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
    min-height: 100vh;
}

/* === SCROLLBAR === */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a2e;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #9f5afd, #e91e63);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #e91e63, #ff4081);
}

/* === CONTAINER === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === TIMER BAR NOVO LAYOUT === */
.timer-bar {
    background: linear-gradient(90deg, #1a1a2e 60%, #e91e63 100%);
    padding: 0;
    box-shadow: 0 2px 20px rgba(233, 30, 99, 0.15);
}

.timer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 32px;
}

.timer-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.promo-price-old {
    font-size: 1.1rem;
    color: #ffb3c6;
    text-decoration: line-through;
    font-weight: 600;
    margin-right: 6px;
}

.promo-price-new {
    font-size: 1.5rem;
    color: #fff;
    font-weight: 900;
    margin-right: 12px;
    text-shadow: 0 2px 8px rgba(233,30,99,0.15);
}

.btn-combo-timer {
    background: linear-gradient(135deg, #ff1744, #e91e63, #ff4081);
    color: #fff;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 900;
    font-size: 1.1rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.5), 0 0 20px rgba(255, 23, 68, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    animation: pulse 2s ease-in-out infinite;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-combo-timer:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(233, 30, 99, 0.6), 0 0 30px rgba(255, 23, 68, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
}

.combo-icon {
    font-size: 1.4rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.combo-text {
    font-weight: 900;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.combo-discount {
    background: rgba(255, 255, 255, 0.3);
    padding: 6px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.timer-divider {
    width: 2px;
    height: 48px;
    background: rgba(255,255,255,0.25);
    margin: 0 32px;
    border-radius: 2px;
}

.timer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.timer-label-text {
    font-size: 1.1rem;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 2px;
}

.timer-countdown {
    display: flex;
    gap: 18px;
    align-items: center;
}

.timer-unit {
    text-align: center;
    background: rgba(255, 255, 255, 0.08);
    padding: 10px 18px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.timer-number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    color: #fff;
}

.timer-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
    opacity: 0.9;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
}

@media (max-width: 900px) {
    .timer-content {
        flex-direction: column;
        gap: 18px;
        padding: 18px 10px;
    }
    .timer-divider {
        width: 80%;
        height: 2px;
        margin: 18px 0;
    }
    .timer-right {
        align-items: center;
    }
}

/* === HERO === */
.hero {
    padding: 80px 0 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(159, 90, 253, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(233, 30, 99, 0.15) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    background: linear-gradient(135deg, #9f5afd, #e91e63);
    color: #fff;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(159, 90, 253, 0.3);
}

.hero h1,
.hero h2 {
    background: linear-gradient(135deg, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    max-width: 900px;
    margin: 0 auto 15px auto;
}

.hero h2 {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto 25px auto;
    opacity: 0.95;
}

.hero p {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: #b8b8b8;
    max-width: 700px;
    margin: 0 auto 35px auto;
    line-height: 1.6;
    opacity: 0.9;
}

/* === HERO STATS === */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 50px 0 0 0;
    flex-wrap: wrap;
    position: relative;
}

.stat {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(159, 90, 253, 0.2);
    border-radius: 15px;
    padding: 20px 25px;
    min-width: 140px;
    text-align: center;
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(159, 90, 253, 0.1), rgba(233, 30, 99, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 20px;
}

.stat:hover::before {
    opacity: 1;
}

.stat:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: #e91e63;
    box-shadow: 0 20px 40px rgba(233, 30, 99, 0.3);
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #e91e63, #ff4081);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1;
    position: relative;
    z-index: 2;
}

.stat-label {
    color: #b8b8b8;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.stat:hover .stat-label {
    color: #fff;
}

/* === HERO CTA === */
.hero-cta-main {
    margin: 50px 0 40px 0;
    text-align: center;
}

/* === RESET LINKS === */
a {
    text-decoration: none !important;
    color: inherit;
    transition: all 0.3s ease;
}

a:hover {
    text-decoration: none !important;
}

/* === SISTEMA UNIFICADO DE BOTÕES === */
.btn, 
.cta-button, 
.secondary-button,
.btn-primary,
.btn-secondary,
.btn-whatsapp,
.btn-block {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 35px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none !important;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1;
    white-space: nowrap;
    box-sizing: border-box;
}

/* === BOTÃO PRIMÁRIO (Rosa/Magenta) === */
.btn-primary,
.cta-button {
    background: linear-gradient(135deg, #e91e63 0%, #ff4081 50%, #ff6ec7 100%);
    color: #ffffff !important;
    box-shadow: 
        0 12px 30px rgba(233, 30, 99, 0.4),
        0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-primary::before,
.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
    z-index: -1;
}

.btn-primary:hover::before,
.cta-button:hover::before {
    left: 100%;
}

.btn-primary:hover,
.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 18px 40px rgba(233, 30, 99, 0.5),
        0 6px 18px rgba(0, 0, 0, 0.3);
    color: #ffffff !important;
}

/* === BOTÃO SECUNDÁRIO (Roxo/Violeta) === */
.btn-secondary {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    color: #1a1a2e !important;
    border: 3px solid transparent;
    background-clip: padding-box;
    box-shadow: 
        0 10px 25px rgba(159, 90, 253, 0.3),
        0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, #9f5afd, #e91e63, #ff4081);
    border-radius: 50px;
    z-index: -1;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #9f5afd, #e91e63);
    color: #ffffff !important;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 20px 40px rgba(159, 90, 253, 0.4),
        0 8px 20px rgba(0, 0, 0, 0.3);
}

/* === BOTÃO WHATSAPP (Verde) === */
.btn-whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e, #075e54);
    color: #ffffff !important;
    box-shadow: 
        0 15px 35px rgba(37, 211, 102, 0.4),
        0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-whatsapp::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
    z-index: -1;
}

.btn-whatsapp:hover::before {
    left: 100%;
}

.btn-whatsapp:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 25px 50px rgba(37, 211, 102, 0.5),
        0 10px 25px rgba(0, 0, 0, 0.3);
    color: #ffffff !important;
}

/* === BOTÃO BLOCK (Largura Total) === */
.btn-block {
    width: 100%;
    background: linear-gradient(135deg, #e91e63, #ff4081, #ff6ec7);
    color: #ffffff !important;
    box-shadow: 
        0 12px 30px rgba(233, 30, 99, 0.4),
        0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
    z-index: -1;
}

.btn-block:hover::before {
    left: 100%;
}

.btn-block:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 18px 40px rgba(233, 30, 99, 0.5),
        0 6px 18px rgba(0, 0, 0, 0.3);
    color: #ffffff !important;
}

/* === TAMANHOS DE BOTÕES === */
.btn-large {
    padding: 20px 50px;
    font-size: 1.2rem;
    letter-spacing: 2px;
    border-radius: 60px;
}

.btn-small {
    padding: 12px 25px;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    border-radius: 40px;
}

/* === ÍCONES NOS BOTÕES === */
.btn i,
.btn .arrow-right {
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.btn:hover .arrow-right {
    transform: translateX(5px);
}

/* === ESTADOS ESPECIAIS === */
.btn:disabled,
.btn.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

.btn:disabled:hover,
.btn.disabled:hover {
    transform: none !important;
    box-shadow: none !important;
}

/* === SEÇÕES GERAIS === */
section {
    padding: 80px 0;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: 60px;
    background: linear-gradient(135deg, #ffffff, #c8c8c8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #9f5afd, #ff00c1);
    border-radius: 2px;
}

/* === CARDS GERAIS === */
.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.card {
    background: linear-gradient(145deg, #1a1a3a, #2a2a4a);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(159, 90, 253, 0.2);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(159, 90, 253, 0.1), rgba(255, 0, 193, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 20px;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(159, 90, 253, 0.3);
}

.card:hover::before {
    opacity: 1;
}

/* === FOOTER === */
footer {
    background: 
        linear-gradient(135deg, #0a0a1a 0%, #1a1a2e 50%, #0a0a1a 100%);
    padding: 60px 0 40px 0;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #9f5afd, transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-section h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #9f5afd, #e91e63);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p {
    color: #c8c8c8;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section li {
    margin-bottom: 12px;
}

.footer-section a {
    color: #e0e0e0 !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.footer-section a:hover {
    color: #e91e63 !important;
    transform: translateX(5px);
    text-decoration: none !important;
}

.whatsapp-link {
    background: linear-gradient(135deg, #25d366, #128c7e) !important;
    color: #fff !important;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none !important;
}

.whatsapp-link:hover {
    background: linear-gradient(135deg, #128c7e, #075e54) !important;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    color: #fff !important;
    text-decoration: none !important;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #888;
    font-size: 0.9rem;
    margin: 0;
}

/* === RESPONSIVIDADE GERAL === */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .timer-content {
        gap: 20px;
        flex-direction: column;
        padding: 0 15px;
    }
    
    .timer-promo {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        align-items: center;
    }
    
    .promo-text {
        gap: 2px;
        min-width: auto;
    }
    
    .promo-price-old {
        font-size: 0.9rem;
    }
    
    .promo-price-new {
        font-size: 1.3rem;
    }
    
    .btn-combo-timer {
        font-size: 1rem;
        padding: 14px 28px;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        font-weight: 800;
    }
    
    .timer-separator {
        display: none;
    }
    
    .timer-label-text {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .timer-countdown {
        gap: 15px;
        justify-content: center;
    }
    
    .timer-unit {
        padding: 8px 12px;
    }
    
    .timer-number {
        font-size: 1.6rem;
    }
    
    .timer-label {
        font-size: 0.7rem;
    }
    
    .hero-stats {
        gap: 30px;
        flex-wrap: wrap;
        padding: 30px 0;
    }
    
    .stat {
        min-width: 140px;
        padding: 15px;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
        letter-spacing: 1px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .btn,
    .cta-button,
    .secondary-button {
        padding: 15px 25px;
        font-size: 0.9rem;
        letter-spacing: 0.5px;
    }
    
    .btn-large {
        padding: 18px 35px;
        font-size: 1rem;
        letter-spacing: 1px;
    }
    
    .btn-small {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
}

/* === SEÇÃO PARA QUEM / COMUNIDADE === */
.para-quem-section {
    padding: 80px 0;
    background: 
        linear-gradient(135deg, #0f0f23 0%, #1a1a2e 25%, #16213e 75%, #0f0f23 100%),
        radial-gradient(circle at 20% 80%, rgba(159, 90, 253, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(233, 30, 99, 0.1) 0%, transparent 50%);
    position: relative;
    overflow: hidden;
}

.para-quem-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(159,90,253,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.para-quem-section .container {
    position: relative;
    z-index: 2;
}

.para-quem-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #9f5afd, #e91e63, #ff4081);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.para-quem-section .section-subtitle {
    color: #b8b8b8;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-weight: 400;
    opacity: 0.9;
}

.section-cta {
    text-align: center;
    margin: 40px 0 70px 0;
}

.para-quem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.para-quem-card {
    background: 
        linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(159, 90, 253, 0.3);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.para-quem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(159, 90, 253, 0.1), rgba(233, 30, 99, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 25px;
}

.para-quem-card:hover::before {
    opacity: 1;
}

.para-quem-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: #e91e63;
    box-shadow: 
        0 25px 60px rgba(233, 30, 99, 0.3),
        0 10px 30px rgba(159, 90, 253, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.para-quem-card .card-icon {
    font-size: 3rem;
    margin-bottom: 25px;
    filter: drop-shadow(0 5px 15px rgba(233, 30, 99, 0.3));
}

.para-quem-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.card-list li {
    padding: 12px 0;
    color: #e0e0e0;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color 0.3s ease;
    position: relative;
    padding-left: 25px;
}

.card-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #e91e63;
    font-weight: bold;
}

.card-list li:hover {
    color: #fff;
}

.card-list li:last-child {
    border-bottom: none;
}

/* === SEÇÃO NÃO SABE POR ONDE COMEÇAR === */
.nao-sabe-section {
    padding: 80px 0;
    background: 
        linear-gradient(135deg, #0a0a1a 0%, #1a1a2e 50%, #0a0a1a 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.nao-sabe-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(159, 90, 253, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.8; }
}

.nao-sabe-section .container {
    position: relative;
    z-index: 2;
}

.nao-sabe-section h2 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.nao-sabe-section p {
    font-size: 1.3rem;
    color: #c8c8c8;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* === SEÇÃO JORNADA COMPLETA (PLANOS) === */
.jornada-section {
    padding: 100px 0;
    background: 
        linear-gradient(135deg, #16213e 0%, #1a1a2e 25%, #0f0f23 75%, #16213e 100%),
        radial-gradient(circle at 30% 20%, rgba(159, 90, 253, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(233, 30, 99, 0.15) 0%, transparent 50%);
    position: relative;
    overflow: hidden;
}

.jornada-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(159,90,253,0.2)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.4;
}

.jornada-section .container {
    position: relative;
    z-index: 2;
}

.jornada-section h2 {
    font-size: 3.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(135deg, #9f5afd, #e91e63, #ff4081);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.planos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin: 60px 0;
    align-items: start;
}

.plano-card {
    background: 
        linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 2px solid rgba(159, 90, 253, 0.3);
    border-radius: 30px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.plano-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(159, 90, 253, 0.05), rgba(233, 30, 99, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 30px;
}

.plano-card:hover::before {
    opacity: 1;
}

.plano-card:hover {
    transform: translateY(-20px) scale(1.03);
    border-color: #e91e63;
    box-shadow: 
        0 30px 70px rgba(233, 30, 99, 0.4),
        0 15px 35px rgba(159, 90, 253, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.1);
}

.plano-destaque {
    border: 3px solid #e91e63;
    transform: scale(1.08);
    background: 
        linear-gradient(145deg, rgba(233, 30, 99, 0.15) 0%, rgba(159, 90, 253, 0.1) 100%);
}

.plano-destaque:hover {
    transform: translateY(-20px) scale(1.11);
}

.plano-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #e91e63, #ff4081, #ff6ec7);
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 
        0 10px 25px rgba(233, 30, 99, 0.5),
        0 4px 12px rgba(0, 0, 0, 0.3);
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.05); }
}

.plano-header h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
}

.plano-price {
    margin-bottom: 35px;
}

.price-old {
    display: block;
    color: #888;
    text-decoration: line-through;
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 500;
}

.price-new {
    display: block;
    background: linear-gradient(135deg, #e91e63, #ff4081);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.8rem;
    font-weight: 900;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.plano-features ul {
    list-style: none;
    padding: 0;
    margin: 35px 0;
    text-align: left;
}

.plano-features li {
    padding: 15px 0;
    color: #e0e0e0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
    padding-left: 30px;
}

.plano-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #e91e63;
    font-weight: bold;
}

.plano-features li:hover {
    color: #fff;
}

.plano-features li:last-child {
    border-bottom: none;
}

.plano-cta {
    margin-top: 35px;
}

/* === CAIXAS DE BÔNUS === */
.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    margin-top: 80px;
}

.bonus-card {
    background: 
        linear-gradient(145deg, rgba(159, 90, 253, 0.15) 0%, rgba(159, 90, 253, 0.05) 100%);
    border: 2px solid rgba(159, 90, 253, 0.4);
    border-radius: 25px;
    padding: 40px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(159, 90, 253, 0.1), rgba(233, 30, 99, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 25px;
}

.bonus-card:hover::before {
    opacity: 1;
}

.bonus-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: #9f5afd;
    box-shadow: 
        0 25px 60px rgba(159, 90, 253, 0.4),
        0 10px 30px rgba(233, 30, 99, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.1);
}

.bonus-header h4 {
    font-size: 1.6rem;
    background: linear-gradient(135deg, #9f5afd, #c77dff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1px;
}

.bonus-content ul {
    list-style: none;
    padding: 0;
    margin: 25px 0;
    text-align: left;
}

.bonus-content li {
    padding: 12px 0;
    color: #e0e0e0;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color 0.3s ease;
    position: relative;
    padding-left: 35px;
}

.bonus-content li::before {
    content: '🎁';
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.bonus-content li:hover {
    color: #fff;
}

.bonus-content li:last-child {
    border-bottom: none;
}

.bonus-cta {
    margin-top: 30px;
}

/* === SEÇÃO CONTATO === */
.contato {
    padding: 100px 0;
    background: 
        linear-gradient(135deg, #0f0f23 0%, #1a1a2e 25%, #16213e 75%, #0f0f23 100%),
        radial-gradient(circle at 30% 70%, rgba(159, 90, 253, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 70% 30%, rgba(233, 30, 99, 0.15) 0%, transparent 60%);
    position: relative;
    overflow: hidden;
}

.contato::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hexagon" width="30" height="26" patternUnits="userSpaceOnUse"><polygon points="15,2 28,9 28,21 15,28 2,21 2,9" fill="none" stroke="rgba(159,90,253,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23hexagon)"/></svg>');
    opacity: 0.3;
}

.contato .container {
    position: relative;
    z-index: 2;
}

.contato .section-header {
    text-align: center;
    margin-bottom: 80px;
}

.contato .section-header h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #9f5afd, #e91e63, #ff4081);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.contato .section-header p {
    font-size: 1.3rem;
    color: #c8c8c8;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.contato-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contato-info {
    background: 
        linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 2px solid rgba(159, 90, 253, 0.3);
    border-radius: 30px;
    padding: 50px 40px;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.contato-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(159, 90, 253, 0.05), rgba(233, 30, 99, 0.05));
    border-radius: 30px;
}

.contato-info > * {
    position: relative;
    z-index: 2;
}

.contato-info h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contato-info > p {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 40px;
    line-height: 1.7;
}

.beneficios {
    margin: 40px 0;
}

.beneficios h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #e91e63, #ff4081);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.beneficios ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.beneficios li {
    padding: 15px 0;
    color: #e0e0e0;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
}

.beneficios li::before {
    content: '✅';
    font-size: 1.2rem;
    flex-shrink: 0;
}

.beneficios li:hover {
    color: #fff;
    padding-left: 10px;
}

.beneficios li:last-child {
    border-bottom: none;
}

.whatsapp-cta {
    margin-top: 50px;
    text-align: center;
}

.contato-form {
    background: 
        linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 2px solid rgba(233, 30, 99, 0.3);
    border-radius: 30px;
    padding: 50px 40px;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.contato-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.05), rgba(159, 90, 253, 0.05));
    border-radius: 30px;
}

.contato-form > * {
    position: relative;
    z-index: 2;
}

.contato-form h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 35px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.contact-form .form-group {
    margin-bottom: 30px;
}

.contact-form label {
    display: block;
    color: #e0e0e0;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #e91e63;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 
        0 0 0 3px rgba(233, 30, 99, 0.2),
        0 8px 25px rgba(233, 30, 99, 0.15);
    transform: translateY(-2px);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #888;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form button {
    width: 100%;
    padding: 20px;
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #e91e63, #ff4081, #ff6ec7);
    color: #fff;
    border: none;
    border-radius: 60px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 15px 35px rgba(233, 30, 99, 0.4),
        0 5px 15px rgba(0, 0, 0, 0.2);
    margin-top: 20px;
}

.contact-form button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.contact-form button:hover::before {
    left: 100%;
}

.contact-form button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 20px 45px rgba(233, 30, 99, 0.5),
        0 8px 20px rgba(0, 0, 0, 0.3);
}

/* === RESPONSIVIDADE SEÇÕES === */
@media (max-width: 768px) {
    .para-quem-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .planos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .plano-destaque {
        transform: none;
    }
    
    .bonus-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contato-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .nao-sabe-section h2 {
        font-size: 2rem;
    }
    
    .para-quem-section h2,
    .jornada-section h2,
    .contato .section-header h2 {
        font-size: 2.5rem;
    }
}

/* === SOCIAL PROOF / TESTIMONIALS === */
.social-proof {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f1419 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.social-proof::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(159, 90, 253, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(233, 30, 99, 0.1) 0%, transparent 50%);
}

.social-proof .container {
    position: relative;
    z-index: 2;
}

.social-proof h3 {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 50px;
    position: relative;
}

.social-proof h3::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #9f5afd, #e91e63);
    border-radius: 2px;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-light {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(159, 90, 253, 0.2);
}

.testimonial-dark {
    background: linear-gradient(145deg, rgba(42, 42, 54, 0.8), rgba(36, 36, 51, 0.6));
    border: 1px solid rgba(233, 30, 99, 0.2);
}

.testimonial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(159, 90, 253, 0.1), rgba(233, 30, 99, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 20px;
}

.testimonial:hover::before {
    opacity: 1;
}

.testimonial:hover {
    transform: translateY(-5px);
    border-color: rgba(159, 90, 253, 0.4);
    box-shadow: 0 15px 40px rgba(159, 90, 253, 0.2);
}

.testimonial-quote {
    font-size: 2rem;
    color: #9f5afd;
    margin-bottom: 15px;
    opacity: 0.7;
}

.testimonial p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #e0e0e0;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    font-style: italic;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
}

.author-avatar {
    font-size: 1.5rem;
    opacity: 0.8;
}

.testimonial small {
    color: #9f5afd;
    font-weight: 600;
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
}

/* === RESPONSIVIDADE TESTIMONIALS === */
@media (max-width: 768px) {
    .social-proof {
        padding: 60px 0;
    }
    
    .testimonials {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial {
        padding: 25px;
    }
    
    .testimonial p {
        font-size: 1rem;
    }
}

/* === HERO CTA BUTTONS MELHORADOS === */
.hero-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 40px 0;
    flex-wrap: wrap;
    align-items: center;
}

.btn-hero-main {
    background: linear-gradient(135deg, #9f5afd, #e91e63);
    border: none;
    padding: 16px 35px;
    font-size: 1rem;
    font-weight: 600;
    min-width: 260px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(159, 90, 253, 0.3);
    border-radius: 30px;
}

.btn-hero-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(159, 90, 253, 0.4);
}

.btn-hero-secondary, .btn-outline {
    background: linear-gradient(135deg, #9f5afd, #e91e63);
    color: #fff;
    border: none;
    padding: 20px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(159, 90, 253, 0.3);
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.btn-hero-secondary:hover, .btn-outline:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(233, 30, 99, 0.4);
    background: linear-gradient(135deg, #e91e63, #9f5afd);
}
@media (max-width: 600px) {
  .btn-hero-secondary, .btn-outline {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    padding: 14px 0;
    font-size: 1rem;
    border-radius: 12px;
    box-sizing: border-box;
  }
}

.btn-icon {
    margin-right: 8px;
    font-size: 1.2em;
}

/* === EBOOK GRATUITO SECTION MELHORADA === */
.ebook-gratuito-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f1419 100%);
    position: relative;
    overflow: hidden;
}

.ebook-gratuito-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(159, 90, 253, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(233, 30, 99, 0.15) 0%, transparent 50%);
}

.ebook-gratuito-section .container {
    text-align: center;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.ebook-gratuito-title {
    text-align: center;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.ebook-gratuito-subtitle {
    text-align: center;
    color: #c8c8c8;
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.ebook-gratuito-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.ebook-description {
    text-align: center;
    margin-bottom: 30px;
}

.ebook-description p {
    color: #c8c8c8;
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 400;
    margin: 0 auto;
    max-width: 600px;
}

.ebook-cta {
    text-align: center;
    margin-top: 30px;
}

.title-icon {
    font-size: 2rem;
    animation: pulse 2s ease-in-out infinite;
}



.btn-gratuito {
    background: linear-gradient(135deg, #4ade80, #22c55e);
    border: none;
    padding: 20px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(74, 222, 128, 0.3);
}

.btn-gratuito:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(74, 222, 128, 0.4);
}

/* === EBOOKS GRID MELHORADO === */
.ebooks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.ebook-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(159, 90, 253, 0.15);
    border-radius: 12px;
    padding: 28px 24px;
    text-align: center;
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.ebook-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(159, 90, 253, 0.1), rgba(233, 30, 99, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 16px;
}

.ebook-card:hover::before {
    opacity: 1;
}

.ebook-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(159, 90, 253, 0.25);
    border-color: rgba(159, 90, 253, 0.4);
}

.ebook-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: block;
}

.ebook-header h3 {
    background: linear-gradient(135deg, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.3;
    letter-spacing: -0.25px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ebook-price {
    margin-bottom: 20px;
}

.ebook-price .price-new {
    font-size: 2rem;
    font-weight: 900;
    color: #9f5afd;
    text-shadow: 0 2px 4px rgba(159, 90, 253, 0.3);
}

.ebook-description {
    flex: 1;
    margin-bottom: 30px;
}

.ebook-description p {
    color: #c8c8c8;
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 400;
}

.ebook-cta {
    margin-top: auto;
}

.btn-ebook {
    background: linear-gradient(135deg, #9f5afd, #e91e63);
    border: none;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-ebook:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(159, 90, 253, 0.3);
}



/* === CTA FINAL SECTION === */
.cta-final-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f1419 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.cta-final-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(159, 90, 253, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(233, 30, 99, 0.1) 0%, transparent 50%);
}

.cta-final-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-final-content h2 {
    background: linear-gradient(135deg, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -0.25px;
}

.cta-final-content p {
    color: #b8b8b8;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 35px;
    font-weight: 400;
}

.cta-final-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* === BOTÃO OUTLINE === */
.btn-outline {
    background: linear-gradient(135deg, #4ade80, #22c55e);
    color: #fff;
    border: none;
    padding: 20px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(74, 222, 128, 0.3);
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-outline:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(34, 197, 94, 0.4);
    background: linear-gradient(135deg, #22c55e, #4ade80);
}

/* === TIPOGRAFIA MELHORADA === */
.hero h1,
.hero h2,
.section-header h2,
.cta-final-content h2 {
    letter-spacing: -0.25px;
}

.hero p,
.ebook-description p,
.cta-final-content p,
.combo-description p {
    font-weight: 400;
}

/* === RESPONSIVIDADE MELHORADA === */
@media (max-width: 768px) {
    .hero-cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn-hero-main,
    .btn-hero-secondary {
        min-width: 280px;
        width: 100%;
        max-width: 320px;
    }
    
    .ebooks-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .ebook-card {
        padding: 24px;
    }
    

    
    .cta-final-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    

    
    .ebook-gratuito-title {
        text-align: center;
        font-size: 1.8rem;
    }
    
    .ebook-gratuito-subtitle {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }
    
    .ebook-description p {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .title-icon {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .ebook-card {
        padding: 20px;
    }
    

    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero h2 {
        font-size: 1.3rem;
    }
}

/* === PROMO FOLDER FIXO COM COUNTDOWN === */
.promo-folder-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    z-index: 2000;
    background: linear-gradient(90deg, #181828 60%, #e91e63 100%);
    box-shadow: 0 2px 20px rgba(233, 30, 99, 0.15);
    animation: slideDown 0.7s cubic-bezier(.77,0,.18,1) 1;
}
@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}
.promo-folder-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 70px;
    position: relative;
}
.promo-folder-left {
    display: flex;
    align-items: center;
    gap: 18px;
}
.promo-folder-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 2px 4px #e91e63aa);
}
.promo-folder-title {
    font-weight: 900;
    font-size: 1.1rem;
    color: #fff;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.promo-folder-old {
    color: #ffb3c6;
    text-decoration: line-through;
    font-size: 1rem;
    font-weight: 600;
}
.promo-folder-new {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 900;
    background: linear-gradient(90deg, #fff 60%, #ff4081 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-right: 8px;
}
.promo-folder-btn {
    background: linear-gradient(135deg, #ff1744, #e91e63, #ff4081);
    color: #fff;
    padding: 10px 22px;
    border-radius: 22px;
    font-weight: 900;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(233, 30, 99, 0.25);
    border: 2px solid rgba(255,255,255,0.18);
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 8px;
    white-space: nowrap;
}
.promo-folder-btn:hover {
    background: linear-gradient(135deg, #ff4081, #e91e63, #ff1744);
    color: #fff;
    transform: scale(1.06) translateY(-2px);
    box-shadow: 0 8px 24px rgba(233, 30, 99, 0.35);
    border-color: #fff;
}
.promo-folder-divider {
    width: 2px;
    height: 38px;
    background: rgba(255,255,255,0.18);
    margin: 0 24px;
    border-radius: 2px;
}
.promo-folder-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}
.promo-folder-count-label {
    font-size: 0.9rem;
    color: #fff;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 2px;
}
.promo-folder-countdown {
    display: flex;
    align-items: center;
    gap: 4px;
}
.promo-folder-count-num {
    font-size: 1.3rem;
    font-weight: 900;
    color: #fff;
    background: rgba(255,255,255,0.10);
    border-radius: 8px;
    padding: 2px 10px;
    min-width: 32px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(233,30,99,0.08);
}
.promo-folder-count-unit {
    font-size: 0.8rem;
    color: #ffb3c6;
    font-weight: 700;
    margin-right: 2px;
}
.promo-folder-count-sep {
    font-size: 1.1rem;
    color: #fff;
    font-weight: 700;
    margin: 0 2px;
}
.promo-folder-close {
    position: absolute;
    top: 8px;
    right: 12px;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 900;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
    z-index: 10;
}
.promo-folder-close:hover {
    opacity: 1;
}
@media (max-width: 700px) {
    .promo-folder-content {
        flex-direction: column;
        height: auto;
        padding: 8px 6px 6px 6px;
        gap: 2px;
    }
    .promo-folder-left {
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .promo-folder-divider {
        display: none;
    }
    .promo-folder-right {
        align-items: center;
        margin-top: 2px;
    }
    .promo-folder-btn {
        padding: 8px 14px;
        font-size: 0.95rem;
        border-radius: 16px;
        margin-left: 0;
    }
    .promo-folder-count-num {
        font-size: 1.1rem;
        padding: 2px 7px;
        min-width: 22px;
    }
    .promo-folder-title {
        font-size: 1rem;
    }
    .promo-folder-new {
        font-size: 1.1rem;
    }
    .promo-folder-old {
        font-size: 0.9rem;
    }
    .promo-folder-close {
        top: 4px;
        right: 6px;
        font-size: 1.2rem;
    }
}

@media (max-width: 600px) {
  .btn-hero-secondary, .btn-outline {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    padding: 14px 0;
    font-size: 1rem;
    border-radius: 12px;
    box-sizing: border-box;
  }
}

 
 