/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Paleta de cores verde e preto - tema dinheiro */
    --primary-color: #059669;        /* Verde esmeralda */
    --primary-dark: #047857;         /* Verde escuro */
    --primary-light: #10b981;        /* Verde claro */
    --secondary-color: #16a34a;      /* Verde médio */
    --accent-color: #fbbf24;         /* Dourado */
    --accent-dark: #f59e0b;          /* Dourado escuro */
    
    /* Tons de preto e cinza */
    --black-primary: #111827;        /* Preto principal */
    --black-secondary: #1f2937;      /* Preto secundário */
    --gray-dark: #374151;            /* Cinza escuro */
    --gray-medium: #6b7280;          /* Cinza médio */
    --gray-light: #9ca3af;           /* Cinza claro */
    
    /* Textos */
    --text-primary: #111827;         /* Texto principal */
    --text-secondary: #374151;       /* Texto secundário */
    --text-light: #6b7280;           /* Texto claro */
    --text-white: #ffffff;           /* Texto branco */
    
    /* Backgrounds */
    --background: #ffffff;
    --surface: #f9fafb;
    --surface-dark: #f3f4f6;
    --border: #e5e7eb;
    
    /* Estados */
    --success: #10b981;
    --error: #ef4444;
    --warning: #f59e0b;
    
    /* Sombras */
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-green: 0 10px 25px -5px rgba(5, 150, 105, 0.2);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--background);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: linear-gradient(135deg, var(--black-primary) 0%, var(--black-secondary) 50%, var(--gray-dark) 100%);
    color: var(--text-white);
    padding: 1.5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(5, 150, 105, 0.1) 50%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

.header-content {
    position: relative;
    z-index: 2;
}

.logo {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    background: linear-gradient(135deg, var(--text-white), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 300;
    color: var(--primary-light);
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, 
        #f8fafc 0%, 
        #f1f5f9 25%, 
        rgba(5, 150, 105, 0.05) 50%, 
        #f8fafc 75%, 
        #f1f5f9 100%
    );
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero::before {
    content: '💰';
    position: absolute;
    top: 10%;
    right: 10%;
    font-size: 3rem;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.hero::after {
    content: '📈';
    position: absolute;
    bottom: 15%;
    left: 5%;
    font-size: 2.5rem;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Estilo da Imagem do Mentor - MAIOR */
.mentor-image {
    width: 200px;              /* Aumentado de 120px para 200px */
    height: 200px;             /* Aumentado de 120px para 200px */
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid var(--primary-color);    /* Borda mais espessa */
    box-shadow: 0 15px 40px rgba(5, 150, 105, 0.3);  /* Sombra maior */
    margin-bottom: 2.5rem;     /* Margem maior */
    transition: all 0.3s ease;
    position: relative;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.mentor-image::before {
    content: '';
    position: absolute;
    top: -12px;                /* Ajustado para a nova borda */
    left: -12px;
    right: -12px;
    bottom: -12px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color), var(--primary-light));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mentor-image:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(5, 150, 105, 0.4);  /* Sombra ainda maior no hover */
}

.mentor-image:hover::before {
    opacity: 1;
}

/* Efeito de brilho na imagem do mentor */
.mentor-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
    border-radius: 50%;
}

.mentor-image:hover::after {
    left: 100%;
}

.hero-text {
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--black-primary);
}

.highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-dark));
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.benefits {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    max-width: 500px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
    padding: 1rem;
    background: rgba(5, 150, 105, 0.05);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    transition: transform 0.3s ease;
    text-align: left;
}

.benefit-item:hover {
    transform: translateX(5px);
}

.benefit-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    width: 32px;
    text-align: center;
}

/* Form Container */
.form-container {
    background: linear-gradient(135deg, var(--text-white) 0%, #fafafa 100%);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-green);
    border: 2px solid rgba(5, 150, 105, 0.1);
    position: relative;
    overflow: hidden;
}

.form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--primary-color));
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--black-primary);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-header p {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
}

/* Form Styles */
.lead-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--black-primary);
    font-size: 0.95rem;
}

.form-group label i {
    color: var(--primary-color);
    width: 18px;
    text-align: center;
}

.form-group input,
.form-group select {
    padding: 1rem 1.25rem;
    border: 2px solid var(--border);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--text-white);
    font-weight: 500;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(5, 150, 105, 0.1);
    transform: translateY(-1px);
}

.form-group input.error,
.form-group select.error {
    border-color: var(--error);
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}

