:root {
    --primary-dark: #0a0f1a;
    --primary-blue: #3b82f6;
    --primary-light: #eff6ff;
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --text-dark: #0f172a;
    --text-grey: #64748b;
    --text-light: #94a3b8;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.06);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.08);
    --shadow-blue: 0 10px 40px rgba(59, 130, 246, 0.2);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-white);
    color: var(--text-dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

.text-center {
    text-align: center;
}

.text-blue {
    color: var(--primary-blue);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    color: var(--text-grey);
    max-width: 650px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

.btn-primary {
    background: var(--primary-blue);
    color: white;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-block;
    transition: var(--transition);
    box-shadow: var(--shadow-blue);
    border: none;
    cursor: pointer;
    letter-spacing: -0.01em;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.35);
    background: #2563eb;
}

.btn-outline {
    background: transparent;
    color: var(--primary-blue);
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-block;
    transition: var(--transition);
    border: 2px solid var(--primary-blue);
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
}

/* ==================== NAVBAR ==================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 0 5%;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.05);
}

.navbar .logo {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    letter-spacing: -0.02em;
}

.navbar .logo span {
    color: var(--primary-blue);
}

.navbar .logo .logo-icon {
    width: 32px;
    height: 32px;
}

.navbar .nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.navbar .nav-links a {
    text-decoration: none;
    color: var(--text-grey);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
}

.navbar .nav-links a:hover {
    color: var(--text-dark);
}

/* Menú hamburguesa para móviles */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    background: none;
    border: none;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* ==================== HERO ==================== */
.hero {
    margin-top: 72px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    padding: 60px 0 100px;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: clamp(2.6rem, 5vw, 4.2rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--text-dark);
}

.hero-content p {
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    color: var(--text-grey);
    margin: 28px 0 36px;
    line-height: 1.7;
    max-width: 520px;
}

.hero-content .cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid #e2e8f0;
}

.hero-stats .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
}

.hero-stats .stat-label {
    font-size: 0.85rem;
    color: var(--text-grey);
    margin-top: 4px;
}

