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

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

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

/* Header */
.header {
    background: #F5F5DC;
    padding: 16px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.header-logo {
    height: 60px;
    width: auto;
    border-radius: 50%;
}

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

.header-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.header-nav a:hover,
.header-nav a.active {
    color: #FF8C00;
}

/* Lead Magnet Hero */
.hero-lead {
    background: linear-gradient(135deg, #F5F5DC 0%, #e8e8d8 100%);
    padding: 80px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.lead-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 64px;
    align-items: center;
}

.lead-badge {
    background: #FF8C00;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 24px;
    display: inline-block;
}

.lead-title {
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 700;
    color: #000;
    margin-bottom: 24px;
    line-height: 1.2;
}

.highlight {
    color: #FF8C00;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 3px;
    background: #9CAF88;
    opacity: 0.6;
}

.lead-subtitle {
    font-size: 20px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.5;
}

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

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
}

.benefit-item i {
    color: #9CAF88;
    font-size: 18px;
}

/* Form Card */
.lead-form-container {
    position: sticky;
    top: 120px;
}

.form-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 2px solid #FF8C00;
}

.form-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin-bottom: 12px;
    text-align: center;
}

.form-subtitle {
    font-size: 16px;
    color: #666;
    text-align: center;
    margin-bottom: 32px;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-group {
    position: relative;
}

.input-group i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #9CAF88;
    font-size: 16px;
}

.input-group input,
.input-group select {
    width: 100%;
    padding: 16px 16px 16px 48px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.input-group input:focus,
.input-group select:focus {
    outline: none;
    border-color: #FF8C00;
}

.form-button {
    background: linear-gradient(135deg, #FF8C00 0%, #e67c00 100%);
    color: white;
    padding: 18px 24px;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.form-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.3);
}

.privacy-text {
    font-size: 14px;
    color: #666;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

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

.social-proof h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 48px;
    color: #000;
}

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

.testimonial-card {
    background: #F5F5DC;
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.stars {
    font-size: 20px;
    margin-bottom: 16px;
}

.testimonial-card p {
    font-size: 16px;
    font-style: italic;
    margin-bottom: 16px;
    line-height: 1.5;
}

.author {
    font-size: 14px;
    color: #666;
    font-weight: 600;
}

/* What's Inside */
.whats-inside {
    padding: 80px 0;
    background: rgba(156, 175, 136, 0.1);
}

.whats-inside h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 48px;
    color: #000;
}

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

.inside-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.inside-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.inside-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #000;
}

.inside-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* Final CTA */
.final-cta {
    padding: 80px 0;
    background: #9CAF88;
    text-align: center;
}

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

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.cta-button-final {
    background: #FF8C00;
    color: white;
    padding: 20px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button-final:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 140, 0, 0.4);
}

/* Thank You Page */
.thank-you-hero {
    background: linear-gradient(135deg, #F5F5DC 0%, #e8e8d8 100%);
    padding: 80px 0;
    text-align: center;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.success-icon {
    font-size: 80px;
    margin-bottom: 24px;
}

.thank-title {
    font-size: 42px;
    font-weight: 700;
    color: #000;
    margin-bottom: 24px;
}

.thank-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.download-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    margin: 0 auto;
}

.download-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.download-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #000;
}

.download-card p {
    font-size: 16px;
    color: #666;
    margin-bottom: 24px;
}

.download-button {
    background: #FF8C00;
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s ease;
}

.download-button:hover {
    transform: translateY(-2px);
}

/* Next Steps */
.next-steps {
    padding: 80px 0;
    background: white;
}

.next-steps h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 48px;
    color: #000;
}

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

.step-card {
    text-align: center;
    padding: 32px;
}

.step-number {
    background: #FF8C00;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 24px;
}

.step-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #000;
}

/* Upsell Section */
.upsell-section {
    padding: 80px 0;
    background: rgba(156, 175, 136, 0.1);
}

.upsell-card {
    background: white;
    border-radius: 20px;
    padding: 48px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.upsell-header {
    text-align: center;
    margin-bottom: 40px;
}

.upsell-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    margin-bottom: 16px;
}

