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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8fafc;
}

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

/* Botões */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: #038BFE;
    color: white;
}

.btn-primary:hover {
    background: #0274D1;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #038BFE;
    border: 2px solid #038BFE;
}

.btn-outline:hover {
    background: #038BFE;
    color: white;
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-cta {
    background: white;
    color: #038BFE !important;
    padding: 16px 32px;
    font-size: 18px;
    width: 100%;
    justify-content: center;
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.btn-cta:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
    color: #038BFE !important;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Language Bar */
.language-bar {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 8px 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.language-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.current-flag {
    width: 20px;
    height: 15px;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.language-dropdown {
    padding: 10px 16px;
    border: none;
    border-radius: 8px;
    background: transparent;
    font-size: 14px;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 160px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 8px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 35px;
    font-weight: 500;
}

.language-dropdown:hover {
    background-color: rgba(3, 139, 254, 0.1);
    color: #038BFE;
}

.language-dropdown:focus {
    outline: none;
    background-color: rgba(3, 139, 254, 0.15);
    color: #038BFE;
}

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: bold;
    color: #038BFE;
}

.logo i {
    font-size: 32px;
}

.nav {
    display: flex;
    gap: 32px;
}

.nav a {
    text-decoration: none;
    color: #64748b;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #038BFE;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #64748b;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover span {
    background: #038BFE;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e0f2fe 100%);
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
}

.badge {
    display: inline-block;
    background: #dbeafe;
    color: #1e40af;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #1e293b;
}

.highlight {
    color: #038BFE;
}

.hero-description {
    font-size: 1.25rem;
    color: #64748b;
    line-height: 1.6;
    max-width: 800px;
    margin: 0;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin: 0;
}

.hero-stats {
    display: flex;
    gap: 32px;
    align-items: center;
    justify-content: center;
}

.hero-video {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.roi-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.roi-stat:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.12);
    text-decoration: none;
}

.roi-stat i {
    color: #10b981;
    font-size: 24px;
}

.roi-stat strong {
    display: block;
    font-size: 16px;
    color: #1e293b;
}

.roi-stat span {
    font-size: 12px;
    color: #64748b;
}

.stat {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    font-size: 14px;
}

.stat i {
    color: #038BFE;
}


/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1e293b;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.benefit-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
}

.benefit-card:nth-child(1) .benefit-icon {
    background: #fef3c7;
    color: #f59e0b;
}

.benefit-card:nth-child(2) .benefit-icon {
    background: #d1fae5;
    color: #10b981;
}

.benefit-card:nth-child(3) .benefit-icon {
    background: #dbeafe;
    color: #3b82f6;
}

.benefit-card:nth-child(4) .benefit-icon {
    background: #e9d5ff;
    color: #8b5cf6;
}

.benefit-card:nth-child(5) .benefit-icon {
    background: #e0e7ff;
    color: #6366f1;
}

.benefit-card:nth-child(6) .benefit-icon {
    background: #fee2e2;
    color: #ef4444;
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1e293b;
    margin-bottom: 12px;
}

.benefit-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Course Section */
.course {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.course-overview {
    margin-bottom: 60px;
}

.course-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.stat-card {
    background: white;
    padding: 32px 24px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
    min-width: 150px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #038BFE;
    margin-bottom: 8px;
}

.stat-label {
    color: #64748b;
    font-weight: 600;
    font-size: 14px;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.module-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.module-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #038BFE, #1A9FFF);
}

.module-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.module-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
}

.module-icon.marketing {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #f59e0b;
}

.module-icon.vendas {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: #10b981;
}

.module-icon.atendimento {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    color: #038BFE;
}

.module-icon.lideranca {
    background: linear-gradient(135deg, #e9d5ff 0%, #ddd6fe 100%);
    color: #8b5cf6;
}

.module-icon.juridico {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    color: #ef4444;
}

.module-icon.processos {
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
    color: #038BFE;
}

.module-icon.financeiro {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: #059669;
}

.module-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1e293b;
    margin-bottom: 12px;
}

.module-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 16px;
}

.module-lessons {
    background: #f1f5f9;
    color: #475569;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
}

