
/* Landing Page Leads - Estilos CSS */

/* Hero Section */
.lead-hero-section {
    background: linear-gradient(135deg, #1e40af 0%, #3730a3 50%, #1e3a8a 100%);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    padding: 100px 0 50px 0;
    color: white;
}

.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.bg-shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.bg-shape-1 {
    width: 200px;
    height: 200px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.bg-shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

.bg-shape-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 30%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Hero Content */
.hero-content {
    padding-right: 2rem;
}

.impact-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(239, 68, 68, 0.9);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.3);
    animation: pulse 2s infinite;
}

.badge-icon {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.primary-text {
    color: #f1f5f9;
}

.highlight-text {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(251, 191, 36, 0.5);
}

.secondary-text {
    color: #cbd5e1;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #e2e8f0;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fbbf24;
}

.stat-label {
    font-size: 0.9rem;
    color: #cbd5e1;
    line-height: 1.2;
}

.stat-separator {
    font-size: 1.5rem;
    color: #64748b;
}

/* CTA Buttons */
.btn-primary-large {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
    margin-bottom: 1.5rem;
}

.btn-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.5);
    color: white;
    text-decoration: none;
}

.btn-secondary-large {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: #3b82f6;
    border: 2px solid #3b82f6;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary-large:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
    text-decoration: none;
}

.btn-icon {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.trust-indicators {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.9rem;
}

.trust-item {
    color: #10b981;
    font-weight: 600;
}

/* Lead Form */
.lead-form-container {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 100px;
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: #10b981;
    font-weight: 600;
    font-size: 1rem;
}

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

.lead-form .form-group {
    margin-bottom: 1.5rem;
}

.lead-form .form-group:last-of-type {
    margin-bottom: 1rem;
}

.lead-form label {
    display: block;
    color: #374151;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f9fafb;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
    outline: none;
    border-color: #3b82f6;
    background: white;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 0.85rem;
    line-height: 1.4;
}

.btn-form-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 1.25rem;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.btn-form-submit:hover {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.4);
}

.form-footer {
    text-align: center;
    font-size: 0.8rem;
    color: #6b7280;
}

.privacy-note {
    margin-bottom: 0.5rem;
}

.urgency-note {
    color: #f59e0b;
    font-weight: 600;
}

/* Section Styles */
.problem-section {
    background: #fef2f2;
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    color: #1f2937;
}

.section-subtitle {
    font-size: 1.25rem;
    text-align: center;
    color: #6b7280;
    margin-bottom: 3rem;
}

.problem-icon,
.solution-icon,
.testimonials-icon,
.process-icon {
    font-size: 2rem;
    margin-right: 1rem;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.problem-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.problem-emoji {
    font-size: 2rem;
    flex-shrink: 0;
}

.problem-text strong {
    display: block;
    color: #1f2937;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.problem-text p {
    color: #6b7280;
    margin: 0;
}

.problem-cta {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.urgency-text {
    font-size: 1.2rem;
    color: #ef4444;
    margin-bottom: 2rem;
}

/* Benefits Section */
.benefits-section {
    background: #f8fafc;
    padding: 5rem 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.benefit-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.benefit-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.benefit-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.benefit-description {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.benefit-example {
    background: #f0f9ff;
    color: #1e40af;
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    border-left: 4px solid #3b82f6;
}

.benefits-cta {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, #1e40af, #3730a3);
    border-radius: 24px;
    color: white;
}

.cta-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 2rem;
}

/* Testimonials Section */
.testimonials-section {
    background: white;
    padding: 5rem 0;
}

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

.testimonial-card {
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 20px;
    border-left: 5px solid #10b981;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.testimonial-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    background: #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 1rem;
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-weight: 700;
    color: #1f2937;
    font-size: 1.1rem;
}

.testimonial-business {
    color: #6b7280;
    font-size: 0.9rem;
}

.testimonial-stars {
    font-size: 1rem;
}

.testimonial-content {
    color: #374151;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.testimonial-result {
    background: #10b981;
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
}

.social-proof-cta {
    text-align: center;
    margin-top: 3rem;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

/* Process Section */
.process-section {
    background: #f1f5f9;
    padding: 5rem 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    align-items: center;
}

.process-step {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.3s ease;
}

.process-step.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.step-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.step-description {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.step-time {
    background: #fef3c7;
    color: #92400e;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
}

.process-arrow {
    font-size: 2rem;
    color: #6b7280;
    text-align: center;
    display: none;
}

.process-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Final CTA Section */
.final-cta-section {
    background: linear-gradient(135deg, #1f2937, #111827);
    color: white;
    padding: 5rem 0;
}

.final-cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.2;
}

.warning-icon {
    color: #fbbf24;
    font-size: 2.5rem;
    margin-right: 1rem;
}

.decision-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: center;
}

.decision-option {
    padding: 2.5rem;
    border-radius: 20px;
    text-align: left;
}

.option-bad {
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid #ef4444;
}

.option-good {
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid #10b981;
}

.option-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.option-list {
    list-style: none;
    padding: 0;
}

.option-list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
}

.option-bad .option-list li:before {
    content: "❌";
    position: absolute;
    left: 0;
}

.option-good .option-list li:before {
    content: "✅";
    position: absolute;
    left: 0;
}

.decision-vs {
    font-size: 2rem;
    font-weight: 900;
    color: #fbbf24;
    text-align: center;
}

.final-cta-action {
    text-align: center;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    backdrop-filter: blur(10px);
}

.action-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #fbbf24;
}

.action-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #e5e7eb;
}

.btn-final-cta {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.3rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 12px 35px rgba(239, 68, 68, 0.4);
    animation: glow 2s infinite;
}

@keyframes glow {
    0%, 100% { box-shadow: 0 12px 35px rgba(239, 68, 68, 0.4); }
    50% { box-shadow: 0 12px 35px rgba(239, 68, 68, 0.7); }
}

.btn-final-cta:hover {
    transform: translateY(-3px);
    color: white;
    text-decoration: none;
}

.guarantee-note {
    margin-top: 2rem;
    font-size: 1rem;
    color: #10b981;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-separator {
        display: none;
    }
    
    .lead-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .lead-form-container {
        position: static;
        margin-top: 2rem;
    }
    
    .hero-content {
        padding-right: 0;
        text-align: center;
    }
    
    .problems-grid,
    .benefits-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .process-arrow {
        display: block;
        transform: rotate(90deg);
    }
    
    .decision-comparison {
        grid-template-columns: 1fr;
    }
    
    .decision-vs {
        order: 2;
    }
    
    .option-bad {
        order: 1;
    }
    
    .option-good {
        order: 3;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .final-cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .lead-form-container {
        padding: 1.5rem;
    }
    
    .btn-primary-large,
    .btn-secondary-large,
    .btn-final-cta {
        width: 100%;
        justify-content: center;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .problem-item,
    .benefit-card,
    .testimonial-card,
    .process-step {
        padding: 1.5rem;
    }
}
