/* ========================================
   ESTUDIO-WEB - ESTILOS PROFESIONALES
   Marca: Estudio-Web (estudio-web.com.mx)
   Metodología: Mobile First
   ======================================== */

/* ========== PRELOADER ========== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #091E42 0%, #172B4D 50%, #253858 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
}

.preloader-logo {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
}

.orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: orbit-spin 3s linear infinite;
}

.orbit-ring:nth-child(1) {
    width: 120px;
    height: 120px;
    border-top-color: #0052CC;
}

.orbit-ring:nth-child(2) {
    width: 90px;
    height: 90px;
    border-right-color: #FF6B35;
    animation-direction: reverse;
    animation-duration: 2s;
}

.orbit-ring:nth-child(3) {
    width: 60px;
    height: 60px;
    border-bottom-color: #2684FF;
    animation-duration: 1.5s;
}

@keyframes orbit-spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.preloader-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: #FFFFFF;
}

.preloader-title {
    font-family: 'Crimson Text', Georgia, serif;
    font-size: 2rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

.preloader-subtitle {
    font-size: 1rem;
    color: #97A0AF;
    margin-bottom: 2rem;
}

.preloader-bar {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    overflow: hidden;
    margin: 0 auto;
}

.preloader-progress {
    width: 0%;
    height: 100%;
    background: linear-gradient(135deg, #0052CC 0%, #2684FF 100%);
    border-radius: 9999px;
    animation: progress-fill 2.5s ease-out forwards;
}

@keyframes progress-fill {
    0% { width: 0%; }
    100% { width: 100%; }
}

body.loaded {
    overflow: auto;
}

/* ========== VARIABLES CSS ========== */
:root {
    /* Colores Principales - Paleta Estudio-Web */
    --primary: #0052CC;           /* Azul corporativo principal */
    --primary-light: #2684FF;
    --primary-dark: #003D99;
    --primary-rgb: 0, 82, 204;
    
    /* Color de Acento - Naranja Vibrante */
    --accent: #FF6B35;            /* Naranja para CTAs, subrayados, destacados */
    --accent-light: #FF8A5C;
    --accent-dark: #E55A2B;
    --accent-bg: #FFF0EB;         /* Fondo suave naranja */
    
    /* Colores Secundarios - Azul Oscuro */
    --secondary: #172B4D;         /* Texto principal, fondos oscuros */
    --secondary-light: #253858;
    --secondary-dark: #091E42;
    
    /* Colores de Estado */
    --success: #36B37E;
    --warning: #FFAB00;
    --danger: #DE350B;
    --info: #0065FF;
    
    /* Neutros - Escala de grises */
    --white: #FFFFFF;
    --gray-50: #FAFBFC;
    --gray-100: #F4F5F7;
    --gray-200: #EBECF0;
    --gray-300: #DFE1E6;
    --gray-400: #C1C7D0;
    --gray-500: #97A0AF;
    --gray-600: #6B778C;
    --gray-700: #505F79;
    --gray-800: #344563;
    --gray-900: #172B4D;
    --black: #091E42;
    
    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary) 100%);
    --gradient-hero: linear-gradient(135deg, #091E42 0%, #172B4D 50%, #253858 100%);
    
    /* Tipografía - Crimson Text para títulos, Inter para cuerpo */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Crimson Text', Georgia, serif;
    
    /* Tamaños de fuente - Incrementados */
    --text-xs: 1rem;
    --text-sm: 1.125rem;
    --text-base: 1.25rem;
    --text-lg: 1.5rem;
    --text-xl: 1.75rem;
    --text-2xl: 2rem;
    --text-3xl: 2.5rem;
    --text-4xl: 3rem;
    --text-5xl: 4rem;
    --text-6xl: 5rem;
    
    /* Espaciado */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* Bordes - Más sutiles */
    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 8px;
    --radius-xl: 12px;
    --radius-2xl: 16px;
    --radius-full: 9999px;
    
    /* Sombras - Más sutiles y profesionales */
    --shadow-sm: 0 1px 2px rgba(9, 30, 66, 0.08);
    --shadow-md: 0 4px 8px -2px rgba(9, 30, 66, 0.1), 0 0 1px rgba(9, 30, 66, 0.08);
    --shadow-lg: 0 8px 16px -4px rgba(9, 30, 66, 0.12), 0 0 1px rgba(9, 30, 66, 0.08);
    --shadow-xl: 0 16px 32px -8px rgba(9, 30, 66, 0.15), 0 0 1px rgba(9, 30, 66, 0.08);
    --shadow-2xl: 0 24px 48px -12px rgba(9, 30, 66, 0.18);
    
    /* Transiciones */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;
    
    /* Z-index */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal: 400;
    --z-tooltip: 500;
}

/* ========== RESET Y BASE ========== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    /* Prevenir zoom horizontal en móviles */
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: var(--font-primary);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Garantizar ancho mínimo de 300px (móviles más pequeños) */
    min-width: 300px;
    width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Prevenir desbordamiento de texto largo */
p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
    word-wrap: break-word;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* ========== UTILIDADES ========== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.text-primary {
    color: var(--primary);
}

.text-accent {
    color: var(--accent);
}

/* ========== BOTONES - ESTILO PROFESIONAL ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    font-size: var(--text-sm);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    cursor: pointer;
    white-space: nowrap;
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
}

.btn-secondary:hover {
    background: var(--secondary-dark);
    border-color: var(--secondary-dark);
}

.btn-outline {
    background: transparent;
    color: var(--gray-700);
    border: 1px solid var(--gray-300);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(0, 82, 204, 0.04);
}

.btn-white {
    background: var(--white);
    color: var(--secondary);
    border-color: var(--white);
}

.btn-white:hover {
    background: var(--gray-50);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-lg {
    padding: 0.875rem 1.75rem;
    font-size: var(--text-base);
}

.btn-block {
    width: 100%;
}

/* ========== HEADER / NAVEGACIÓN ========== */
/* NOTA: Los estilos del header ahora están en assets/css/header.css */
/* Se mantienen solo estilos de compatibilidad aquí */

/* Imagen del logo en footer */
.footer-logo-img {
    height: 50px;
    width: auto;
    display: block;
}