.hero-mockup {
    background: white;
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.mockup-header {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f1f5f9;
}

.mockup-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.mockup-dot.red { background: #ef4444; }
.mockup-dot.yellow { background: #f59e0b; }
.mockup-dot.green { background: #10b981; }

.mockup-grid {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 16px;
    height: 240px;
}

.mockup-card {
    background: #f8fafc;
    border-radius: var(--radius-sm);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

.mockup-bar {
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
}

.mockup-bar.blue { background: var(--primary-blue); }
.mockup-bar.dark { background: var(--text-dark); }
.mockup-bar.w-60 { width: 60%; }
.mockup-bar.w-40 { width: 40%; }
.mockup-bar.w-80 { width: 80%; }
.mockup-bar.w-30 { width: 30%; }
.mockup-bar.w-70 { width: 70%; }
.mockup-bar.w-90 { width: 90%; }
.mockup-bar.w-100 { width: 100%; }

/* ==================== MÓDULOS ==================== */
.modules-section {
    background: var(--bg-light);
    padding: 80px 0 120px;
}

.module-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
    padding: 48px;
    border-radius: var(--radius-lg);
    background: white;
    box-shadow: var(--shadow-sm);
    border: 1px solid #f1f5f9;
    transition: all 0.4s ease;
}

.module-row:last-child {
    margin-bottom: 0;
}

.module-row:hover {
    box-shadow: var(--shadow-md);
    border-color: #e2e8f0;
}

.module-row:nth-child(even) {
    grid-template-columns: 1fr 1.2fr;
}

.module-row:nth-child(even) .module-image {
    order: 2;
}

.module-image {
    width: 100%;
    height: 450px;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    background-color: #f1f5f9;
}

.module-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.6s ease;
    display: block;
    background: #f8fafc;
}

.module-row:hover .module-image img {
    transform: scale(1.02);
}

.module-text .tag {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary-blue);
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}

.module-text h3 {
    font-size: clamp(1.5rem, 2vw, 2rem);
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.module-text p {
    font-size: 1.1rem;
    color: var(--text-grey);
    line-height: 1.7;
}

/* ==================== PILARES ==================== */
.pillars-section {
    padding: 80px 0 120px;
    background: white;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.pillar-card {
    background: white;
    padding: 48px 32px;
    border-radius: var(--radius-md);
    border: 1px solid #f1f5f9;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), #60a5fa);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.pillar-card:hover::before {
    transform: scaleX(1);
}

.pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: #3b82f6;
}

.pillar-card .num {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    opacity: 0.15;
    display: block;
    margin-bottom: 16px;
    line-height: 1;
    transition: all 0.4s ease;
}

.pillar-card:hover .num {
    opacity: 1;
    color: #2563eb;
    transform: scale(1.1);
    text-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.pillar-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.pillar-card:hover h3 {
    color: #1e40af;
}

.pillar-card p {
    color: var(--text-grey);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ==================== ESTADÍSTICAS ==================== */
.stats-section {
    padding: 80px 0 120px;
    background: var(--primary-dark);
    color: white;
}

.stats-section .section-title {
    color: white;
}

.stats-section .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.stat-item {
    padding: 48px 24px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.06);
}

.stat-item .stat-number {
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 800;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.stat-item .stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 12px;
    font-weight: 500;
}

/* ==================== IMPLEMENTACIÓN ==================== */
.implementation-section {
    padding: 80px 0 120px;
    background: white;
}

.timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.timeline-step {
    text-align: center;
    padding: 32px 24px;
    position: relative;
    background: #f8fafc;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.timeline-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.timeline-step .step-circle {
    width: 64px;
    height: 64px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.4rem;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-blue);
}

.timeline-step h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.timeline-step p {
    color: var(--text-grey);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ==================== CAPACIDADES TÉCNICAS ==================== */
.tech-section {
    padding: 80px 0 120px;
    background: #f8fafc;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.tech-item {
    background: white;
    padding: 48px 32px;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid #f1f5f9;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-sm);
}

.tech-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
}

.tech-icon-css {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    position: relative;
}

.tech-icon-css svg {
    width: 36px;
    height: 36px;
    stroke: var(--primary-blue);
}

.tech-item .tech-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.tech-item .tech-desc {
    font-size: 0.9rem;
    color: var(--text-grey);
    line-height: 1.6;
}

/* ==================== PRECIOS ==================== */
.pricing-section {
    padding: 80px 0 120px;
    background: white;
}

.pricing-card {
    max-width: 650px;
    margin: 0 auto;
    background: white;
    padding: 60px 70px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid #f1f5f9;
    text-align: center;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 40px 100px rgba(0,0,0,0.12);
}

.pricing-card .badge {
    background: var(--primary-blue);
    color: white;
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 28px;
}

.pricing-card .price {
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.03em;
}

.pricing-card .price small {
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--text-grey);
}

.pricing-card .price-details {
    margin: 20px 0 28px;
    color: var(--text-grey);
    line-height: 1.7;
}

.pricing-card .price-features {
    border-top: 1px solid #f1f5f9;
    padding-top: 28px;
    margin-top: 28px;
}

.pricing-card .price-features div {
    padding: 8px 0;
    color: var(--text-dark);
    font-weight: 500;
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--primary-dark);
    color: white;
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer .logo {
    font-weight: 700;
    font-size: 1.5rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer .logo span {
    color: var(--primary-blue);
}

.footer .logo .logo-icon {
    width: 32px;
    height: 32px;
}

.footer p {
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer h4 {
    font-size: 1rem;
    margin-bottom: 20px;
    color: white;
    font-weight: 600;
}

.footer a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s;
    font-size: 0.9rem;
}

.footer a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.8rem;
}

/* ==================== MODALES LEGALES ==================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
    transform: translateY(20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    display: flex;
    flex-direction: column;
}

.modal-overlay.active .modal {
    transform: translateY(0) scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f1f5f9;
}

.modal-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.modal-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: #f1f5f9;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--text-grey);
}

.modal-close:hover {
    background: #ef4444;
    color: white;
    transform: rotate(90deg);
}

.modal-close svg {
    width: 20px;
    height: 20px;
}

.modal-content {
    overflow-y: auto;
    flex-grow: 1;
    padding-right: 8px;
}

.modal-content::-webkit-scrollbar {
    width: 6px;
}

.modal-content::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: var(--primary-blue);
    border-radius: 10px;
}

.modal-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
    margin-top: 24px;
}

.modal-content h4:first-child {
    margin-top: 0;
}

.modal-content p {
    color: var(--text-grey);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.modal-content ul {
    color: var(--text-grey);
    line-height: 1.7;
    font-size: 0.95rem;
    padding-left: 20px;
    margin-bottom: 16px;
}

.modal-content ul li {
    margin-bottom: 8px;
}

.modal-footer {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid #f1f5f9;
    text-align: right;
}

.modal-footer .btn-primary {
    padding: 12px 32px;
    font-size: 0.9rem;
}

/* ==================== WHATSAPP FLOATING BUTTON ==================== */
.whatsapp-float {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    width: 60px;
    height: 60px;
    background: rgba(37, 211, 102, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: #25d366;
    border: 1px solid rgba(37, 211, 102, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 9999 !important;
    text-decoration: none;
}

.whatsapp-float:hover {
    background: #25d366;
    color: white;
    border-color: #25d366;
    transform: scale(1.1);
    box-shadow: 0 8px 40px rgba(37, 211, 102, 0.4);
}

.whatsapp-icon {
    width: 32px;
    height: 32px;
    transition: all 0.3s ease;
}

.whatsapp-float:hover .whatsapp-icon {
    filter: brightness(10);
}

.whatsapp-tooltip {
    display: none;
    position: absolute;
    right: 75px;
    background: #0f172a;
    color: white;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

.whatsapp-float:hover .whatsapp-tooltip {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

/* ==================== RESPONSIVE - MEDIA QUERIES ==================== */

/* Tablets y pantallas medianas */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-content {
        text-align: center;
    }
    .hero-content p {
        margin: 28px auto 36px;
    }
    .hero-content .cta-group {
        justify-content: center;
    }
    .hero-stats {
        justify-content: center;
    }
    .hero-mockup {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .module-row {
        grid-template-columns: 1fr !important;
        gap: 40px;
        padding: 32px;
    }
    .module-row:nth-child(even) .module-image {
        order: 0;
    }
    .module-image {
        height: 350px;
    }
    
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .timeline {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Móviles */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    /* Navbar móvil */
    .navbar .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        padding: 30px 0;
        gap: 20px;
        transform: translateY(-120%);
        transition: transform 0.4s ease;
        box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .navbar .nav-links.active {
        transform: translateY(0);
    }
    
    .navbar .nav-links a {
        font-size: 1.1rem;
        color: var(--text-dark);
    }
    
    .menu-toggle {
        display: flex;
    }
    
    /* Hero móvil */
    .hero {
        padding: 40px 0 60px;
    }
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .hero-stats {
        gap: 24px;
        flex-wrap: wrap;
    }
    .hero-stats .stat-number {
        font-size: 1.5rem;
    }
    .hero-mockup {
        padding: 16px;
    }
    .mockup-grid {
        height: 180px;
        gap: 10px;
    }
    .mockup-card {
        padding: 12px;
    }
    
    /* Módulos móvil */
    .modules-section {
        padding: 60px 0 80px;
    }
    .module-row {
        padding: 24px;
        margin-bottom: 40px;
        gap: 30px;
    }
    .module-image {
        height: 220px;
    }
    .module-text h3 {
        font-size: 1.4rem;
    }
    .module-text p {
        font-size: 1rem;
    }
    
    /* Pilares móvil */
    .pillars-section {
        padding: 60px 0 80px;
    }
    .pillars-grid {
        grid-template-columns: 1fr;
    }
    .pillar-card {
        padding: 32px 24px;
    }
    
    /* Estadísticas móvil */
    .stats-section {
        padding: 60px 0 80px;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .stat-item {
        padding: 32px 20px;
    }
    
    /* Timeline móvil */
    .implementation-section {
        padding: 60px 0 80px;
    }
    .timeline {
        grid-template-columns: 1fr;
    }
    .timeline-step {
        padding: 24px;
    }
    
    /* Tech móvil */
    .tech-section {
        padding: 60px 0 80px;
    }
    .tech-grid {
        grid-template-columns: 1fr;
    }
    .tech-item {
        padding: 32px 24px;
    }
    
    /* Precios móvil */
    .pricing-section {
        padding: 60px 0 80px;
    }
    .pricing-card {
        padding: 40px 24px;
        margin: 0 10px;
    }
    .pricing-card .price {
        font-size: 2.8rem;
    }
    .pricing-card .price small {
        font-size: 1.2rem;
    }
    
    /* Footer móvil */
    .footer {
        padding: 60px 0 30px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    .footer .logo {
        justify-content: center;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    /* Modales móvil */
    .modal {
        padding: 30px 24px;
        max-width: 95%;
        max-height: 85vh;
    }
    
    /* WhatsApp móvil */
    .whatsapp-float {
        bottom: 20px !important;
        right: 20px !important;
        width: 54px;
        height: 54px;
    }
    .whatsapp-icon {
        width: 28px;
        height: 28px;
    }
    .whatsapp-tooltip {
        display: none !important;
    }
}

/* Móviles pequeños */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    .hero-content p {
        font-size: 0.95rem;
    }
    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    .hero-stats .stat {
        text-align: center;
    }
    .module-image {
        height: 180px;
    }
    .pricing-card {
        padding: 30px 16px;
    }
    .pricing-card .price {
        font-size: 2.2rem;
    }
    .btn-primary, .btn-outline {
        padding: 14px 28px;
        font-size: 0.9rem;
    }
    .modal {
        padding: 24px 16px;
    }
    .modal-header h3 {
        font-size: 1.2rem;
    }
}