.course-cta {
    background: linear-gradient(135deg, #0274D1 0%, #038BFE 100%);
    color: white;
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.course-cta::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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.course-cta h3 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 16px;
}

.course-cta p {
    font-size: 1.125rem;
    color: #bfdbfe;
    margin-bottom: 32px;
    line-height: 1.6;
}

.course-action {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

/* Force course button visibility */
.course-action .btn-cta {
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 1 !important;
}

.course-guarantee {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #86efac;
    font-size: 14px;
    font-weight: 500;
}

.course-guarantee i {
    font-size: 16px;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.testimonial-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.testimonial-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-info h4 {
    font-size: 1.125rem;
    font-weight: bold;
    color: #1e293b;
}

.testimonial-info p {
    color: #64748b;
    font-size: 14px;
}

.stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.stars i {
    color: #fbbf24;
}

.testimonial-card > p {
    color: #64748b;
    font-style: italic;
    line-height: 1.6;
}

.stats-banner {
    display: flex;
    justify-content: center;
    gap: 60px;
    background: #f8fafc;
    padding: 32px;
    border-radius: 50px;
    max-width: 600px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 4px;
}

.stat-item:nth-child(1) .stat-number {
    color: #038BFE;
}

.stat-item:nth-child(2) .stat-number {
    color: #10b981;
}

.stat-item:nth-child(3) .stat-number {
    color: #f59e0b;
}

.stat-label {
    font-size: 14px;
    color: #64748b;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 16px;
}

.cta p {
    font-size: 1.25rem;
    color: #bfdbfe;
    margin-bottom: 40px;
    line-height: 1.6;
}

.pricing-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 16px;
    max-width: 400px;
    margin: 0 auto;
}

.price {
    margin-bottom: 24px;
}

.current-price {
    font-size: 3rem;
    font-weight: bold;
    display: block;
}

.old-price {
    color: #bfdbfe;
    text-decoration: line-through;
    font-size: 1.125rem;
    display: block;
    margin-bottom: 8px;
}

.offer-badge {
    background: #ef4444;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
}

.guarantees {
    font-size: 14px;
    color: #bfdbfe;
    margin-top: 16px;
}

/* Book Section */
.book {
    padding: 80px 0;
    background: linear-gradient(135deg, #fef7ff 0%, #f3e8ff 100%);
}

.book-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.book-cover-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
}

.book-cover-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    object-fit: contain;
}

.book-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.book-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    width: fit-content;
}

.book-badge i {
    font-size: 16px;
}

.exclusive-highlight {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 2px solid #f59e0b;
    border-radius: 16px;
    padding: 24px;
    margin: 20px 0;
    position: relative;
    overflow: hidden;
}

.exclusive-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.3) 50%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.exclusive-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.exclusive-badge i {
    font-size: 14px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.exclusive-highlight h4 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1e293b;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
    line-height: 1.3;
}

.exclusive-highlight p {
    color: #374151;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
    position: relative;
    z-index: 1;
}

.book-info h3 {
    font-size: 2rem;
    font-weight: bold;
    color: #1e293b;
    margin-bottom: 16px;
}

.book-description {
    color: #64748b;
    line-height: 1.6;
    font-size: 1.1rem;
}

.book-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 20px 0;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #374151;
}

.feature i {
    color: #10b981;
    font-size: 18px;
}

.book-pricing {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
    margin: 20px 0;
}

.price-original {
    color: #94a3b8;
    text-decoration: line-through;
    font-size: 1.125rem;
    margin-bottom: 8px;
}

.price-current {
    font-size: 2.5rem;
    font-weight: bold;
    color: #038BFE;
    margin-bottom: 8px;
}

.price-note {
    color: #10b981;
    font-size: 14px;
    font-weight: 600;
}

.book-guarantee {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #10b981;
    font-size: 14px;
    font-weight: 500;
}

.book-guarantee i {
    font-size: 16px;
}