/* ========== HERO SECTION - ESTILO PROFESIONAL ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
    background: var(--gray-50);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230052CC' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text {
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.875rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 500;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.hero-badge i {
    color: var(--accent);
}

.hero-title {
    font-size: var(--text-3xl);
    font-weight: 700;
    line-height: 1.2;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.hero-title .text-primary {
    color: var(--primary);
}

.hero-description {
    font-size: var(--text-lg);
    color: var(--gray-600);
    max-width: 540px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.hero-trust {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.trust-text {
    font-size: var(--text-sm);
    color: var(--gray-500);
}

.trust-logos {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    font-size: var(--text-2xl);
    transition: color var(--transition-fast);
}

.trust-logo:hover {
    color: var(--gray-600);
}

/* Hero Visual */
.hero-visual {
    display: none;
}

/* Hero Visual Tablet siempre visible */
.hero-visual.hero-visual-tablet {
    display: flex;
}

.hero-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.hero-card-header {
    background: var(--secondary);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero-card-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot-red { background: #FF5F56; }
.dot-yellow { background: #FFBD2E; }
.dot-green { background: #27C93F; }

.hero-card-body {
    padding: 2rem;
}

.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.hero-stat {
    text-align: center;
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
}

.hero-stat-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-md);
    margin: 0 auto 1rem;
    font-size: var(--text-xl);
}

.hero-stat-number {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--secondary);
}

.hero-stat-label {
    font-size: var(--text-sm);
    color: var(--gray-500);
    margin-top: 0.25rem;
}

/* ========== SECCIONES GENERALES ========== */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-badge {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: rgba(0, 82, 204, 0.08);
    color: var(--primary);
    font-size: var(--text-xs);
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.section-description {
    font-size: var(--text-base);
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ========== CLIENTES / LOGOS ========== */
.clients {
    padding: 3rem 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
}

.clients-title {
    text-align: center;
    font-size: var(--text-sm);
    color: var(--gray-500);
    margin-bottom: 2rem;
    font-weight: 500;
}

.clients-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--gray-400);
    transition: color var(--transition-fast);
}

.client-logo:hover {
    color: var(--gray-600);
}

/* ========== BENEFICIOS ========== */
.benefits {
    padding: 4rem 0;
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.benefit-card {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.benefit-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 82, 204, 0.08);
    color: var(--primary);
    font-size: var(--text-xl);
    border-radius: var(--radius-md);
}

.benefit-content {
    flex: 1;
}

.benefit-title {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.benefit-text {
    font-size: var(--text-sm);
    color: var(--gray-600);
    line-height: 1.6;
}

/* ========== SERVICIOS ========== */
.services {
    padding: 4rem 0;
    background: var(--gray-50);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

/* Grid para 3 servicios */
.services-grid-3 {
    grid-template-columns: 1fr;
}

/* Grid para 4 servicios */
.services-grid-4 {
    grid-template-columns: 1fr;
}

.service-card {
    position: relative;
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
}

.service-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.service-card.featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.service-badge {
    position: absolute;
    top: -10px;
    right: 1.5rem;
    padding: 0.25rem 0.75rem;
    background: var(--primary);
    color: var(--white);
    font-size: var(--text-xs);
    font-weight: 600;
    border-radius: var(--radius-sm);
}

.service-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 82, 204, 0.08);
    color: var(--primary);
    font-size: var(--text-xl);
    border-radius: var(--radius-md);
    margin-bottom: 1.25rem;
}

.service-title {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 0.75rem;
}

.service-description {
    font-size: var(--text-sm);
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    margin-bottom: 1.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: var(--text-sm);
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-100);
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li i {
    color: var(--accent);
    font-size: var(--text-sm);
}

/* Botón outline más visible en tarjetas de servicio */
.service-card .btn-outline {
    color: var(--accent);
    border: 1px solid var(--accent);
}

.service-card .btn-outline:hover {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

/* ========== PROCESO ========== */
.process {
    padding: 4rem 0;
    background: var(--secondary);
    color: var(--white);
}

.process .section-badge {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.process .section-title {
    color: var(--white);
}

.process .section-title .text-primary {
    color: var(--accent);
}

.process .section-description {
    color: rgba(255, 255, 255, 0.9);
}

.process-timeline {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.25rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.step-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: var(--white);
    font-size: var(--text-lg);
    font-weight: 700;
    border-radius: var(--radius-md);
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.step-description {
    font-size: var(--text-base);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

/* ========== PORTAFOLIO ========== */
.portfolio {
    padding: 4rem 0;
    background: var(--white);
}

.portfolio-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.filter-btn {
    padding: 0.5rem 1rem;
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--gray-600);
    background: var(--gray-100);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    border: 1px solid transparent;
}

.filter-btn:hover {
    background: var(--gray-200);
}

.filter-btn.active {
    background: var(--primary);
    color: var(--white);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.portfolio-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--gray-100);
}

.portfolio-image {
    position: relative;
    aspect-ratio: 4/3;
}

.portfolio-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    color: var(--white);
    font-size: 2.5rem;
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(9, 30, 66, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-info {
    text-align: center;
    color: var(--white);
    transform: translateY(10px);
    transition: transform var(--transition-base);
}

.portfolio-item:hover .portfolio-info {
    transform: translateY(0);
}

.portfolio-info h4 {
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.portfolio-info p {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.portfolio-link {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--secondary);
    border-radius: 50%;
    transition: all var(--transition-fast);
}

.portfolio-link:hover {
    background: var(--primary);
    color: var(--white);
}

/* ========== ESTADÍSTICAS ========== */
.stats {
    padding: 4rem 0;
    background: var(--primary);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: var(--text-4xl);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.8);
}

/* ========== PRECIOS ========== */
.pricing {
    padding: 4rem 0;
    background: var(--gray-50);
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.pricing-card {
    position: relative;
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
}

.pricing-card:hover {
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.pricing-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.25rem 0.875rem;
    background: var(--primary);
    color: var(--white);
    font-size: var(--text-xs);
    font-weight: 600;
    border-radius: var(--radius-sm);
    white-space: nowrap;
}

.pricing-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.pricing-name {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 0.25rem;
}

.pricing-description {
    font-size: var(--text-sm);
    color: var(--gray-500);
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-top: 1rem;
}

.price-currency {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--gray-600);
}

.price-amount {
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--secondary);
}

.price-period {
    font-size: var(--text-sm);
    color: var(--gray-500);
}

.pricing-features {
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 0;
    font-size: var(--text-sm);
    color: var(--gray-700);
}

.pricing-features li i {
    font-size: var(--text-sm);
    color: var(--accent);
}

.pricing-features li.disabled {
    color: var(--gray-400);
}

.pricing-features li.disabled i {
    color: var(--gray-300);
}

.pricing-note {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
}

.pricing-note p {
    font-size: var(--text-sm);
    color: var(--gray-600);
}

.pricing-note i {
    color: var(--primary);
    margin-right: 0.5rem;
}

.pricing-note a {
    color: var(--primary);
    font-weight: 500;
}

.pricing-note a:hover {
    text-decoration: underline;
}

/* Precio único centrado */
.pricing-single {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.pricing-card.single-price {
    max-width: 480px;
    width: 100%;
    padding: 2.5rem;
    border: 2px solid var(--primary);
}

.pricing-card.single-price .pricing-price {
    margin-bottom: 0.5rem;
}

.pricing-subtitle {
    text-align: center;
    font-size: var(--text-sm);
    color: var(--gray-500);
    margin-bottom: 1.5rem;
}

.btn-block.btn-lg {
    padding: 1rem 2rem;
    font-size: var(--text-base);
}

/* Costos recurrentes */
.pricing-recurring {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    margin-bottom: 2rem;
}

.pricing-recurring h3 {
    text-align: center;
    font-size: var(--text-lg);
    color: var(--secondary);
    margin-bottom: 2rem;
    font-weight: 600;
}

.recurring-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.recurring-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-100);
}

.recurring-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius-md);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.recurring-info h4 {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 0.25rem;
}

.recurring-price {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.recurring-price span {
    font-size: var(--text-sm);
    font-weight: 400;
    color: var(--gray-500);
}

.recurring-desc {
    font-size: var(--text-sm);
    color: var(--gray-600);
    line-height: 1.5;
}

/* ========== TESTIMONIOS ========== */
.testimonials {
    padding: 4rem 0;
    background: var(--white);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--gray-300);
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-rating i {
    color: #FFAB00;
    font-size: var(--text-sm);
}

.testimonial-text {
    font-size: var(--text-base);
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
}

.author-avatar {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-200);
    color: var(--gray-500);
    border-radius: 50%;
    font-size: var(--text-lg);
}

.author-info h4 {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--secondary);
}

