/* Reset y Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-orange: #FB923C;
    --primary-green: #22C55E;
    --dark-gray: #1E293B;
    --light-gray: #F8FAFC;
    --white: #FFFFFF;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand h2 {
    color: var(--primary-orange);
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-orange);
}

.cta-button {
    background: var(--primary-orange);
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #ea580c;
    transform: translateY(-2px);
    color: white !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark-gray);
    margin: 3px 0;
    transition: 0.3s ease;
    border-radius: 2px;
}

.nav-toggle:hover span {
    background: var(--primary-orange);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(251, 146, 60, 0.6) 100%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.highlight {
    color: var(--primary-orange);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    margin-bottom: 3rem;
}

.stat-item {
    background: rgba(255, 255, 255, 0.2);
    padding: 1.5rem 3rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    display: inline-block;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-orange);
    display: block;
}

.stat-label {
    font-size: 1rem;
    color: white;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-orange);
    color: white;
}

.btn-primary:hover {
    background: #ea580c;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--dark-gray);
    transform: translateY(-3px);
}

/* Sections */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

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

/* Servicios Section */
.servicios {
    padding: 6rem 0;
    background: var(--light-gray);
}

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

.servicio-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-orange);
}

.servicio-card:nth-child(2) {
    border-top-color: var(--primary-green);
}

.servicio-card:nth-child(3) {
    border-top-color: var(--dark-gray);
}

.servicio-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.servicio-icon {
    margin-bottom: 1.5rem;
}

.servicio-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.servicio-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
}

.servicio-card ul {
    list-style: none;
    text-align: left;
}

.servicio-card li {
    padding: 0.5rem 0;
    color: #475569;
    position: relative;
    padding-left: 1.5rem;
}

.servicio-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
}

/* Beneficios Section */
.beneficios {
    padding: 6rem 0;
    background: white;
}

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

.beneficio-card {
    text-align: center;
    padding: 2rem;
}

.beneficio-number {
    font-size: 5rem;
    font-weight: 800;
    color: var(--primary-orange);
    display: block;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.beneficio-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.beneficio-card p {
    color: #64748b;
    font-size: 1.1rem;
}

/* Casos de Éxito Section */
.casos {
    padding: 6rem 0;
    background: var(--light-gray);
}

.casos-carousel {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.casos-container {
    display: flex;
    transition: transform 0.5s ease;
    gap: 2rem;
}

.caso-card {
    min-width: 300px;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.caso-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.caso-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.caso-content {
    padding: 2rem;
}

.caso-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
}

.resultado {
    color: var(--primary-green);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.testimonio {
    color: #64748b;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.negocio-info {
    color: var(--dark-gray);
    font-weight: 500;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-orange);
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: #ea580c;
    transform: scale(1.1);
}

/* Contacto Section */
.contacto {
    padding: 6rem 0;
    background: white;
}

.contacto-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contacto-info h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
}

.contacto-info ul {
    list-style: none;
    margin-bottom: 2rem;
}

.contacto-info li {
    padding: 0.5rem 0;
    color: #64748b;
    position: relative;
    padding-left: 1.5rem;
}

.contacto-info li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
}

.price-highlight {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary-orange), #ea580c);
    border-radius: 16px;
    color: white;
}

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

.price-note {
    font-size: 1rem;
    opacity: 0.9;
}

.contacto-form {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 16px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dark-gray);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: var(--primary-orange);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #ea580c;
    transform: translateY(-2px);
}

.form-note {
    text-align: center;
    color: #64748b;
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Footer */
.footer {
    background: var(--dark-gray);
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-brand h3 {
    color: var(--primary-orange);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: #94a3b8;
}

.footer-contact h4,
.footer-social h4 {
    margin-bottom: 1rem;
    color: var(--primary-orange);
}

.footer-contact p {
    color: #94a3b8;
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-orange);
}

.btn-promo {
    display: inline-block;
    background: var(--primary-green);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.btn-promo:hover {
    background: #16a34a;
}

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

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    animation: pulse 2s infinite;
}

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

.whatsapp-float a {
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.whatsapp-float a:hover {
    transform: scale(1.1);
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Problemas Section */
.problemas {
    padding: 6rem 0;
    background: linear-gradient(135deg, #FEF3C7 0%, #FED7AA 100%);
}

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

.problema-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-left: 4px solid #E53E3E;
}

.problema-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.problema-icon {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #FEE2E2;
    border-radius: 12px;
}

.problema-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--dark-gray);
}

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

/* Beneficios Icon Update */
.beneficio-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background: white;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--light-gray);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--light-gray);
    border-color: var(--primary-orange);
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin: 0;
}