/* Mentorship Section */
.mentorship {
    padding: 80px 0;
    background: linear-gradient(135deg, #fef7ff 0%, #f3e8ff 100%);
}

.mentorship-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.mentorship-benefits h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1e293b;
    margin-bottom: 32px;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.benefit-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.benefit-item i {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    flex-shrink: 0;
}

.benefit-item:nth-child(1) i {
    background: linear-gradient(135deg, #038BFE 0%, #0274D1 100%);
}

.benefit-item:nth-child(2) i {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.benefit-item:nth-child(3) i {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.benefit-item:nth-child(4) i {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.benefit-item h4 {
    font-size: 1.125rem;
    font-weight: bold;
    color: #1e293b;
    margin-bottom: 8px;
}

.benefit-item p {
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

.mentorship-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 32px;
}

.form-header h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1e293b;
    margin-bottom: 8px;
}

.form-header p {
    color: #64748b;
}

.form-group select {
    padding: 12px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    background: white;
    width: 100%;
}

.form-group select:focus {
    outline: none;
    border-color: #038BFE;
}

.checkbox-group {
    margin: 24px 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #038BFE;
}

.mentorship-guarantee {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #10b981;
    font-size: 14px;
    font-weight: 500;
    justify-content: center;
    margin-top: 16px;
}

.mentorship-guarantee i {
    font-size: 16px;
}

.contact-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-form h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1e293b;
    margin-bottom: 8px;
}

.contact-form > p {
    color: #64748b;
    margin-bottom: 32px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #038BFE;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    align-items: center;
}

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: bold;
    margin-bottom: 16px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-section ul li a:hover i {
    color: #E4405F;
}

.footer-section p {
    color: #94a3b8;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 20px;
    text-align: center;
    color: #94a3b8;
}

/* Responsive Design */

/* Tablet */
@media (max-width: 1024px) {
    .container {
        padding: 0 24px;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero-description {
        font-size: 1.2rem;
        max-width: 700px;
    }
    
    .book-content {
        gap: 50px;
    }
    
    .modules-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .course-stats {
        gap: 30px;
    }
    
    .mentorship-content {
        gap: 50px;
    }
    
    .footer-content {
        gap: 30px;
    }
}

/* Mobile Large */
@media (max-width: 768px) {
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        flex-direction: column;
        padding: 20px;
        gap: 12px;
        z-index: 999;
    }
    
    .nav.mobile-nav-open {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav a {
        padding: 12px 16px;
        text-align: center;
        border-radius: 8px;
    }
    
    .language-bar {
        top: 15px;
        right: 15px;
        padding: 6px 12px;
        max-width: calc(100vw - 30px);
    }
    
    .current-flag {
        width: 18px;
        height: 13px;
    }
    
    .language-dropdown {
        min-width: 140px;
        font-size: 13px;
        padding: 8px 12px;
        padding-right: 30px;
    }
    
    .hero-content {
        gap: 30px;
        padding: 0 10px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 1.1rem;
        max-width: 100%;
        padding: 0 10px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: 100%;
        padding: 0 20px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        padding: 14px 20px;
        font-size: 16px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 16px;
        align-items: center;
        width: 100%;
        padding: 0 20px;
    }
    
    .hero-video {
        width: 100%;
        padding: 0 20px;
    }
    
    .hero-video iframe {
        height: 250px;
        width: 100%;
        max-width: 100%;
        box-shadow: 0 6px 15px rgba(0,0,0,0.06);
        border-radius: 10px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .course-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .modules-grid {
        grid-template-columns: 1fr;
    }
    
    .course-cta {
        padding: 40px 20px;
    }
    
    .course-cta h3 {
        font-size: 1.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .book-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .book-cover-container {
        padding: 10px;
        display: flex;
        justify-content: center;
    }
    
    .book-cover-image {
        max-width: 300px;
        width: 100%;
    }
    
    .exclusive-highlight {
        padding: 20px;
        text-align: center;
    }
    
    .exclusive-highlight h4 {
        font-size: 1.25rem;
        line-height: 1.3;
    }
    
    .book-features {
        text-align: left;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .mentorship-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mentorship-form-wrapper {
        padding: 24px;
    }
    
    .benefits-list {
        gap: 20px;
    }
    
    .benefit-item {
        padding: 20px;
    }
    
    .stats-banner {
        flex-direction: column;
        gap: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 16px;
        border-radius: 8px;
    }
    
    .btn-large {
        padding: 16px 24px;
        font-size: 16px;
        width: 100%;
    }
    
    .checkbox-label {
        font-size: 14px;
        line-height: 1.4;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .footer-section p {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .footer-section ul li a {
        font-size: 14px;
        padding: 8px 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .cta h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero h1 {
        font-size: 2rem;
        line-height: 1.1;
    }
    
    .hero-description {
        font-size: 1rem;
        padding: 0 5px;
    }
    
    .hero-buttons {
        padding: 0 10px;
    }
    
    .hero-buttons .btn {
        padding: 12px 16px;
        font-size: 15px;
    }
    
    .hero-video {
        padding: 0 10px;
    }
    
    .hero-video iframe {
        height: 200px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        border-radius: 8px;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .book-cover-image {
        max-width: 250px;
    }
    
    .exclusive-highlight h4 {
        font-size: 1.1rem;
    }
    
    .modules-grid {
        gap: 16px;
    }
    
    .module-card {
        padding: 20px 16px;
    }
    
    .mentorship-form-wrapper {
        padding: 20px;
    }
    
    .footer-content {
        text-align: center;
        gap: 20px;
    }
    
    .language-bar {
        top: 10px;
        right: 10px;
        padding: 4px 8px;
    }
    
    .language-dropdown {
        min-width: 120px;
        font-size: 12px;
        padding: 6px 8px;
        padding-right: 25px;
    }
    
    .current-flag {
        width: 16px;
        height: 12px;
    }
}

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

.hero-text {
    animation: fadeInUp 0.8s ease-out;
}

.hero-image {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: auto;
    background: rgba(0,0,0,0.5);
    justify-content: center;
    align-items: center;
}
.modal-content {
    background: #fff;
    margin: 10% auto;
    padding: 32px 24px 24px 24px;
    border-radius: 16px;
    max-width: 400px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    position: relative;
    text-align: center;
}

@media (max-width: 768px) {
    .modal-content {
        margin: 20% 20px;
        padding: 24px 20px;
        max-width: none;
        width: calc(100% - 40px);
    }
    
    .modal-content h3 {
        font-size: 1.25rem;
    }
    
    .modal-content input {
        font-size: 16px;
        padding: 12px 16px;
    }
}
.modal-content h3 {
    margin-bottom: 16px;
    color: #038BFE;
    padding-top: 24px;
}
.modal-content label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #374151;
}
.modal-content .close {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 28px;
    color: #64748b;
    cursor: pointer;
}