.author-info span {
    font-size: var(--text-xs);
    color: var(--gray-500);
}

/* ========== FAQ ========== */
.faq {
    padding: 4rem 0;
    background: var(--gray-50);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem;
    font-size: var(--text-base);
    font-weight: 500;
    color: var(--secondary);
    text-align: left;
    transition: all var(--transition-fast);
}

.faq-question:hover {
    background: var(--gray-50);
}

.faq-question i {
    flex-shrink: 0;
    color: var(--gray-400);
    transition: transform var(--transition-fast);
}

.faq-item.active .faq-question {
    background: var(--gray-50);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 1.25rem 1.25rem;
    font-size: var(--text-sm);
    color: var(--gray-600);
    line-height: 1.7;
}

/* ========== CTA SIMPLE (Sin fondo saturado) ========== */
.process-cta-simple {
    padding: 4rem 0;
    background: var(--gray-50);
    text-align: center;
}

.cta-simple-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.75rem;
}

.cta-simple-content p {
    font-size: var(--text-lg);
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

/* ========== CTA SECTION ========== */
.cta-section {
    padding: 4rem 0;
    background: var(--primary);
}

.cta-content {
    text-align: center;
    color: var(--white);
}

.cta-title {
    font-size: var(--text-2xl);
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: var(--text-base);
    color: rgba(255, 255, 255, 0.85);
    max-width: 500px;
    margin: 0 auto 2rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* ========== CONTACTO ========== */
.contact {
    padding: 4rem 0;
    background: var(--white);
    border-top: 5px solid var(--secondary);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.contact-info {
    text-align: center;
}

.contact-info .section-header {
    text-align: left;
}

.contact-info .section-title {
    text-align: left;
}

.contact-description {
    font-size: var(--text-base);
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.7;
    text-align: left;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 82, 204, 0.08);
    color: var(--primary);
    font-size: var(--text-lg);
    border-radius: var(--radius-md);
}

.contact-label {
    display: block;
    font-size: var(--text-xs);
    color: var(--gray-500);
    margin-bottom: 0.125rem;
}

.contact-text a,
.contact-text span {
    font-size: var(--text-base);
    font-weight: 500;
    color: var(--secondary);
}

.contact-text a:hover {
    color: var(--primary);
}

/* Nota de horario flexible */
.contact-flexible {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--accent);
    margin-top: 0.5rem;
}

.contact-flexible i {
    color: var(--accent);
    font-size: 1rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.contact-flexible p {
    font-size: var(--text-sm);
    color: var(--gray-600);
    line-height: 1.5;
    margin: 0;
}

.contact-social {
    display: flex;
    gap: 0.75rem;
    justify-content: flex-start;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    color: var(--gray-600);
    border-radius: var(--radius-md);
    font-size: var(--text-base);
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: var(--primary);
    color: var(--white);
}

/* Formulario */
.contact-form-wrapper {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: var(--text-base);
    color: var(--secondary);
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 82, 204, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.form-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: var(--text-sm);
    color: var(--gray-500);
}

.form-note i {
    color: var(--accent);
}

/* ========== FOOTER ========== */
.footer {
    background: var(--secondary);
    color: var(--white);
    padding: 3rem 0 0;
}

.footer-simple {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
    padding-bottom: 2rem;
}

.footer-contact-simple {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: var(--text-sm);
}

.footer-contact-item i {
    color: var(--accent-light);
    font-size: 1.25rem;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.8);
    transition: color var(--transition-fast);
}

.footer-contact-item a:hover {
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-bottom: 3rem;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    font-size: var(--text-lg);
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo .logo-icon {
    background: var(--primary);
}

.footer-logo .logo-accent {
    color: rgba(255, 255, 255, 0.9);
}

.footer-description {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social .social-link {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.footer-social .social-link:hover {
    background: var(--primary);
}

.footer-title {
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.25rem;
    color: var(--white);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact li i {
    color: var(--accent-light);
    width: 16px;
}

.footer-contact a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.footer-legal a {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal a:hover {
    color: var(--white);
}

/* Footer Privacy Link */
.footer-privacy {
    margin-top: 0.5rem;
}

.footer-privacy .privacy-link {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.6);
    text-decoration: underline;
    transition: color var(--transition-fast);
}

.footer-privacy .privacy-link:hover {
    color: var(--white);
}

/* ========== WHATSAPP FLOTANTE ========== */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: var(--white);
    font-size: 1.5rem;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: var(--z-fixed);
    transition: all var(--transition-base);
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.5);
}

.whatsapp-tooltip {
    position: absolute;
    right: 65px;
    background: var(--secondary);
    color: var(--white);
    padding: 0.5rem 0.875rem;
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* ========================================
   RESPONSIVE - MEDIA QUERIES (MOBILE FIRST)
   ======================================== */

/* ========== 480px: Móvil Horizontal ========== */
@media (min-width: 480px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .hero-title {
        font-size: var(--text-4xl);
    }
    
    .hero-cta {
        flex-direction: row;
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ========== 768px: Tablet Vertical ========== */
@media (min-width: 768px) {
    .section-title {
        font-size: var(--text-3xl);
    }
    
    .hero-title {
        font-size: var(--text-5xl);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .recurring-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-slider {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-title {
        font-size: var(--text-3xl);
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr 1fr;
    }
    
    .contact-info {
        text-align: left;
    }
    
    .footer-simple {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
    
    .footer-contact-simple {
        flex-direction: row;
        gap: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

/* ========== 1024px: Tablet Horizontal / Laptop ========== */
@media (min-width: 1024px) {
    .nav {
        height: 72px;
    }
    
    .nav-menu {
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        padding: 0;
        box-shadow: none;
    }
    
    .nav-list {
        flex-direction: row;
        gap: 0.25rem;
    }
    
    .nav-link {
        padding: 0.5rem 0.875rem;
    }
    
    .nav-close,
    .nav-toggle {
        display: none;
    }
    
    .nav-buttons {
        display: flex;
        gap: 0.75rem;
    }
    
    .hero {
        padding: 100px 0 80px;
    }
    
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .hero-text {
        text-align: left;
    }
    
    .hero-description {
        margin: 0 0 2rem 0;
    }
    
    .hero-cta {
        justify-content: flex-start;
    }
    
    .hero-trust {
        align-items: flex-start;
    }
    
    .hero-visual {
        display: block;
    }
    
    .section-title {
        font-size: var(--text-4xl);
    }
    
    .benefits,
    .services,
    .portfolio,
    .pricing,
    .testimonials,
    .faq,
    .contact {
        padding: 5rem 0;
    }
    
    .process,
    .cta-section,
    .stats {
        padding: 5rem 0;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .services-grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .process-timeline {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonials-slider {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .cta-title {
        font-size: var(--text-4xl);
    }
    
    .contact-form-wrapper {
        padding: 2.5rem;
    }
}

/* ========== 1280px: Desktop ========== */
@media (min-width: 1280px) {
    .container {
        padding: 0 2rem;
    }
    
    .hero-title {
        font-size: var(--text-6xl);
    }
    
    .benefit-card,
    .service-card {
        padding: 2rem;
    }
    
    .contact-wrapper {
        gap: 4rem;
    }
    
    .stat-number {
        font-size: var(--text-5xl);
    }
}

/* ========== 1440px: Desktop Grande ========== */
@media (min-width: 1440px) {
    .container {
        max-width: 1320px;
    }
    
    .benefits,
    .services,
    .portfolio,
    .pricing,
    .testimonials,
    .faq,
    .contact {
        padding: 6rem 0;
    }
}

/* ========================================
   NUEVOS ESTILOS - ACTUALIZACIONES
   ======================================== */

/* ========== NAVEGACIÓN - FUENTE MÁS GRANDE ========== */
.nav-link {
    font-size: var(--text-base);
}

@media (min-width: 1024px) {
    .nav-link {
        font-size: 0.95rem;
        padding: 0.5rem 0.75rem;
    }
}

@media (min-width: 1280px) {
    .nav-link {
        font-size: var(--text-base);
        padding: 0.5rem 0.875rem;
    }
}

/* ========== HERO - REDUCCIÓN DE PADDING Y NUEVOS ELEMENTOS ========== */
.hero {
    padding: 80px 0 40px;
    min-height: auto;
}

@media (min-width: 768px) {
    .hero {
        padding: 90px 0 50px;
    }
}

@media (min-width: 1024px) {
    .hero {
        padding: 80px 0 40px;
        min-height: auto;
        max-height: 700px;
        height: 80vh;
    }
}

/* ========== HERO DARK - FONDO AZUL OSCURO ========== */
.hero.hero-dark {
    background: var(--secondary-dark);
}

.hero.hero-dark .hero-pattern {
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FFFFFF' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    width: 100%;
    left: 0;
}

.hero.hero-dark .hero-title {
    color: var(--white);
}

.hero.hero-dark .hero-title .text-accent {
    color: var(--accent);
}

.hero.hero-dark .hero-description {
    color: var(--gray-300);
}

.hero.hero-dark .benefit-inline {
    color: var(--gray-200);
}

.hero.hero-dark .benefit-inline i {
    color: var(--accent);
}

.hero.hero-dark .hero-badge-bottom {
    background: var(--accent);
    color: var(--white);
}

/* Hero Dark con imagen - Layout especial */
.hero.hero-dark {
    position: relative;
    overflow: hidden;
}

/* Hero Grid Reversed - Imagen a la izquierda */
.hero-grid-reversed {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid-reversed {
        grid-template-columns: 50% 50%;
        gap: 0;
        position: relative;
    }
    
    .hero-grid-reversed .hero-text {
        grid-column: 2;
        padding-left: 3rem;
    }
    
    .hero-grid-reversed .hero-visual-tablet {
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 50%;
    }
}

/* Hero Visual Tablet */
.hero-visual-tablet {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: visible;
}

/* Sin degradados ni efectos */
.hero-tablet-image {
    width: 100%;
    max-width: 350px;
    height: auto;
    object-fit: contain;
}

@media (min-width: 480px) {
    .hero-tablet-image {
        max-width: 400px;
    }
}

@media (min-width: 768px) {
    .hero-tablet-image {
        max-width: 450px;
    }
}

@media (min-width: 1024px) {
    .hero-visual-tablet {
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 48%;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        overflow: visible;
    }
    
    /* Imagen sin efectos - limpia y clara */
    .hero-tablet-image {
        width: auto;
        height: 100%;
        max-height: 100%;
        max-width: none;
        object-fit: contain;
        object-position: left center;
    }
}

@media (min-width: 1280px) {
    .hero-visual-tablet {
        width: 45%;
    }
}

/* Botón Accent para Hero Dark */
.btn-accent {
    background: var(--accent);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    font-size: var(--text-base);
    font-weight: 600;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-accent:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-accent i {
    transition: transform var(--transition-fast);
}

.btn-accent:hover i {
    transform: translateX(4px);
}

/* ========== CONTACTO WHATSAPP CENTRADO ========== */
.contact-whatsapp-center {
    display: flex;
    justify-content: center;
    padding: 2rem 1rem;
}

.contact-whatsapp-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 3rem 2rem;
    text-align: center;
    max-width: 600px;
    width: 100%;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-200);
}

.whatsapp-icon-large {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
}

.whatsapp-icon-large i {
    font-size: 3rem;
    color: var(--white);
}

.whatsapp-title {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.whatsapp-description {
    font-size: var(--text-base);
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    border: none;
    padding: 1.25rem 2.5rem;
    font-size: var(--text-lg);
    font-weight: 600;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    margin-bottom: 1rem;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.btn-whatsapp i {
    font-size: 1.5rem;
}

.whatsapp-number {
    font-size: var(--text-lg);
    color: var(--gray-600);
    font-weight: 600;
    margin-top: 1rem;
}

@media (min-width: 768px) {
    .contact-whatsapp-card {
        padding: 4rem 3rem;
    }
    
    .whatsapp-icon-large {
        width: 120px;
        height: 120px;
    }
    
    .whatsapp-icon-large i {
        font-size: 3.5rem;
    }
}

/* Hero Price Highlight */
.hero-price-highlight {
    margin-bottom: 1.5rem;
}

.price-tag-large {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: var(--accent-bg);
    border: 2px solid var(--accent);
    border-radius: var(--radius-lg);
    text-align: left;
}

.price-tag-large i {
    color: var(--accent);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.price-text {
    font-size: var(--text-base);
    color: var(--secondary);
    line-height: 1.4;
}

.price-tag-large strong {
    color: var(--accent);
    font-size: var(--text-xl);
}

@media (min-width: 480px) {
    .price-text {
        font-size: var(--text-lg);
    }
    
    .price-tag-large strong {
        font-size: var(--text-2xl);
    }
}

@media (min-width: 768px) {
    .price-tag-large {
        padding: 1.25rem 1.5rem;
    }
    
    .price-text {
        font-size: var(--text-xl);
    }
    
    .price-tag-large strong {
        font-size: var(--text-2xl);
    }
}

/* Hero Badge Bottom */
.hero-badge-bottom {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: var(--secondary);
    color: var(--white);
    border-radius: var(--radius-lg);
    font-size: var(--text-sm);
    font-weight: 600;
    margin-top: 1.5rem;
    box-shadow: var(--shadow-md);
    float: right;
}

.hero-badge-bottom i {
    font-size: 1rem;
}

@media (min-width: 480px) {
    .hero-badge-bottom {
        font-size: var(--text-base);
        padding: 0.75rem 1.5rem;
    }
    
    .hero-badge-bottom i {
        font-size: 1.25rem;
    }
}

@media (min-width: 768px) {
    .hero-badge-bottom {
        font-size: var(--text-lg);
        padding: 0.875rem 1.75rem;
    }
}

/* ========== BENEFICIOS MÓVIL EN HERO ========== */
.hero-benefits-mobile {
    display: block;
    margin-bottom: 1.5rem;
}

.benefits-list-inline {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
    justify-items: start;
}

.benefit-inline {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--text-sm);
    color: var(--gray-700);
    text-align: left;
    justify-content: flex-start;
}

.benefit-inline i {
    color: var(--success);
    font-size: 0.875rem;
    flex-shrink: 0;
}

@media (min-width: 480px) {
    .benefits-list-inline {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem 1rem;
        justify-items: start;
    }
}

@media (min-width: 768px) {
    .benefits-list-inline {
        grid-template-columns: repeat(3, 1fr);
        justify-items: start;
    }
}

@media (min-width: 1024px) {
    /* Beneficios ahora visibles en todas las resoluciones */
}

/* ========== BROWSER WINDOW - ESTILO CHROME ========== */
.browser-window {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.browser-header {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: var(--gray-100);
    border-bottom: 1px solid var(--gray-200);
}

/* Pestañas estilo Chrome */
.browser-tabs {
    display: flex;
    align-items: center;
    padding: 0.5rem 0.5rem 0;
    gap: 0.25rem;
}

.browser-tab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--white);
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    font-size: var(--text-sm);
    color: var(--gray-700);
    max-width: 200px;
}

.browser-tab i {
    color: var(--primary);
    font-size: 0.75rem;
}

.browser-tab span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tab-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--gray-500);
    font-size: 0.625rem;
    border-radius: 50%;
    margin-left: auto;
}

.tab-close:hover {
    background: var(--gray-200);
    color: var(--gray-700);
}

.browser-new-tab {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--gray-500);
    font-size: 0.75rem;
    border-radius: 50%;
}

.browser-new-tab:hover {
    background: var(--gray-200);
    color: var(--gray-700);
}

/* Barra de controles y dirección */
.browser-controls {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 0.75rem;
}

.browser-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--gray-500);
    font-size: 0.75rem;
    border-radius: 50%;
}

.browser-btn:hover {
    background: var(--gray-200);
    color: var(--gray-700);
}

.browser-address-bar {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0.5rem 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--white);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    color: var(--gray-600);
    border: 1px solid var(--gray-200);
}

.browser-address-bar i {
    color: var(--success);
    font-size: 0.75rem;
}

.browser-content {
    padding: 1.5rem;
}

.browser-title {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 1.25rem;
    text-align: left;
}

.browser-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.browser-benefit {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.5rem;
    background: transparent;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.browser-benefit:hover {
    background: var(--gray-50);
}

.browser-benefit i {
    color: var(--success);
    font-size: 0.875rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.browser-benefit span {
    font-size: var(--text-sm);
    color: var(--gray-700);
    line-height: 1.4;
}

/* ========== BENEFITS COMPACT ========== */
.benefits-compact {
    padding: 3rem 0;
}

@media (min-width: 768px) {
    .benefits-compact {
        padding: 4rem 0;
    }
}

.benefits-grid-4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 480px) {
    .benefits-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .benefits-grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ========== PRICING STEPS - NUEVO DISEÑO 3 PASOS ========== */
.pricing-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 992px) {
    .pricing-steps {
        grid-template-columns: repeat(3, 1fr);
        align-items: start;
    }
}

.pricing-step {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem 1.5rem;
    border: 2px solid var(--gray-200);
    transition: all var(--transition-base);
    position: relative;
}

.pricing-step:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-xl);
}

.pricing-step-highlight {
    border-color: var(--accent);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.15);
}

.pricing-step-highlight:hover {
    border-color: var(--accent);
}

.step-badge {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: var(--primary);
    color: var(--white);
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
}

.step-badge-variable {
    background: var(--warning);
    color: var(--secondary);
}

.step-badge-recurring {
    background: var(--success);
}

.step-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    color: var(--primary);
    font-size: 1.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: 1.25rem;
}

.pricing-step-highlight .step-icon {
    background: var(--accent-bg);
    color: var(--accent);
}

.step-name {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1.25rem;
}

.step-price-box {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.pricing-step-highlight .step-price-box {
    background: linear-gradient(135deg, var(--accent-bg) 0%, rgba(255, 107, 53, 0.05) 100%);
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.step-price {
    display: block;
    font-size: var(--text-4xl);
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.pricing-step-highlight .step-price {
    color: var(--accent);
}

.step-price sup {
    font-size: var(--text-xl);
    font-weight: 600;
    vertical-align: super;
}

.step-price small {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--gray-500);
    margin-left: 0.25rem;
}

.step-price-label {
    display: block;
    font-size: var(--text-sm);
    color: var(--gray-600);
    margin-top: 0.5rem;
}

.step-includes {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-includes li {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    padding: 0.5rem 0;
    font-size: var(--text-sm);
    color: var(--gray-700);
}

.step-includes li i {
    color: var(--success);
    margin-top: 0.125rem;
    flex-shrink: 0;
}

/* Cuadro de aviso de precio de mercado */
.step-market-notice {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, var(--warning) 0%, rgba(255, 171, 0, 0.9) 100%);
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
}

.market-notice-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.market-notice-icon i {
    color: var(--white);
    font-size: 1rem;
}

.market-notice-content {
    flex: 1;
}

.market-notice-content strong {
    display: block;
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.market-notice-content p {
    font-size: var(--text-xs);
    color: var(--secondary);
    line-height: 1.5;
    margin: 0;
    opacity: 0.9;
}

.market-notice-content em {
    font-style: normal;
    font-weight: 600;
}

.step-note {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.75rem;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    font-size: var(--text-xs);
    color: var(--gray-600);
    margin-top: 1rem;
}

.step-note i {
    color: var(--gray-500);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

/* Grid de mantenimiento */
.maintenance-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

@media (min-width: 480px) {
    .maintenance-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .maintenance-grid {
        grid-template-columns: 1fr;
    }
}

.maintenance-card {
    padding: 1rem;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    text-align: center;
}

.maintenance-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.maintenance-header i {
    color: var(--primary);
    font-size: 1rem;
}

.maintenance-header h4 {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--secondary);
    margin: 0;
}

.maintenance-price-tag {
    margin-bottom: 0.5rem;
}

.maintenance-price-tag .price {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--primary);
}

.maintenance-price-tag .period {
    font-size: var(--text-sm);
    color: var(--gray-500);
}

.maintenance-card p {
    font-size: var(--text-xs);
    color: var(--gray-600);
    margin: 0;
    line-height: 1.4;
}

/* Apartado de extras */
.extras-callout {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-xl);
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .extras-callout {
        flex-direction: row;
        text-align: left;
        padding: 2.5rem;
    }
}

.extras-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    flex-shrink: 0;
}

.extras-icon i {
    font-size: 2rem;
    color: var(--white);
}

.extras-content {
    flex: 1;
}

.extras-content h3 {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.extras-content p {
    font-size: var(--text-base);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.extras-callout .btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.extras-callout .btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-sm {
    padding: 0.625rem 1.25rem;
    font-size: var(--text-sm);
}

/* ========== COMPONENTE INVERSIÓN - 3 ETAPAS ========== */
.inversion {
    background: var(--gray-50);
    padding: 4rem 0;
}

.inversion-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 1024px) {
    .inversion-container {
        flex-direction: row;
        align-items: stretch;
        gap: 0;
    }
}

/* Etapa individual */
.inversion-etapa {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem 1.5rem;
    border: 2px solid var(--gray-200);
    width: 100%;
    max-width: 400px;
    text-align: center;
    transition: all var(--transition-base);
}

@media (min-width: 1024px) {
    .inversion-etapa {
        flex: 1;
        max-width: none;
    }
}

.inversion-etapa:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-xl);
}

/* Badge de etapa */
.etapa-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--accent);
    color: var(--white);
    font-size: var(--text-base);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-full);
    margin-bottom: 1.25rem;
}

/* Título de etapa */
.etapa-titulo {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1.25rem;
    text-align: center;
}

/* Precio de etapa */
.etapa-precio {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.precio-numero {
    font-size: var(--text-4xl);
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.precio-numero sup {
    font-size: var(--text-xl);
    font-weight: 600;
    vertical-align: super;
}

.precio-moneda {
    font-size: var(--text-base);
    font-weight: 500;
    color: var(--gray-500);
}

.precio-periodo {
    font-size: var(--text-base);
    font-weight: 500;
    color: var(--gray-500);
}

.etapa-tipo {
    display: block;
    font-size: var(--text-sm);
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

/* Frase de impacto en etapa */
.etapa-frase {
    font-size: var(--text-base);
    color: var(--secondary);
    line-height: 1.5;
    margin-bottom: 1.25rem;
    padding: 1rem;
    background: var(--accent-bg);
    border-radius: var(--radius-md);
}

.etapa-frase strong {
    color: var(--accent);
}

/* Lista de incluidos */
.etapa-incluye {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    text-align: left;
}

.etapa-incluye li {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    padding: 0.5rem 0;
    font-size: var(--text-sm);
    color: var(--gray-700);
}

.etapa-incluye li i {
    color: var(--success);
    margin-top: 0.125rem;
    flex-shrink: 0;
}

/* Nota de precios */
.etapa-nota {
    padding: 0.75rem;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    margin-top: 1rem;
}

.nota-precio {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--primary);
    margin: 0 0 0.25rem 0;
}

.nota-fuente {
    font-size: var(--text-xs);
    color: var(--gray-500);
    margin: 0;
}

/* Signo + entre etapas */
.inversion-plus {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    font-size: var(--text-2xl);
    font-weight: 700;
    flex-shrink: 0;
}

@media (min-width: 1024px) {
    .inversion-plus {
        margin: 0 0.5rem;
        align-self: center;
    }
}

/* Módulos de mantenimiento */
.mantenimiento-modulo {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    margin-bottom: 1rem;
    border: 2px solid var(--gray-200);
}

.modulo-header {
    margin-bottom: 0.75rem;
}

.modulo-tipo {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--primary);
    color: var(--white);
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    border-radius: var(--radius-full);
}

.modulo-incluye {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.modulo-incluye li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.375rem 0;
    font-size: var(--text-sm);
    color: var(--gray-700);
}

.modulo-incluye li i {
    color: var(--success);
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.modulo-desc {
    font-size: var(--text-sm);
    color: var(--gray-600);
    margin: 0;
    text-align: center;
}

.etapa-precio-small .precio-numero {
    font-size: var(--text-2xl);
}

/* Cuadro discreto de funcionalidades extras */
.extras-callout-light {
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.5rem;
    margin-bottom: 2rem;
}

.extras-light-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

@media (min-width: 768px) {
    .extras-light-content {
        flex-direction: row;
        text-align: left;
    }
}

.extras-light-content > i {
    font-size: 1.5rem;
    color: var(--accent);
    flex-shrink: 0;
}

.extras-light-content > div {
    flex: 1;
}

.extras-light-content h4 {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--secondary);
    margin: 0 0 0.25rem 0;
}

.extras-light-content p {
    font-size: var(--text-sm);
    color: var(--gray-600);
    margin: 0;
}

.btn-outline-dark {
    background: transparent;
    border: 1px solid var(--gray-400);
    color: var(--secondary);
    padding: 0.5rem 1rem;
    font-size: var(--text-sm);
    border-radius: var(--radius-md);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-base);
    flex-shrink: 0;
}

.btn-outline-dark:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--white);
}