.submit-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 50%, var(--black-secondary) 100%);
    color: var(--text-white);
    border: none;
    padding: 1.25rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-green);
}

.submit-btn:active {
    transform: translateY(-1px);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.privacy-text {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-weight: 500;
}

.privacy-text i {
    color: var(--primary-color);
}

/* Social Proof */
.social-proof {
    background: linear-gradient(135deg, var(--black-primary) 0%, var(--black-secondary) 100%);
    padding: 4rem 0;
    text-align: center;
    color: var(--text-white);
    position: relative;
}

.social-proof::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="20" cy="20" r="1" fill="%23059669" opacity="0.1"/><circle cx="80" cy="80" r="1" fill="%2310b981" opacity="0.1"/><circle cx="40" cy="60" r="1" fill="%23fbbf24" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
}

.proof-content {
    position: relative;
    z-index: 2;
}

.proof-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text-white);
    background: linear-gradient(135deg, var(--text-white), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 700px;
    margin: 0 auto;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1rem;
    background: rgba(5, 150, 105, 0.1);
    border-radius: 16px;
    border: 1px solid rgba(5, 150, 105, 0.2);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-light), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-white);
    font-weight: 600;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: var(--black-primary);
    color: var(--text-white);
    text-align: center;
    padding: 2.5rem 0;
    border-top: 2px solid var(--primary-color);
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 24, 39, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(5, 150, 105, 0.3);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 24, 39, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1001;
}

.modal-content {
    background: var(--text-white);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 450px;
    margin: 0 20px;
    box-shadow: var(--shadow-green);
    border: 2px solid rgba(5, 150, 105, 0.1);
    position: relative;
}

.modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--primary-color));
    border-radius: 20px 20px 0 0;
}

.modal-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
}

.modal-header i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.modal-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--black-primary);
}

.modal-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

.modal-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--text-white);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-btn:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--black-secondary));
    transform: translateY(-2px);
    box-shadow: var(--shadow-green);
}

/* Error Messages */
.error-message {
    color: var(--error);
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: none;
    font-weight: 500;
    padding: 0.5rem;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 6px;
    border-left: 3px solid var(--error);
}

.form-group.has-error .error-message {
    display: block;
}

/* Money-themed decorative elements */
.money-symbol {
    color: var(--primary-color);
    font-weight: bold;
    margin: 0 0.25rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-text {
        order: 1;
    }
    
    .form-container {
        order: 2;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .form-container {
        padding: 2rem;
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .benefits {
        margin-bottom: 2rem;
    }
    
    .benefit-item {
        justify-content: center;
        text-align: center;
    }
    
    /* Imagem menor no tablet */
    .mentor-image {
        width: 160px;
        height: 160px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .form-container {
        padding: 1.5rem;
    }
    
    .logo {
        font-size: 1.75rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .modal-content {
        padding: 2rem;
    }
    
    /* Imagem menor no mobile */
    .mentor-image {
        width: 120px;
        height: 120px;
        border-width: 4px;
    }
    
    .mentor-image::before {
        top: -8px;
        left: -8px;
        right: -8px;
        bottom: -8px;
    }
    
    .benefit-item {
        padding: 0.75rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .benefit-item i {
        margin-bottom: 0.5rem;
    }
}

/* Animations aprimoradas */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.mentor-image {
    animation: fadeInScale 0.8s ease-out 0.2s both;
}

.hero-text {
    animation: fadeInUp 0.8s ease-out;
}

.form-container {
    animation: slideInRight 0.8s ease-out 0.3s both;
}

.benefit-item {
    animation: fadeInUp 0.6s ease-out calc(var(--delay, 0) * 0.1s) both;
}

.benefit-item:nth-child(1) { --delay: 4; }
.benefit-item:nth-child(2) { --delay: 5; }
.benefit-item:nth-child(3) { --delay: 6; }

/* Hover effects para elementos interativos */
.form-group input:hover,
.form-group select:hover {
    border-color: var(--primary-light);
}

/* Gradientes adicionais para elementos especiais */
.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.money-bg {
    background: linear-gradient(135deg, 
        rgba(5, 150, 105, 0.05) 0%, 
        rgba(251, 191, 36, 0.05) 100%
    );
}

/* Melhorias na tipografia */
.hero-title strong {
    color: var(--primary-color);
}

.form-header strong {
    color: var(--primary-color);
}

/* Indicador de confiança */
.trust-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 1rem;
}

.trust-indicator i {
    color: var(--accent-color);
}