/* Reset e configurações base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563eb;
    --secondary-color: #64748b;
    --accent-color: #dc2626;
    --success-color: #16a34a;
    --background-color: #ffffff;
    --text-color: #1f2937;
    --text-light: #6b7280;
    --border-color: #e5e7eb;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
.header {
    background: var(--background-color);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo-img {
    height: 60px;
    width: auto;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-color);
}

.cta-button {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background: #b91c1c;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f0f9ff 0%, #fef2f2 100%);
    padding: 8rem 0 4rem;
    margin-top: 80px;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.text-red {
    color: var(--accent-color);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.offer-banner {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    color: white;
    padding: 2rem;
    border-radius: 1rem;
    margin-bottom: 2rem;
}

.offer-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.offer-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: var(--success-color);
    color: white;
}

.btn-primary:hover {
    background: #15803d;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: #f8fafc;
    transform: translateY(-2px);
}

.full-width {
    width: 100%;
    justify-content: center;
}

/* Features Section */
.features {
    padding: 4rem 0;
    background: var(--background-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.feature-icon i {
    font-size: 2rem;
}

.bg-blue { background: #dbeafe; color: #1d4ed8; }
.bg-red { background: #fee2e2; color: #dc2626; }
.bg-green { background: #dcfce7; color: #16a34a; }
.bg-purple { background: #f3e8ff; color: #9333ea; }

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: var(--text-light);
}

/* Pricing Section */
.pricing {
    padding: 4rem 0;
    background: #f8fafc;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.pricing-header {
    margin-bottom: 1.5rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.pricing-header p {
    color: var(--text-light);
}

.pricing-price {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.price-tag, .time-tag, .schedule-tag {
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.price-tag {
    background: #fee2e2;
    color: #dc2626;
}

.time-tag {
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.schedule-tag {
    background: #f8fafc;
    border: 1px solid var(--border-color);
    margin-bottom: 1.5rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.pricing-features i {
    color: var(--success-color);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

/* Testimonials Section */
.testimonials {
    padding: 4rem 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.stars i {
    color: #fbbf24;
    fill: currentColor;
}

.testimonial-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    text-align: right;
}

.testimonial-author strong {
    display: block;
    color: var(--text-color);
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Audience Section */
.audience {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f0fdf4 0%, #f0f9ff 100%);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.audience-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.audience-card:hover {
    transform: translateY(-4px);
}

.audience-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.audience-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.audience-card p {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* About Section */
.about {
    padding: 4rem 0;
    background: #dbeafe;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.about-content > p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.about-features {
    list-style: none;
}

.about-features li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.about-features i {
    color: var(--success-color);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.about-features h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.about-features p {
    color: var(--text-light);
}

.about-cta {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
}

.about-cta h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.about-cta p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Foto do professor */
.about-image {
    text-align: center;
}

.about-image img {
    width: 100%;
    max-width: 350px;
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    border: 4px solid white;
}

/* Contact Section */
.contact {
    padding: 4rem 0;
    background: #1f2937;
    color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.contact-info > p {
    font-size: 1.125rem;
    color: #d1d5db;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #d1d5db;
}

.contact-item i {
    color: var(--accent-color);
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    color: var(--text-color);
}

.contact-form h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: #374151;
    color: white;
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright p {
    color: #d1d5db;
}

/* Responsividade */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .features-grid,
    .pricing-grid,
    .testimonials-grid,
    .audience-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .hero {
        padding: 6rem 0 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .offer-banner {
        padding: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}
/* Hero Image */
.hero-image {
    margin: 2rem 0;
    text-align: center;
}

.hero-image img {
    max-width: 300px; /* antes 200px */
    border-radius: 50%;
    border: 4px solid var(--accent-color);
    box-shadow: var(--shadow);
}

@media (max-width: 768px) {
    .hero {
        margin-top: 100px; /* aumenta o espaço para header fixo no mobile */
    }
}
/* Subtítulo destacado */
.pricing-header p {
    font-size: 1.3rem;
    font-weight: 700;
    color: #072948;
    margin-top: 0.5rem;
    text-align: center;
}

/* Storytelling */
.mentoria-story p {
    font-size: 1rem;
    color: #1f2937;
    text-align: center;
    margin-bottom: 1rem;
}

.mentoria-story .highlight {
    color: #e92c28;
    font-weight: 700;
}

/* Lista de benefícios (checklist) */
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.pricing-features li {
    margin-bottom: 0.8rem;
    padding-left: 1.6rem;
    position: relative;
    font-weight: 500;
    color: #333;
    font-size: 1rem;
}

.pricing-features li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #16a34a; /* verde destaque */
    font-weight: bold;
    font-size: 1.2rem;
}

/* Card destacado */
.pricing-card.featured {
    border: 2px solid #e92c28;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transform: scale(1.03);
}

/* Card da Mentoria com glassmorphism */
.pricing-card.featured {
    max-width: 450px; /* não encostar nas bordas */
    margin: 2rem auto; /* centralizado com espaçamento em cima/baixo */
    padding: 2rem;
    border-radius: 1.2rem;
    position: relative;
    background: rgba(255, 255, 255, 0.15); /* transparente leve */
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Badge centralizado */
.recommended-badge {
    position: absolute;
    top: -1.2rem;
    left: 50%;
    transform: translateX(-50%);
    background: #e92c28;
    color: white;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 10;
}

/* Storytelling com destaque suave */
.mentoria-story {
    background: linear-gradient(135deg, rgba(173,216,230,0.2), rgba(255,192,203,0.2), rgba(255,255,255,0.2));
    padding: 1.5rem;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    color: #1f2937;
}

/* Benefícios com checkmark */
.mentoria-benefits {
    list-style: none;
    padding: 0;
    margin: 1rem 0 2rem 0;
    text-align: left;
}

.mentoria-benefits li {
    margin-bottom: 0.8rem;
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    padding-left: 2rem;
}

.mentoria-benefits li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #16a34a;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Preço */
.mentoria-price {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

/* Hover efeito */
.pricing-card.featured:hover {
    transform: translateY(-5px) scale(1.04);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