/* Keep old styles for compatibility */
.pricing-stages {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .pricing-stages {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

.pricing-stage {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transition: all var(--transition-base);
}

.pricing-stage:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.stage-number {
    background: var(--primary);
    color: var(--white);
    font-size: var(--text-xl);
    font-weight: 700;
    text-align: center;
    padding: 0.75rem;
}

.stage-content {
    padding: 1.5rem;
}

.stage-title {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 1rem;
    text-align: center;
}

.stage-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.stage-price .price-currency {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--gray-600);
}

.stage-price .price-amount {
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--primary);
}

.stage-price .price-period {
    font-size: var(--text-sm);
    color: var(--gray-500);
}

.stage-subtitle {
    text-align: center;
    font-size: var(--text-sm);
    color: var(--gray-500);
    margin-bottom: 1.5rem;
}

.stage-features {
    list-style: none;
    margin-bottom: 1rem;
}

.stage-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: var(--text-sm);
    color: var(--gray-700);
}

.stage-features li i {
    color: var(--accent);
    margin-top: 0.125rem;
}

.stage-note {
    display: flex;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    margin-top: 1rem;
}

.stage-note i {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.stage-note p {
    font-size: var(--text-xs);
    color: var(--gray-600);
    line-height: 1.5;
}

/* Maintenance items */
.stage-maintenance {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.maintenance-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: var(--radius-md);
}

.maintenance-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.maintenance-info h4 {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 0.25rem;
}

.maintenance-price {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--primary);
}

