/* ============================================
   PALETA NORTIA
   Primário:    #7B2FFF (roxo profundo)
   Gradiente:   #7B2FFF → #E040FB (fúcsia)
   Acento:      #E040FB (rosa-magenta)
   Fundo base:  #FFFFFF (branco dominante)
   Fundo alt:   #F5F5F7 (cinza muito suave)
   Texto:       #111111 / #555555
   ============================================ */

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #111111;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: #ffffff !important;
    color: #111111;
    padding: 14px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid #7B2FFF;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.logo {
    display: flex;
    align-items: center;
    margin-left: -100px;
}

.logo-img {
    height: 44px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    display: block;
}

/* Hero Section — fundo branco com acento roxo */
.hero {
    background: #ffffff;
    color: #111111;
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
    margin-top: 72px;
    border-bottom: 1px solid #f0eaff;
}


.hero-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #111111;
}

.highlight {
    background: linear-gradient(135deg, #7B2FFF 0%, #E040FB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    color: #444444;
}

.benefits {
    margin-bottom: 30px;
}

.benefit {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 16px;
    color: #333333;
}

.benefit i {
    color: #7B2FFF;
    margin-right: 15px;
    font-size: 18px;
}

.urgency {
    background: #f5eeff;
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid #7B2FFF;
}

.urgency p {
    color: #333333;
}

.urgency i {
    margin-right: 10px;
    color: #7B2FFF;
}

/* Form Container */
.hero-form {
    background: white;
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.04), 0 20px 40px rgba(123,47,255,0.1);
    overflow: hidden;
    border: 1px solid #f0eaff;
}

/* Faixa colorida no topo do formulário */
.hero-form::before {
    content: '';
    display: block;
    height: 5px;
    background: linear-gradient(90deg, #7B2FFF 0%, #E040FB 100%);
}

/* Card CTA Escola Nortia – visual destacado com borda em gradiente */
.cta-card-eduzz {
    position: relative;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, #7B2FFF 0%, #E040FB 100%) border-box;
    border: 3px solid transparent;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(123, 47, 255, 0.15), 0 0 0 1px rgba(123, 47, 255, 0.08);
}

.cta-card-eduzz::before {
    height: 6px;
    background: linear-gradient(90deg, #7B2FFF 0%, #E040FB 100%);
}

.cta-card-eduzz .form-container {
    background: linear-gradient(180deg, #fefbff 0%, #ffffff 100%);
    padding: 40px 44px 44px;
}

.cta-card-eduzz .form-container h3 {
    font-size: 28px;
    letter-spacing: -0.02em;
}

.cta-card-eduzz .form-subtitle {
    font-size: 16px;
    color: #555555;
    margin-bottom: 32px;
    line-height: 1.5;
}

/* Botão CTA Eduzz – mais destaque */
.cta-button-eduzz {
    padding: 20px 24px !important;
    font-size: 18px !important;
    border-radius: 50px !important;
    box-shadow: 0 6px 24px rgba(123, 47, 255, 0.4) !important;
    margin-bottom: 18px !important;
}

.cta-button-eduzz:hover {
    box-shadow: 0 12px 36px rgba(123, 47, 255, 0.5) !important;
    transform: translateY(-3px) !important;
}

.cta-button-eduzz .fa-shopping-cart {
    display: inline-block;
    margin-right: 10px;
}

.form-container {
    padding: 36px 40px 40px;
    color: #111111;
}

.form-container h3 {
    font-size: 26px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 8px;
    text-align: center;
}

.form-subtitle {
    text-align: center;
    color: #555555;
    margin-bottom: 28px;
    font-size: 15px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid #e4e4e7;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.25s ease;
    background: #fafafa;
    color: #111111;
    font-family: 'Poppins', sans-serif;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #7B2FFF;
    background: white;
    box-shadow: 0 0 0 3px rgba(123, 47, 255, 0.08);
}

/* Botão CTA principal — rosa-fúcsia para máximo contraste no fundo branco */
.cta-button {
    width: 100%;
    background: linear-gradient(135deg, #7B2FFF 0%, #E040FB 100%);
    color: white;
    border: none;
    padding: 17px;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 14px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.3px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(123, 47, 255, 0.35);
}

.cta-button i {
    margin-right: 10px;
}

.form-disclaimer {
    text-align: center;
    font-size: 13px;
    color: #777777;
}

.form-disclaimer i {
    color: #7B2FFF;
    margin-right: 5px;
}

/* CTA box (pós-compra - botão em vez de formulário) */
.cta-box .cta-button {
    display: block;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
}

.cta-box .cta-button:hover {
    color: white;
}

/* Social Proof */
.social-proof {
    padding: 80px 0;
    background: #F5F5F7;
}

.social-proof h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #111111;
}

.social-proof-tagline {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    color: #111111;
    margin-top: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.04), 0 10px 30px rgba(0,0,0,0.06);
    text-align: center;
    border-top: 3px solid transparent;
    border-image: linear-gradient(90deg, #7B2FFF, #E040FB) 1;
    border-image-slice: 1;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.stars {
    color: #E040FB;
    font-size: 20px;
    margin-bottom: 20px;
}

.testimonial p {
    font-size: 16px;
    font-style: italic;
    margin-bottom: 20px;
    color: #555555;
}

.author {
    font-weight: 600;
    color: #7B2FFF;
}

/* Step cards (Como funciona) */
.testimonial.step-card p {
    font-style: normal;
}

.testimonial.step-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #111111;
}

.step-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    font-size: 30px !important;
}

.step-icon i {
    font-size: 30px !important;
}

/* About Section */
.about {
    padding: 80px 0;
    background: #ffffff;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.about h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #111111;
}

.about p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555555;
}

.credentials {
    margin-top: 30px;
}

.credential {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 16px;
    color: #333333;
}

.credential i {
    color: #7B2FFF;
    margin-right: 15px;
    font-size: 20px;
    width: 25px;
}

.about-image {
    display: flex;
    justify-content: center;
}

.profile-image {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid transparent;
    background-clip: padding-box;
    box-shadow: 0 0 0 4px #E040FB, 0 0 0 7px #7B2FFF, 0 16px 40px rgba(123,47,255,0.25);
    transition: transform 0.3s ease;
}

.profile-image:hover {
    transform: scale(1.05);
}

/* What You Get */
.what-you-get {
    padding: 80px 0;
    background: #F5F5F7;
}

.what-you-get h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #111111;
}

