/* Reset y estilos 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;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* HEADER CON LOGO Y MENÚ */
.site-header {
    background: white;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-align: left;
    display: flex;
    align-items: center;
}

.logo-image {
    height: 200px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
}

/* MENÚ DE NAVEGACIÓN */
.main-nav {
    display: flex;
    align-items: center;
}

.menu-toggle {
    display: none;
    background: #022f6f;
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 1.5em;
    cursor: pointer;
    border-radius: 5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    text-decoration: none;
    color: #022f6f;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 1em;
}

.nav-menu li a:hover {
    color: #c29e49;
}

.nav-menu li a.active {
    color: #c29e49;
    border-bottom: 2px solid #c29e49;
}

.nav-cta {
    background: #c29e49 !important;
    color: white !important;
    padding: 10px 20px !important;
    border-radius: 25px;
}

.nav-cta:hover {
    background: #a88939 !important;
}

/* ABOVE THE FOLD - Lo más importante */
.hero {
    background: linear-gradient(135deg, #022f6f 0%, #034a9a 100%);
    color: white;
    padding: 100px 20px;
    text-align: center;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.hero p {
    font-size: 1.5em;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-primary {
    display: inline-block;
    background: #c29e49;
    color: white;
    padding: 18px 40px;
    font-size: 1.3em;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(194, 158, 73, 0.4);
}

.cta-primary:hover {
    background: #a88939;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(194, 158, 73, 0.5);
}

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: white;
    padding: 15px 35px;
    font-size: 1.1em;
    border: 2px solid white;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    margin-left: 15px;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background: white;
    color: #022f6f;
}

/* QUIÉNES SOMOS */
.about {
    padding: 80px 20px;
    background: white;
}

.about h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 50px;
    color: #022f6f;
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.about-card {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    border-top: 4px solid #c29e49;
}

.about-icon {
    font-size: 3.5em;
    margin-bottom: 20px;
}

.about-card h3 {
    color: #022f6f;
    font-size: 1.8em;
    margin-bottom: 20px;
}

.about-card p {
    color: #666;
    font-size: 1.1em;
    line-height: 1.8;
    text-align: justify;
}

/* LAS APUESTAS - El Problema */
.stakes {
    padding: 80px 20px;
    background: #f8f9fa;
}

.stakes h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 50px;
    color: #022f6f;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.problem-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-left: 4px solid #c29e49;
}

.problem-card h3 {
    color: #c29e49;
    margin-bottom: 15px;
    font-size: 1.4em;
}

.problem-card p {
    color: #666;
    font-size: 1.1em;
}

/* PRINCIPALES DESAFÍOS */
.challenges {
    padding: 80px 20px;
    background: white;
}

.challenges h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #022f6f;
}

.challenges .section-intro {
    text-align: center;
    font-size: 1.2em;
    color: #666;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

.challenges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.challenge-item {
    background: #f8f9fa;
    padding: 35px 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: relative;
    transition: all 0.3s;
    border-left: 4px solid #c29e49;
}

.challenge-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(194, 158, 73, 0.2);
}

.challenge-number {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 3em;
    font-weight: bold;
    color: #c29e49;
    opacity: 0.2;
}

.challenge-item h3 {
    color: #022f6f;
    font-size: 1.3em;
    margin-bottom: 15px;
    padding-right: 50px;
}

.challenge-item p {
    color: #666;
    font-size: 1.05em;
    line-height: 1.6;
}

/* PROPUESTA DE VALOR */
.value-prop {
    padding: 80px 20px;
    background: white;
}

.value-prop h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #022f6f;
}

.value-subtitle {
    text-align: center;
    font-size: 1.3em;
    color: #666;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.benefit {
    text-align: center;
}

.benefit-icon {
    font-size: 3em;
    margin-bottom: 20px;
}

.benefit h3 {
    color: #022f6f;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.benefit p {
    color: #666;
    font-size: 1.05em;
}

/* GARANTIZAMOS RESULTADOS */
.guarantee-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.guarantee-section h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #022f6f;
}

.section-intro {
    text-align: center;
    font-size: 1.2em;
    color: #666;
    margin-bottom: 50px;
}

.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.guarantee-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

.guarantee-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(194, 158, 73, 0.2);
}

.guarantee-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.guarantee-card h3 {
    color: #022f6f;
    margin-bottom: 15px;
    font-size: 1.4em;
}

.guarantee-card p {
    color: #666;
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 15px;
}

.guarantee-card .practice {
    color: #c29e49;
    font-size: 0.95em;
    font-style: italic;
    border-top: 1px solid #e0e0e0;
    padding-top: 15px;
    margin-top: 15px;
}

/* EL PLAN - 3 Pasos Simples */
.plan {
    padding: 80px 20px;
    background: white;
}

.plan h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 60px;
    color: #022f6f;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.step {
    text-align: center;
    padding: 40px 30px;
    background: #f8f9fa;
    border-radius: 10px;
    position: relative;
}

.step-number {
    font-size: 4em;
    color: #c29e49;
    font-weight: bold;
    opacity: 0.3;
    position: absolute;
    top: 10px;
    right: 20px;
}