.maintenance-price span {
    font-size: var(--text-sm);
    font-weight: 400;
    color: var(--gray-500);
}

.maintenance-desc {
    font-size: var(--text-xs);
    color: var(--gray-600);
    line-height: 1.4;
    margin-top: 0.25rem;
}

.pricing-cta {
    text-align: center;
    margin-bottom: 2rem;
}

/* ========== FOOTER REDISEÑADO ========== */
.footer-redesigned {
    padding: 1rem 0 0;
}

.footer-compact {
    padding: 0.85rem 0;
}

.footer-compact-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
    text-align: center;
}

.footer-logo-compact {
    display: inline-block;
}

.footer-logo-img-small {
    height: 35px;
    width: auto;
}

.footer-nav-compact {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1rem;
}

.footer-nav-compact a {
    font-size: calc(var(--text-xs) * 1.15);
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
}

.footer-nav-compact a:hover {
    color: var(--white);
}

.footer-copyright-compact {
    font-size: calc(var(--text-xs) * 1.15);
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

@media (min-width: 768px) {
    .footer-compact-content {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .footer-nav-compact {
        gap: 1.5rem;
    }
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
}

@media (min-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr 2fr;
        gap: 3rem;
    }
}

.footer-brand-section {
    text-align: center;
}

@media (min-width: 768px) {
    .footer-brand-section {
        text-align: left;
    }
}

.footer-redesigned .footer-logo-img {
    height: 45px;
    margin: 0 auto 1rem;
}

@media (min-width: 768px) {
    .footer-redesigned .footer-logo-img {
        margin: 0 0 1rem;
    }
}

.footer-tagline {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    max-width: 300px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .footer-tagline {
        margin: 0;
    }
}

.footer-links-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    .footer-links-section {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-column-title {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links-list a {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
}

.footer-links-list a:hover {
    color: var(--white);
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
}

.footer-contact-link:hover {
    color: var(--white);
}

.footer-contact-link i {
    color: var(--accent-light);
    width: 20px;
    text-align: center;
}

.footer-social-links {
    display: flex;
    gap: 0.5rem;
}

.footer-social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
    transition: all var(--transition-fast);
}

.footer-social-link:hover {
    background: var(--primary);
}

.footer-redesigned .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    text-align: center;
}

.footer-redesigned .footer-bottom p {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   PÁGINAS INTERNAS - HEROES Y COMPONENTES
   ======================================== */

/* Page Hero */
.page-hero {
    padding: 8rem 0 4rem;
    background: var(--gradient-hero);
    color: var(--white);
    text-align: center;
}

.page-hero-proceso {
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary) 60%, var(--primary-dark) 100%);
}