.bonuses {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.bonus {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.04), 0 10px 30px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bonus:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0,0,0,0.06), 0 20px 40px rgba(123,47,255,0.12);
}

.bonus-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #7B2FFF 0%, #E040FB 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.bonus-icon i {
    font-size: 35px;
    color: white;
}

.bonus h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #111111;
}

.bonus p {
    color: #666666;
    font-size: 16px;
}

/* Final CTA — único elemento com fundo escuro/colorido */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #7B2FFF 0%, #E040FB 100%);
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.final-cta p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.92;
    color: white;
}

.cta-button-large {
    display: inline-block;
    background: #ffffff;
    color: #7B2FFF;
    padding: 20px 44px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 19px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    letter-spacing: 0.3px;
}

.cta-button-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
    background: #f5eeff;
}

.cta-button-large i {
    margin-right: 10px;
}

/* Footer */
.footer {
    background: #111111;
    color: #aaaaaa;
    text-align: center;
    padding: 30px 0;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 100px 0 40px;
        min-height: auto;
        margin-top: 72px;
    }

    .header .container {
        justify-content: center;
    }

    .logo {
        margin-left: 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        display: flex;
        flex-direction: column;
    }
    
    .hero-form {
        order: -1;
    }
    
    .hero-text {
        order: 1;
    }
    
    .hero h1 {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .subtitle {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .benefits {
        margin-bottom: 20px;
    }
    
    .benefit {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .urgency {
        padding: 12px;
        margin-bottom: 20px;
    }
    
    .urgency p {
        font-size: 14px;
    }
    
    .form-container {
        padding: 25px 20px;
        margin-top: 0;
    }
    
    .form-container h3 {
        font-size: 20px;
        margin-bottom: 8px;
    }
    
    .form-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .form-group input,
    .form-group select {
        padding: 12px;
        font-size: 14px;
    }
    
    .cta-button {
        padding: 15px;
        font-size: 16px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .testimonials {
        grid-template-columns: 1fr;
    }
    
    .bonuses {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 90px 0 30px;
        margin-top: 72px;
    }
    
    .hero h1 {
        font-size: 24px;
        line-height: 1.2;
    }
    
    .subtitle {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .benefits {
        margin-bottom: 15px;
    }
    
    .benefit {
        font-size: 13px;
        margin-bottom: 8px;
    }
    
    .urgency {
        padding: 10px;
        margin-bottom: 15px;
    }
    
    .urgency p {
        font-size: 13px;
    }
    
    .form-container {
        padding: 20px 15px;
    }
    
    .form-container h3 {
        font-size: 18px;
        margin-bottom: 5px;
    }
    
    .form-subtitle {
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    .form-group input,
    .form-group select {
        padding: 10px;
        font-size: 13px;
    }
    
    .cta-button {
        padding: 12px;
        font-size: 15px;
    }
    
    .social-proof h2,
    .about h2,
    .what-you-get h2 {
        font-size: 24px;
    }
    
    .final-cta h2 {
        font-size: 24px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text,
.hero-form,
.testimonial,
.bonus {
    animation: fadeInUp 0.8s ease-out;
}

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.loading .cta-button {
    background: #cccccc;
}

/* Success Message */
.success-message {
    background: #f0e8ff;
    color: #5b1fc0;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 1px solid #d6baff;
    display: none;
}

.success-message.show {
    display: block;
    animation: fadeInUp 0.5s ease-out;
}