.faq-question svg {
    transition: transform 0.3s ease;
    color: var(--primary-orange);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 1.5rem 2rem;
}

.faq-answer p {
    color: #64748b;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Antes/Después Section */
.antes-despues {
    padding: 6rem 0;
    background: var(--light-gray);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.comparison-col {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.comparison-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid;
}

.antes .comparison-header {
    border-bottom-color: #E53E3E;
}

.despues .comparison-header {
    border-bottom-color: var(--primary-green);
}

.comparison-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-gray);
}

.comparison-icon {
    font-size: 2.5rem;
}

.comparison-list {
    list-style: none;
}

.comparison-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    color: #475569;
    line-height: 1.6;
    border-bottom: 1px solid #E2E8F0;
}

.comparison-list li:last-child {
    border-bottom: none;
}

.antes .comparison-list li:before {
    content: "×";
    position: absolute;
    left: 0;
    color: #E53E3E;
    font-weight: bold;
    font-size: 1.5rem;
}

.despues .comparison-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
    font-size: 1.3rem;
}

/* Ejemplo Ganancia Section */
.ejemplo-ganancia {
    padding: 6rem 0;
    background: linear-gradient(135deg, #DBEAFE 0%, #BFDBFE 100%);
}

.ganancia-content {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.ganancia-historia {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.ganancia-historia h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.ganancia-texto {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.ganancia-timeline {
    position: relative;
    padding-left: 2rem;
}

.ganancia-timeline:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-orange);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
}

.timeline-dot {
    position: absolute;
    left: -2.5rem;
    top: 0;
    width: 16px;
    height: 16px;
    background: var(--primary-orange);
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 0 2px var(--primary-orange);
}

.timeline-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #64748b;
    font-size: 1.05rem;
}

.ganancia-calculo {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.calculo-box {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.calculo-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.calculo-label {
    font-size: 1.1rem;
    color: #64748b;
    font-weight: 500;
}

.calculo-valor {
    font-size: 1.8rem;
    font-weight: 700;
}

.calculo-valor.positivo {
    color: var(--primary-green);
}

.calculo-valor.negativo {
    color: #E53E3E;
}

.calculo-valor.grande {
    font-size: 2.5rem;
}

.calculo-divider {
    height: 2px;
    background: var(--primary-orange);
    margin: 1rem 0;
}

.calculo-item.total {
    background: linear-gradient(135deg, #FEF3C7 0%, #FED7AA 100%);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 1rem;
}

.ganancia-conclusion {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.ganancia-conclusion p {
    color: #64748b;
    font-size: 1.05rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.ganancia-highlight {
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 1.2rem !important;
}

/* Beneficios por Profesión Section */
.beneficios-profesion {
    padding: 6rem 0;
    background: white;
}

.profesion-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 1rem 2rem;
    background: var(--light-gray);
    border: 2px solid transparent;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    background: #E2E8F0;
    color: var(--dark-gray);
}

.tab-btn.active {
    background: var(--primary-orange);
    color: white;
    border-color: var(--primary-orange);
}

.profesion-content {
    max-width: 900px;
    margin: 0 auto;
}

.tab-content {
    display: none;
    animation: fadeInUp 0.5s ease forwards;
}

.tab-content.active {
    display: block;
}

.tab-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 2rem;
    text-align: center;
}

.beneficios-especificos {
    list-style: none;
}

.beneficios-especificos li {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    display: flex;
    gap: 1.5rem;
    align-items: start;
    transition: all 0.3s ease;
}

.beneficios-especificos li:hover {
    background: white;
    box-shadow: var(--shadow);
    transform: translateX(10px);
}

.beneficio-numero {
    background: var(--primary-orange);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    flex-shrink: 0;
}

.beneficios-especificos strong {
    display: block;
    font-size: 1.3rem;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.beneficios-especificos p {
    color: #64748b;
    line-height: 1.6;
    font-size: 1.05rem;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        justify-content: start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-lg);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links a {
        padding: 1rem 2rem;
        width: 80%;
        text-align: center;
        border-bottom: 1px solid #e2e8f0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    /* Hero Section Mobile */
    .hero {
        height: 90vh;
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.1;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .hero-stats {
        margin-bottom: 2rem;
    }
    
    .stat-item {
        padding: 1rem 2rem;
        margin: 0.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    /* Sections Mobile */
    .section {
        padding: 4rem 0;
    }
    
    .section-header {
        margin-bottom: 3rem;
        padding: 0 1rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    /* Servicios Grid Mobile */
    .servicios {
        padding: 4rem 0;
    }
    
    .servicios-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .servicio-card {
        padding: 2rem;
        margin: 0;
    }
    
    /* Problemas Grid Mobile */
    .problemas {
        padding: 4rem 0;
    }
    
    .problemas-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .problema-card {
        padding: 1.5rem;
    }
    
    .problema-card h3 {
        font-size: 1.2rem;
    }
    
    /* Casos Carousel Mobile */
    .casos {
        padding: 4rem 0;
    }
    
    .casos-container {
        flex-direction: column;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .caso-card {
        min-width: 100%;
        margin: 0;
    }
    
    .caso-content {
        padding: 1.5rem;
    }
    
    .carousel-controls {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
    }
    
    .carousel-btn {
        width: 45px;
        height: 45px;
    }
    
    /* FAQ Mobile */
    .faq {
        padding: 4rem 0;
    }
    
    .faq-list {
        padding: 0 1rem;
    }
    
    .faq-question {
        padding: 1.2rem 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
        line-height: 1.4;
    }
    
    .faq-answer {
        padding: 0 1.5rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 1rem 1.5rem;
    }
    
    /* Before/After Mobile */
    .antes-despues {
        padding: 4rem 0;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .comparison-col {
        padding: 2rem;
    }
    
    .comparison-header {
        margin-bottom: 1.5rem;
        padding-bottom: 0.8rem;
    }
    
    .comparison-header h3 {
        font-size: 1.5rem;
    }
    
    .comparison-icon {
        font-size: 2rem;
    }
    
    .comparison-list li {
        padding: 0.8rem 0;
        padding-left: 1.5rem;
        font-size: 1rem;
    }
    
    /* Earnings Example Mobile */
    .ejemplo-ganancia {
        padding: 4rem 0;
    }
    
    .ganancia-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .ganancia-historia {
        padding: 2rem;
    }
    
    .ganancia-historia h3 {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }
    
    .ganancia-texto {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .timeline-item {
        margin-bottom: 1.5rem;
    }
    
    .timeline-content h4 {
        font-size: 1.1rem;
    }
    
    .timeline-content p {
        font-size: 1rem;
    }
    
    .calculo-box {
        padding: 2rem;
    }
    
    .calculo-item {
        padding: 0.8rem 0;
    }
    
    .calculo-label {
        font-size: 1rem;
    }
    
    .calculo-valor {
        font-size: 1.5rem;
    }
    
    .calculo-valor.grande {
        font-size: 2rem;
    }
    
    .ganancia-conclusion {
        padding: 2rem;
    }
    
    /* Profession Benefits Mobile */
    .beneficios-profesion {
        padding: 4rem 0;
    }
    
    .profesion-tabs {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.8rem;
        padding: 0 1rem;
        margin-bottom: 2rem;
    }
    
    .tab-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        flex: 1;
        min-width: calc(50% - 0.4rem);
        text-align: center;
    }
    
    .profesion-content {
        padding: 0 1rem;
    }
    
    .tab-content h3 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    .beneficios-especificos li {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .beneficio-numero {
        align-self: center;
        margin: 0 auto;
    }
    
    .beneficios-especificos strong {
        font-size: 1.2rem;
    }
    
    .beneficios-especificos p {
        font-size: 1rem;
    }
    
    /* Contact Mobile */
    .contacto {
        padding: 4rem 0;
    }
    
    .contacto-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .contacto-info h3 {
        font-size: 1.5rem;
    }
    
    .contacto-info ul {
        margin-bottom: 1.5rem;
    }
    
    .price-highlight {
        padding: 1.5rem;
    }
    
    .price {
        font-size: 2.5rem;
    }
    
    .contacto-form {
        padding: 2rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 16px; /* Prevent zoom on iOS */
    }
    
    .btn-submit {
        padding: 1rem;
        font-size: 1rem;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .footer-bottom {
        padding: 1.5rem 1rem 0;
        font-size: 0.9rem;
    }
    
    /* WhatsApp Float Mobile */
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-float img {
        width: 50px;
        height: 50px;
    }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .stat-item {
        padding: 0.8rem 1.5rem;
        margin: 0.3rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .section-header p {
        font-size: 0.95rem;
    }
    
    .beneficio-number {
        font-size: 2.5rem;
    }
    
    .servicio-card,
    .problema-card,
    .contacto-form,
    .caso-content,
    .comparison-col,
    .ganancia-historia,
    .calculo-box,
    .ganancia-conclusion {
        padding: 1.2rem;
    }
    
    .faq-question {
        padding: 1rem 1.2rem;
    }
    
    .faq-question h3 {
        font-size: 0.95rem;
    }
    
    .faq-answer {
        padding: 0 1.2rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0.8rem 1.2rem;
    }
    
    .comparison-header h3 {
        font-size: 1.3rem;
    }
    
    .comparison-list li {
        padding: 0.6rem 0;
        font-size: 0.95rem;
    }
    
    .ganancia-historia h3 {
        font-size: 1.3rem;
    }
    
    .calculo-valor {
        font-size: 1.3rem;
    }
    
    .calculo-valor.grande {
        font-size: 1.6rem;
    }
    
    .profesion-tabs {
        flex-direction: column;
        gap: 0.6rem;
    }
    
    .tab-btn {
        min-width: 100%;
        padding: 0.7rem 1.2rem;
        font-size: 0.95rem;
    }
    
    .tab-content h3 {
        font-size: 1.4rem;
    }
    
    .beneficios-especificos li {
        padding: 1.2rem;
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .beneficio-numero {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
        margin: 0 auto;
    }
    
    .beneficios-especificos strong {
        font-size: 1.1rem;
    }
    
    .beneficios-especificos p {
        font-size: 0.95rem;
    }
    
    .contacto-info h3 {
        font-size: 1.3rem;
    }
    
    .price {
        font-size: 2rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 0.9rem 1.2rem;
        font-size: 0.95rem;
        max-width: 260px;
    }
    
    .btn-submit {
        padding: 0.9rem;
        font-size: 0.95rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .whatsapp-float img {
        width: 45px;
        height: 45px;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary-orange);
}

.text-success {
    color: var(--primary-green);
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* CSS MÓVIL CRÍTICO - FORZADO AL FINAL */
@media screen and (max-width: 768px) {
    /* NAVEGACIÓN MÓVIL FORZADA */
    .navbar .nav-links {
        position: fixed !important;
        top: 70px !important;
        left: -100% !important;
        width: 100% !important;
        height: calc(100vh - 70px) !important;
        background: white !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: center !important;
        padding-top: 2rem !important;
        transition: left 0.3s ease !important;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1) !important;
        z-index: 999 !important;
        display: flex !important;
    }
    
    .navbar .nav-links.active {
        left: 0 !important;
    }
    
    .navbar .nav-links a {
        padding: 1rem 2rem !important;
        width: 80% !important;
        text-align: center !important;
        border-bottom: 1px solid #e2e8f0 !important;
        color: #1E293B !important;
        text-decoration: none !important;
        font-weight: 500 !important;
        font-size: 1.1rem !important;
        display: block !important;
    }
    
    .navbar .nav-links a:hover {
        background: #F8FAFC !important;
        color: #FB923C !important;
    }
    
    .nav-toggle {
        display: flex !important;
        flex-direction: column !important;
        cursor: pointer !important;
        padding: 0.5rem !important;
        z-index: 1001 !important;
        background: none !important;
        border: none !important;
    }
    
    .nav-toggle span {
        width: 25px !important;
        height: 3px !important;
        background: #1E293B !important;
        margin: 3px 0 !important;
        transition: 0.3s ease !important;
        border-radius: 2px !important;
        display: block !important;
    }
    
    .nav-toggle:hover span {
        background: #FB923C !important;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px) !important;
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0 !important;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px) !important;
    }
    
    /* NAVEGACIÓN DESKTOP OCULTA EN MÓVIL */
    .navbar .nav-links:not(.active) {
        display: none !important;
    }
    
    /* HERO MÓVIL */
    .hero {
        height: 90vh !important;
        padding: 2rem 0 !important;
        min-height: 600px !important;
    }
    
    .hero-title {
        font-size: 2rem !important;
        line-height: 1.1 !important;
        margin-bottom: 1rem !important;
        padding: 0 1rem !important;
    }
    
    .hero-subtitle {
        font-size: 1.1rem !important;
        margin-bottom: 2rem !important;
        padding: 0 1rem !important;
    }
    
    /* CONTAINER MÓVIL */
    .container {
        padding: 0 15px !important;
        max-width: 100% !important;
    }
    
    /* GRIDS MÓVILES */
    .servicios-grid,
    .problemas-grid,
    .beneficios-grid,
    .comparison-grid,
    .ganancia-content {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        padding: 0 1rem !important;
    }
    
    /* CARDS MÓVILES */
    .servicio-card,
    .problema-card,
    .caso-card,
    .comparison-col,
    .ganancia-historia,
    .calculo-box,
    .ganancia-conclusion {
        padding: 1.5rem !important;
        margin: 0 !important;
    }
    
    /* BOTONES MÓVILES */
    .btn-primary,
    .btn-secondary {
        width: 100% !important;
        max-width: 280px !important;
        padding: 1rem 1.5rem !important;
        font-size: 1rem !important;
        margin: 0.5rem 0 !important;
        display: block !important;
        text-align: center !important;
    }
    
    .hero-cta {
        flex-direction: column !important;
        align-items: center !important;
        gap: 1rem !important;
    }
    
    /* WHATSAPP FLOAT */
    .whatsapp-float {
        bottom: 15px !important;
        right: 15px !important;
    }
    
    .whatsapp-float img {
        width: 50px !important;
        height: 50px !important;
    }
    
    /* SECCIONES MÓVILES */
    .section {
        padding: 4rem 0 !important;
    }
    
    .section-header {
        margin-bottom: 3rem !important;
        padding: 0 1rem !important;
    }
    
    .section-header h2 {
        font-size: 1.8rem !important;
        line-height: 1.2 !important;
    }
    
    .section-header p {
        font-size: 1rem !important;
    }
    
    /* FAQ MÓVIL */
    .faq-question {
        padding: 1.2rem 1.5rem !important;
    }
    
    .faq-question h3 {
        font-size: 1.1rem !important;
        line-height: 1.4 !important;
    }
    
    /* TABS MÓVILES */
    .profesion-tabs {
        flex-direction: row !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 0.8rem !important;
        padding: 0 1rem !important;
        margin-bottom: 2rem !important;
    }
    
    .tab-btn {
        padding: 0.8rem 1.5rem !important;
        font-size: 1rem !important;
        flex: 1 !important;
        min-width: calc(50% - 0.4rem) !important;
        text-align: center !important;
    }
    
    /* FORMULARIO MÓVIL */
    .contacto-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        padding: 0 1rem !important;
    }
    
    .contacto-form {
        padding: 2rem !important;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.8rem !important;
        font-size: 16px !important; /* Previene zoom en iOS */
    }
}

@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem !important;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
    }
    
    .section-header h2 {
        font-size: 1.6rem !important;
    }
    
    .servicio-card,
    .problema-card,
    .caso-card,
    .comparison-col,
    .ganancia-historia,
    .calculo-box {
        padding: 1.2rem !important;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 0.9rem 1.2rem !important;
        font-size: 0.95rem !important;
    }
}

/* FORZAR OCULTAR TOGGLE EN DESKTOP */
@media screen and (min-width: 769px) {
    .nav-toggle {
        display: none !important;
    }
    
    .navbar .nav-links {
        display: flex !important;
        position: static !important;
        width: auto !important;
        height: auto !important;
        background: transparent !important;
        flex-direction: row !important;
        padding: 0 !important;
        box-shadow: none !important;
    }
}