.page-hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.page-hero .section-badge {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-hero-title {
    font-size: var(--text-3xl);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.page-hero-title .text-accent {
    color: var(--accent);
}

.page-hero-description {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

@media (min-width: 768px) {
    .page-hero {
        padding: 10rem 0 5rem;
    }
    
    .page-hero-title {
        font-size: var(--text-4xl);
    }
    
    .page-hero-description {
        font-size: var(--text-xl);
    }
}

/* ========== PROCESO DETALLADO ========== */
.process-detailed {
    padding: 4rem 0;
    background: var(--gray-50);
}

.process-block {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
    overflow: hidden;
}

.process-block-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--secondary);
    color: var(--white);
}

.block-number {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: var(--white);
    font-size: var(--text-2xl);
    font-weight: 700;
    border-radius: var(--radius-lg);
}

.block-title-wrapper {
    flex: 1;
}

.block-title {
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.block-subtitle {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.process-block-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 1.5rem;
}

.block-text p {
    font-size: var(--text-base);
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.block-text h4 {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: var(--text-base);
    color: var(--gray-700);
}

.check-list li i {
    color: var(--success);
    font-size: 1rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.block-highlight {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--primary);
    background: linear-gradient(135deg, rgba(0, 82, 204, 0.08) 0%, rgba(0, 82, 204, 0.04) 100%);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius-md);
}

.block-highlight i {
    color: var(--primary);
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.block-highlight p {
    margin: 0;
    font-size: var(--text-sm);
    color: var(--gray-700);
    line-height: 1.6;
}

.block-highlight-warning {
    background: linear-gradient(135deg, rgba(255, 171, 0, 0.08) 0%, rgba(255, 171, 0, 0.04) 100%);
    border-left-color: var(--warning);
}

.block-highlight-warning i {
    color: var(--warning);
}

.block-highlight-success {
    background: linear-gradient(135deg, rgba(54, 179, 126, 0.08) 0%, rgba(54, 179, 126, 0.04) 100%);
    border-left-color: var(--success);
}

.block-highlight-success i {
    color: var(--success);
}

.block-visual {
    display: none;
}

.visual-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 3rem 2rem;
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    text-align: center;
}

.visual-card i {
    font-size: 3rem;
    color: var(--primary);
}

.visual-card span {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--secondary);
}

.visual-card-accent {
    background: var(--accent-bg);
}

.visual-card-accent i {
    color: var(--accent);
}

@media (min-width: 768px) {
    .process-detailed {
        padding: 5rem 0;
    }
    
    .process-block-header {
        padding: 2rem;
    }
    
    .block-number {
        width: 64px;
        height: 64px;
        font-size: var(--text-3xl);
    }
    
    .block-title {
        font-size: var(--text-2xl);
    }
    
    .process-block-content {
        padding: 2.5rem 2rem;
    }
}

@media (min-width: 1024px) {
    .process-block-content {
        grid-template-columns: 1fr 280px;
        gap: 3rem;
    }
    
    .block-visual {
        display: block;
    }
}

/* ========== CTA SECTION ========== */
.cta-section {
    padding: 4rem 0;
    background: var(--accent);
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.cta-description {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.btn-accent {
    background: var(--white);
    color: var(--accent);
}

.btn-accent:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
    .cta-section {
        padding: 5rem 0;
    }
    
    .cta-title {
        font-size: var(--text-3xl);
    }
}

/* ========================================
   SECCIÓN COMPARACIÓN - WEB VS REDES SOCIALES
   ======================================== */
.comparison-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.comparison-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--primary) 100%);
}