.step h3 {
    font-size: 1.6em;
    color: #022f6f;
    margin-bottom: 20px;
    position: relative;
    padding-right: 60px;
    line-height: 1.3;
}

.step p {
    font-size: 1.1em;
    color: #666;
}

/* PRECIOS */
.pricing {
    padding: 80px 20px;
    background: #f8f9fa;
}

.pricing h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #022f6f;
}

.pricing-subtitle {
    text-align: center;
    font-size: 1.2em;
    color: #666;
    margin-bottom: 50px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.featured {
    border: 3px solid #c29e49;
    transform: scale(1.05);
}

.pricing-card h3 {
    font-size: 1.8em;
    color: #022f6f;
    margin-bottom: 10px;
}

.pricing-card .subtitle {
    color: #666;
    margin-bottom: 30px;
    font-size: 0.95em;
}

.features-list {
    text-align: left;
    margin-bottom: 30px;
}

.features-list li {
    padding: 8px 0;
    color: #666;
    list-style: none;
    position: relative;
    padding-left: 25px;
}

.features-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #c29e49;
    font-weight: bold;
}

/* SERVICIOS ADICIONALES */
.additional-services {
    padding: 80px 20px;
    background: white;
}

.additional-services h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #022f6f;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2em;
    color: #666;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 20px rgba(194, 158, 73, 0.2);
}

.service-icon {
    font-size: 3em;
    margin-bottom: 20px;
}

.service-card h3 {
    color: #022f6f;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
    font-size: 1.05em;
}

.service-features {
    text-align: left;
    list-style: none;
    margin-bottom: 30px;
    padding: 20px;
    background: white;
    border-radius: 5px;
}

.service-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #666;
    font-size: 0.95em;
}

.service-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #c29e49;
    font-weight: bold;
    font-size: 1.5em;
}

.service-cta {
    display: inline-block;
    background: #c29e49;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.service-cta:hover {
    background: #a88939;
    transform: translateY(-2px);
}

/* PREGUNTAS FRECUENTES */
.faq {
    padding: 80px 20px;
    background: #f8f9fa;
}

.faq h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 60px;
    color: #022f6f;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-top: 3px solid #c29e49;
    transition: transform 0.3s;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(194, 158, 73, 0.2);
}

.faq-item h3 {
    color: #022f6f;
    margin-bottom: 15px;
    font-size: 1.2em;
}

.faq-item p {
    color: #666;
    font-size: 1.05em;
    line-height: 1.6;
}

/* TESTIMONIOS */
.testimonials {
    padding: 80px 20px;
    background: white;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 60px;
    color: #022f6f;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #c29e49;
}

.testimonial-text {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-weight: bold;
    color: #022f6f;
}

.testimonial-company {
    color: #999;
    font-size: 0.95em;
}

/* FOOTER CTA */
.footer-cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, #022f6f 0%, #034a9a 100%);
    color: white;
    text-align: center;
}

.footer-cta h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.footer-cta p {
    font-size: 1.3em;
    margin-bottom: 40px;
    opacity: 0.95;
}

/* REDES SOCIALES EN CONTACTO */
.social-media-contact {
    margin-top: 40px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.social-icon.facebook:hover {
    background: #1877F2;
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon.linkedin:hover {
    background: #0A66C2;
}

.social-icon.whatsapp:hover {
    background: #25D366;
}

/* FOOTER */
footer {
    background: #1a1a1a;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    margin-bottom: 20px;
    color: #c29e49;
}

.footer-section p,
.footer-section a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin: 10px 0;
}

.footer-section a:hover {
    color: #c29e49;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    justify-content: center;
}

.footer-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social-icon:hover {
    transform: translateY(-3px);
}

.footer-social-icon:nth-child(1):hover {
    background: #1877F2;
}

.footer-social-icon:nth-child(2):hover {
    background: #E4405F;
}

.footer-social-icon:nth-child(3):hover {
    background: #0A66C2;
}

.footer-social-icon:nth-child(4):hover {
    background: #25D366;
}

/* JUNK DRAWER - CTAs Intermedios */
.cta-intermediate {
    background: #c29e49;
    padding: 60px 20px;
    text-align: center;
    color: white;
}

.cta-intermediate h3 {
    font-size: 2em;
    margin-bottom: 20px;
}

.cta-intermediate p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        gap: 15px;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .logo-image {
        height: 60px;
        max-width: 220px;
    }
    
    .hero h1 {
        font-size: 2em;
    }
    
    .hero p {
        font-size: 1.2em;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .cta-secondary {
        margin-left: 0;
        margin-top: 15px;
        display: block;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .guarantee-grid {
        grid-template-columns: 1fr;
    }
    
    .challenges-grid {
        grid-template-columns: 1fr;
    }
    
    .challenge-item h3 {
        font-size: 1.2em;
        padding-right: 40px;
    }
    
    .challenge-number {
        font-size: 2.5em;
        right: 15px;
    }
    
    .step h3 {
        font-size: 1.4em;
        padding-right: 50px;
    }
    
    .social-icons {
        gap: 20px;
    }
    
    .social-icon {
        width: 50px;
        height: 50px;
    }
    
    .social-icon svg {
        width: 30px;
        height: 30px;
    }
}