.upsell-badge {
    background: linear-gradient(135deg, #FF8C00 0%, #e67c00 100%);
    color: white;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
}

.upsell-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 48px;
    align-items: start;
}

.upsell-left h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #000;
}

.upsell-desc {
    font-size: 16px;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.6;
}

.upsell-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.upsell-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
}

.upsell-benefit i {
    color: #9CAF88;
    font-size: 18px;
    width: 20px;
}

.price-card {
    background: #F5F5DC;
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    border: 2px solid #FF8C00;
}

.price-header h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #000;
}

.price {
    font-size: 36px;
    font-weight: 700;
    color: #FF8C00;
    margin-bottom: 8px;
}

.price span {
    font-size: 18px;
    color: #666;
}

.price-note {
    font-size: 14px;
    color: #666;
    text-decoration: line-through;
    margin-bottom: 24px;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cta-whatsapp {
    background: #25D366;
    color: white;
    padding: 14px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform 0.3s ease;
}

.cta-whatsapp:hover {
    transform: translateY(-2px);
}

.cta-secondary {
    background: transparent;
    color: #FF8C00;
    padding: 14px 20px;
    border: 2px solid #FF8C00;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: #FF8C00;
    color: white;
}

/* Success Stories */
.success-stories {
    padding: 80px 0;
    background: white;
}

.success-stories h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 48px;
    color: #000;
}

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

.story-card {
    background: #F5F5DC;
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.story-result {
    font-size: 36px;
    font-weight: 700;
    color: #FF8C00;
    margin-bottom: 8px;
}

.story-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #000;
}

.story-author {
    font-size: 14px;
    color: #666;
    font-weight: 600;
    margin-top: 16px;
}

/* Services Page */
.services-hero {
    background: linear-gradient(135deg, #F5F5DC 0%, #e8e8d8 100%);
    padding: 80px 0;
    text-align: center;
}

.services-hero h1 {
    font-size: 48px;
    font-weight: 700;
    color: #000;
    margin-bottom: 24px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 64px;
    margin-top: 48px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #FF8C00;
}

.stat-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* Pricing */
.pricing-section {
    padding: 80px 0;
    background: white;
}

.pricing-section h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 48px;
    color: #000;
}

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

.price-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.price-card.featured {
    border-color: #FF8C00;
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(255, 140, 0, 0.2);
}

.popular-badge {
    background: #FF8C00;
    color: white;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
}

.plan-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
}

.plan-subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 24px;
}

.price {
    font-size: 48px;
    font-weight: 700;
    color: #FF8C00;
    margin-bottom: 8px;
}

.price span {
    font-size: 18px;
    color: #666;
}

.plan-period {
    font-size: 14px;
    color: #666;
    margin-bottom: 32px;
}

.plan-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
    text-align: left;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

.feature i {
    color: #9CAF88;
    font-size: 16px;
    width: 16px;
}

.feature.premium-only i {
    color: #FFD700;
}

.plan-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cta-button {
    background: #FF8C00;
    color: white;
    padding: 16px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
}

.cta-button.secondary {
    background: #9CAF88;
}

.cta-button.premium {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
}

/* Footer */
.footer-simple {
    background: #333;
    color: white;
    padding: 48px 0 24px;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.footer-logo {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-contacts a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-contacts a:hover {
    color: #FF8C00;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 24px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FF8C00;
}

/* Follow Section */
.follow-section {
    padding: 60px 0;
    background: rgba(156, 175, 136, 0.1);
    text-align: center;
}

.follow-content h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #000;
}

.follow-content p {
    font-size: 16px;
    color: #666;
    margin-bottom: 32px;
}

.instagram-follow {
    background: linear-gradient(135deg, #E4405F 0%, #C13584 50%, #833AB4 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s ease;
}

.instagram-follow:hover {
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .lead-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .lead-form-container {
        position: static;
    }
    
    .form-card {
        padding: 32px 24px;
    }
    
    .upsell-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 32px;
    }
    
    .header-nav {
        display: none;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .price-card.featured {
        transform: none;
    }
}