.comparison-section .section-header {
    margin-bottom: 2.5rem;
}

.comparison-section .text-accent {
    color: var(--accent);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.comparison-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Card Redes Sociales (Desventajas) */
.comparison-lose {
    border-color: var(--gray-200);
    position: relative;
}

.comparison-lose::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gray-400);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

/* Card Página Web (Ventajas) */
.comparison-win {
    border-color: var(--primary);
    position: relative;
}

.comparison-win::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

/* Header de cada card */
.comparison-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-200);
}

.comparison-icons {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    height: 48px;
    align-items: center;
}

.comparison-icons i {
    font-size: 2rem;
    color: var(--gray-500);
}

.comparison-icon-main {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
}

.comparison-icon-main i {
    font-size: 1.5rem;
    color: var(--white);
}

.comparison-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.comparison-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-lose {
    background: var(--gray-200);
    color: var(--gray-600);
}

.badge-win {
    background: var(--accent-bg);
    color: var(--accent-dark);
}

/* Lista de comparación */
.comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.9375rem;
    line-height: 1.5;
}

.comparison-item:last-child {
    border-bottom: none;
}

.comparison-item i {
    flex-shrink: 0;
    font-size: 1rem;
    margin-top: 0.15rem;
}

.item-negative i {
    color: var(--gray-400);
}

.item-positive i {
    color: var(--success);
}

.comparison-item strong {
    color: var(--secondary);
}

.item-negative span {
    color: var(--gray-600);
}

.item-positive span {
    color: var(--secondary);
}

/* CTA dentro de la card ganadora */
.comparison-cta {
    margin-top: 1.5rem;
    text-align: center;
}

.comparison-cta .btn-accent {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: var(--accent);
    color: var(--white);
    border-radius: var(--radius-lg);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.comparison-cta .btn-accent:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

/* Nota al final */
.comparison-note {
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 700px;
    margin: 2rem auto 0;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    color: var(--white);
    border-radius: var(--radius-lg);
    font-size: 0.9375rem;
}

.comparison-note i {
    font-size: 1.5rem;
    color: var(--accent-light);
    flex-shrink: 0;
}

.comparison-note p {
    margin: 0;
}

.comparison-note strong {
    color: var(--white);
}

.comparison-note em {
    font-style: normal;
    color: var(--accent-light);
}

/* ========== RESPONSIVE - TABLET (768px+) ========== */
@media (min-width: 768px) {
    .comparison-section {
        padding: 5rem 0;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .comparison-card {
        padding: 2rem;
    }
    
    .comparison-title {
        font-size: 1.375rem;
    }
    
    .comparison-icons i {
        font-size: 1.75rem;
    }
    
    .comparison-icon-main {
        width: 56px;
        height: 56px;
    }
    
    .comparison-icon-main i {
        font-size: 1.5rem;
    }
}

/* ========== RESPONSIVE - DESKTOP (1024px+) ========== */
@media (min-width: 1024px) {
    .comparison-section {
        padding: 6rem 0;
    }
    
    .comparison-section .section-header {
        margin-bottom: 3rem;
    }
    
    .comparison-grid {
        gap: 2.5rem;
    }
    
    .comparison-card {
        padding: 2.5rem;
    }
    
    .comparison-win {
        transform: scale(1.02);
    }
    
    .comparison-win:hover {
        transform: scale(1.02) translateY(-4px);
    }
    
    .comparison-item {
        font-size: 1rem;
    }
    
    .comparison-note {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }
}

/* ========== RESPONSIVE - PANTALLAS MUY PEQUEÑAS (340px-) ========== */
@media (max-width: 340px) {
    .hero {
        padding: 80px 0 40px;
    }
    
    .hero-grid {
        gap: 2rem;
    }
    
    .hero-title {
        font-size: var(--text-2xl);
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: var(--text-base);
        margin-bottom: 1.5rem;
    }
    
    .hero-tablet-image {
        max-width: 250px;
        height: auto;
    }
    
    .benefits-list-inline {
        gap: 0.25rem;
    }
    
    .benefit-inline {
        font-size: var(--text-xs);
    }
    
    .benefit-inline i {
        font-size: 0.75rem;
    }
    
    .container {
        padding: 0 0.75rem;
    }
}
