/* ========================================
   HUMANPRO - SISTEMA DE DISEÑO TECNOLÓGICO
   Basado en Manual de Marca 2025
   Paleta: #050a30, #233dff, #4d5cce, #f4f6fc
   ======================================== */

/* CRITICAL OVERRIDE: Use only injected navbar from global-components.js */
.main-header,
header.main-header,
.mobile-menu-toggle {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* ============ RESET & VARIABLES ============ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colores principales del manual de marca */
    --primary-dark: #050a30;
    --primary-blue: #233dff;
    --primary-medium: #4d5cce;
    --primary-light: #f4f6fc;
    --white: #ffffff;
    
    /* Colores extendidos */
    --accent-glow: #00d4ff;
    --accent-purple: #7c3aed;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);
    
    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, #233dff 0%, #4d5cce 50%, #7c3aed 100%);
    --gradient-hero: linear-gradient(135deg, #050a30 0%, #0a1454 50%, #050a30 100%);
    --gradient-card: linear-gradient(145deg, rgba(35, 61, 255, 0.1) 0%, rgba(77, 92, 206, 0.05) 100%);
    --gradient-glow: linear-gradient(135deg, #233dff 0%, #00d4ff 100%);
    
    /* Sombras y efectos */
    --shadow-sm: 0 2px 10px rgba(35, 61, 255, 0.1);
    --shadow-md: 0 10px 40px rgba(35, 61, 255, 0.2);
    --shadow-lg: 0 25px 80px rgba(35, 61, 255, 0.3);
    --shadow-glow: 0 0 60px rgba(35, 61, 255, 0.4);
    --shadow-intense: 0 0 100px rgba(35, 61, 255, 0.6);
    
    /* Tipografía */
    --font-primary: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Space Grotesk', 'Montserrat', sans-serif;
    
    /* Transiciones */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    
    /* Espaciado */
    --section-padding: clamp(4rem, 10vw, 8rem);
    --container-width: 1400px;
    --border-radius: 20px;
    --border-radius-lg: 30px;
}

/* ============ FUENTES ============ */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* ============ BASE ============ */
html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background: var(--primary-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

::selection {
    background: var(--primary-blue);
    color: var(--white);
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--primary-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-medium);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-blue);
}

/* ============ ANIMACIÓN DE FONDO TECNOLÓGICO ============ */
.tech-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: var(--gradient-hero);
}

.tech-background::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(35, 61, 255, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(77, 92, 206, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.08) 0%, transparent 60%);
    animation: backgroundShift 20s ease-in-out infinite;
}

@keyframes backgroundShift {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(2%, 2%) rotate(1deg); }
    50% { transform: translate(-1%, 3%) rotate(-1deg); }
    75% { transform: translate(3%, -1%) rotate(0.5deg); }
}

/* Grid tecnológico */
.tech-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: 
        linear-gradient(rgba(35, 61, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(35, 61, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

/* Partículas flotantes */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-blue);
    border-radius: 50%;
    opacity: 0.6;
    animation: particleFloat 15s infinite ease-in-out;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation-delay: 2s; }
.particle:nth-child(3) { left: 30%; animation-delay: 4s; }
.particle:nth-child(4) { left: 40%; animation-delay: 6s; }
.particle:nth-child(5) { left: 50%; animation-delay: 8s; }
.particle:nth-child(6) { left: 60%; animation-delay: 10s; }
.particle:nth-child(7) { left: 70%; animation-delay: 12s; }
.particle:nth-child(8) { left: 80%; animation-delay: 14s; }
.particle:nth-child(9) { left: 90%; animation-delay: 1s; }
.particle:nth-child(10) { left: 95%; animation-delay: 3s; }

@keyframes particleFloat {
    0%, 100% { 
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% { 
        opacity: 0.8;
        transform: scale(1);
    }
    90% { 
        opacity: 0.8;
    }
    100% { 
        transform: translateY(-100vh) scale(0);
        opacity: 0;
    }
}

/* ============ HEADER FUTURISTA ============ */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
    background: transparent;
}

.main-header.scrolled {
    background: rgba(5, 10, 48, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(35, 61, 255, 0.2);
    box-shadow: var(--shadow-md);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    z-index: 1001;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.logo:hover .logo-icon {
    transform: rotate(5deg) scale(1.05);
    box-shadow: var(--shadow-glow);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    background: var(--gradient-glow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

/* Navegación */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition-fast);
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-glow);
    transition: var(--transition-smooth);
    transform: translateX(-50%);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--text-primary);
}

.nav-menu a:hover::before,
.nav-menu a.active::before {
    width: 100%;
}

/* Botón CTA Header */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    background: var(--gradient-primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition-smooth);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.cta-button:hover::before {
    left: 100%;
}

/* Menú móvil */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1002;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: var(--transition-smooth);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -8px);
}

/* ============ CONTENIDO PRINCIPAL ============ */
main {
    position: relative;
    z-index: 1;
}

/* ============ HERO SECTION ============ */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(100px + 4rem) 5% 4rem;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: var(--container-width);
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    background: rgba(35, 61, 255, 0.15);
    border: 1px solid rgba(35, 61, 255, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-glow);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-badge i {
    font-size: 0.9rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.1s forwards;
    opacity: 0;
}

.hero-title .gradient-text {
    background: var(--gradient-glow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-tagline {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 540px;
    animation: fadeInUp 0.8s ease 0.3s forwards;
    opacity: 0;
}

.hero-actions {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--primary-medium);
}

.btn-secondary:hover {
    background: rgba(35, 61, 255, 0.1);
    border-color: var(--primary-blue);
    transform: translateY(-4px);
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    animation: fadeInRight 1s ease 0.5s forwards;
    opacity: 0;
}

.hero-graphic {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
}

.floating-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
    animation: orbFloat 6s ease-in-out infinite;
}

.orb-1 {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle at 30% 30%, var(--primary-blue) 0%, transparent 70%);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle at 30% 30%, var(--primary-medium) 0%, transparent 70%);
    bottom: 20%;
    right: 10%;
    animation-delay: 2s;
}

.orb-3 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle at 30% 30%, var(--accent-glow) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 4s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(10px, -20px) scale(1.05); }
    50% { transform: translate(-15px, 10px) scale(0.95); }
    75% { transform: translate(5px, 15px) scale(1.02); }
}

.hero-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(5, 10, 48, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(35, 61, 255, 0.3);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
    z-index: 10;
}

.hero-card-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
}

.hero-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.hero-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ============ ESTADÍSTICAS ============ */
.stats-bar {
    display: flex;
    justify-content: center;
    gap: 4rem;
    padding: 3rem 5%;
    background: rgba(35, 61, 255, 0.05);
    border-top: 1px solid rgba(35, 61, 255, 0.1);
    border-bottom: 1px solid rgba(35, 61, 255, 0.1);
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-glow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

/* ============ SECCIONES GENERALES ============ */
.section {
    padding: var(--section-padding) 5%;
    position: relative;
}

.section-dark {
    background: rgba(0, 0, 0, 0.2);
}

.section-gradient {
    background: 
        radial-gradient(circle at 20% 50%, rgba(35, 61, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(77, 92, 206, 0.1) 0%, transparent 50%);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
}

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

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(35, 61, 255, 0.15);
    border: 1px solid rgba(35, 61, 255, 0.3);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-glow);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============ TARJETAS DE SERVICIO ============ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(5, 10, 48, 0.6);
    border: 1px solid rgba(35, 61, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-glow);
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.service-tag {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: rgba(35, 61, 255, 0.2);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-glow);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--text-primary);
    list-style: none;
}

.service-features li i {
    color: var(--accent-glow);
    font-size: 0.85rem;
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(35, 61, 255, 0.2);
    margin-top: auto;
}

.service-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.btn-service {
    padding: 0.6rem 1.25rem;
    background: transparent;
    border: 1px solid var(--primary-blue);
    border-radius: 25px;
    color: var(--primary-blue);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.btn-service:hover {
    background: var(--primary-blue);
    color: var(--white);
}

/* Ribbon destacado */
.service-ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.4rem 3rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    transform: rotate(45deg);
    box-shadow: var(--shadow-sm);
}

.service-card.featured {
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-md);
}

/* ============ PILARES/CARACTERÍSTICAS ============ */
.pilares-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.pilar-card {
    background: rgba(5, 10, 48, 0.5);
    border: 1px solid rgba(35, 61, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.pilar-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--gradient-card);
    transition: var(--transition-smooth);
    z-index: 0;
}

.pilar-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-lg);
}

.pilar-card:hover::after {
    height: 100%;
}

.pilar-card > * {
    position: relative;
    z-index: 1;
}

.pilar-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

.pilar-icon i {
    font-size: 2rem;
    color: var(--white);
}

.pilar-card:hover .pilar-icon {
    transform: scale(1.1);
    box-shadow: var(--shadow-glow);
}

.pilar-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.pilar-card > p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.pilar-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.pilar-features span {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
}

.pilar-features i {
    color: var(--accent-glow);
}

/* ============ PROCESO / TIMELINE ============ */
.proceso-timeline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.proceso-step {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: rgba(5, 10, 48, 0.5);
    border: 1px solid rgba(35, 61, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 2rem;
    transition: var(--transition-smooth);
}

.proceso-step:hover {
    transform: translateX(10px);
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-md);
}

.step-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 900;
    background: var(--gradient-glow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    min-width: 80px;
    text-align: center;
}

.step-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

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

.testimonio-card {
    background: rgba(5, 10, 48, 0.6);
    border: 1px solid rgba(35, 61, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 2rem;
    transition: var(--transition-smooth);
}

.testimonio-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-md);
}

.testimonio-stars {
    margin-bottom: 1rem;
}

.testimonio-stars i {
    color: #fbbf24;
    font-size: 1rem;
    margin-right: 0.2rem;
}

.testimonio-texto {
    font-size: 1.05rem;
    color: var(--text-primary);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonio-autor {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonio-avatar {
    width: 55px;
    height: 55px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--white);
}

.testimonio-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.testimonio-info span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.testimonio-resultado {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(35, 61, 255, 0.2);
}

.testimonio-resultado span {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(35, 61, 255, 0.2);
    border: 1px solid var(--primary-blue);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-glow);
}

/* ============ FAQ ============ */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(5, 10, 48, 0.5);
    border: 1px solid rgba(35, 61, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 1.75rem;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.faq-question i {
    color: var(--primary-blue);
    font-size: 1.5rem;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-answer {
    color: var(--text-secondary);
    line-height: 1.7;
    padding-left: 2.5rem;
}

/* ============ CTA SECTION ============ */
.cta-section {
    padding: var(--section-padding) 5%;
    background: 
        radial-gradient(circle at 50% 50%, rgba(35, 61, 255, 0.2) 0%, transparent 60%);
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background: rgba(5, 10, 48, 0.7);
    border: 2px solid rgba(35, 61, 255, 0.3);
    border-radius: var(--border-radius-lg);
    padding: 4rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.cta-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(35, 61, 255, 0.1) 0%, transparent 50%);
    animation: ctaGlow 10s ease-in-out infinite;
}

@keyframes ctaGlow {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(5%, 5%); }
}

.cta-container > * {
    position: relative;
    z-index: 1;
}

.cta-container h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-container > p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.cta-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.cta-features i {
    color: var(--accent-glow);
}

.cta-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============ FORMULARIO DE CONTACTO ============ */
.contact-section {
    padding: var(--section-padding) 5%;
}

.contact-container {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(5, 10, 48, 0.7);
    border: 1px solid rgba(35, 61, 255, 0.3);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.contact-container h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 0.75rem;
}

.contact-container .subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    background: rgba(5, 10, 48, 0.8);
    border: 1px solid rgba(35, 61, 255, 0.3);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(35, 61, 255, 0.2);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
}

.radio-option input {
    width: 20px;
    height: 20px;
    accent-color: var(--primary-blue);
    cursor: pointer;
}

.radio-option label {
    margin: 0;
    cursor: pointer;
    font-weight: 500;
}

.btn-submit {
    width: 100%;
    padding: 1.15rem;
    margin-top: 0.5rem;
}

/* ============ FOOTER ============ */
.main-footer {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(35, 61, 255, 0.2);
    padding: 4rem 5% 2rem;
}

.footer-grid {
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.footer-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.footer-tag {
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.footer-tag.tech {
    background: rgba(35, 61, 255, 0.2);
    color: var(--primary-blue);
    border: 1px solid var(--primary-blue);
}

.footer-tag.human {
    background: rgba(0, 212, 255, 0.2);
    color: var(--accent-glow);
    border: 1px solid var(--accent-glow);
}

.footer-tag.trust {
    background: rgba(124, 58, 237, 0.2);
    color: var(--accent-purple);
    border: 1px solid var(--accent-purple);
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--primary-blue);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--text-primary);
    padding-left: 8px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-secondary);
    margin-bottom: 0.6rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icons a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(35, 61, 255, 0.15);
    border: 1px solid rgba(35, 61, 255, 0.3);
    color: var(--primary-blue);
    transition: var(--transition-smooth);
}

.social-icons a:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(35, 61, 255, 0.2);
    color: var(--text-muted);
    font-size: 0.9rem;
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============ PÁGINAS INTERNAS - HERO PEQUEÑO ============ */
.page-hero {
    padding: calc(100px + 3rem) 5% 3rem;
    text-align: center;
    background: 
        radial-gradient(circle at 50% 50%, rgba(35, 61, 255, 0.15) 0%, transparent 60%);
}

.page-hero .hero-badge {
    animation: none;
}

.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============ DIFERENCIADORES ============ */
.diferenciadores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.diferenciador-item {
    background: rgba(5, 10, 48, 0.5);
    border: 1px solid rgba(35, 61, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 2rem;
    transition: var(--transition-smooth);
}

.diferenciador-item:hover {
    transform: translateY(-8px);
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-md);
}

.diferenciador-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-glow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 1rem;
}

.diferenciador-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.diferenciador-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============ BENEFICIOS GRID ============ */
.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.beneficio-card {
    background: rgba(5, 10, 48, 0.5);
    border: 1px solid rgba(35, 61, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    transition: var(--transition-smooth);
}

.beneficio-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-md);
}

.beneficio-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    transition: var(--transition-smooth);
}

.beneficio-icon i {
    font-size: 1.75rem;
    color: var(--white);
}

.beneficio-card:hover .beneficio-icon {
    transform: scale(1.1);
    box-shadow: var(--shadow-glow);
}

.beneficio-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.beneficio-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============ CASOS DE ÉXITO ============ */
.casos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.caso-card {
    background: rgba(5, 10, 48, 0.6);
    border: 1px solid rgba(35, 61, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 2rem;
    transition: var(--transition-smooth);
}

.caso-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-md);
}

.caso-quote i {
    font-size: 2rem;
    color: var(--primary-medium);
    opacity: 0.5;
}

.caso-texto {
    font-size: 1.05rem;
    line-height: 1.7;
    font-style: italic;
    margin: 1rem 0 1.5rem;
}

.caso-autor {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.caso-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--white);
}

.caso-info h4 {
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.caso-info span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.caso-resultados {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.resultado-tag {
    padding: 0.35rem 0.9rem;
    background: rgba(35, 61, 255, 0.2);
    border: 1px solid var(--primary-blue);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-glow);
}

/* ============ PASOS GRID ============ */
.pasos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.paso-card {
    background: rgba(5, 10, 48, 0.5);
    border: 1px solid rgba(35, 61, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    transition: var(--transition-smooth);
}

.paso-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-md);
}

.paso-numero {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.paso-icono {
    margin: 2rem 0 1.5rem;
}

.paso-icono i {
    font-size: 2.5rem;
    color: var(--primary-blue);
}

.paso-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.paso-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============ VISIÓN SECTION ============ */
.vision-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.vision-text {
    font-size: 1.3rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

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

.vision-stat {
    background: rgba(5, 10, 48, 0.5);
    border: 1px solid rgba(35, 61, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    transition: var(--transition-smooth);
}

.vision-stat:hover {
    transform: translateY(-8px);
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-md);
}

.vision-stat i {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.vision-stat h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.vision-stat p {
    color: var(--text-secondary);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-visual {
        order: 0;
        margin-bottom: 2rem;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-graphic {
        max-width: 350px;
    }
    
    .stats-bar {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 400px;
        height: 100vh;
        background: rgba(5, 10, 48, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 6rem 2rem;
        transition: var(--transition-smooth);
        border-left: 1px solid rgba(35, 61, 255, 0.3);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .nav-menu a {
        font-size: 1.2rem;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
    
    .hero-graphic {
        max-width: 280px;
    }
    
    .services-grid,
    .pilares-grid,
    .testimonios-grid,
    .casos-grid {
        grid-template-columns: 1fr;
    }
    
    .proceso-step {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-container {
        padding: 2.5rem 1.5rem;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .stats-bar {
        gap: 1.5rem;
        padding: 2rem 5%;
    }
    
    .stat-value {
        font-size: 2rem;
    }
    
    .contact-container {
        padding: 2rem 1.5rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* ============ UTILIDADES ============ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.hidden { display: none !important; }
.visible { display: block !important; }

/* Efectos de Hover para links */
a {
    transition: var(--transition-fast);
}

/* Focus states para accesibilidad */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .main-header,
    .tech-background,
    .tech-grid,
    .particles,
    .main-footer {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
}

/* ================================================
   MEGA FOOTER STYLES - Unified across all pages
   ================================================ */

.mega-footer {
    background: linear-gradient(180deg, rgba(5,10,48,1) 0%, rgba(0,0,0,0.95) 100%);
    padding: 5rem 5% 2rem;
    position: relative;
    overflow: hidden;
}

.mega-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #233dff, #00d4ff, #233dff, transparent);
}

.footer-glow {
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(circle, rgba(35,61,255,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.footer-main {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.footer-brand-section .logo {
    margin-bottom: 1.5rem;
}

.footer-brand-section > p {
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.mega-footer .footer-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.mega-footer .footer-tag {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.mega-footer .footer-tag.ai {
    background: rgba(35,61,255,0.2);
    color: #233dff;
    border: 1px solid rgba(35,61,255,0.3);
}

.mega-footer .footer-tag.human {
    background: rgba(0,212,255,0.2);
    color: #00d4ff;
    border: 1px solid rgba(0,212,255,0.3);
}

.mega-footer .footer-tag.trust {
    background: rgba(124,58,237,0.2);
    color: #a78bfa;
    border: 1px solid rgba(124,58,237,0.3);
}

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

.footer-social a {
    width: 50px;
    height: 50px;
    background: rgba(35,61,255,0.1);
    border: 1px solid rgba(35,61,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #233dff;
    border-color: #233dff;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(35,61,255,0.4);
}

.mega-footer .footer-section h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
    position: relative;
    padding-bottom: 0.75rem;
}

.mega-footer .footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #233dff, #00d4ff);
    border-radius: 3px;
}

.mega-footer .footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mega-footer .footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mega-footer .footer-links a:hover {
    color: #00d4ff;
    transform: translateX(5px);
}

.mega-footer .footer-links a i {
    font-size: 0.75rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.mega-footer .footer-links a:hover i {
    opacity: 1;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255,255,255,0.7);
}

.contact-item i {
    width: 40px;
    height: 40px;
    background: rgba(35,61,255,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #233dff;
}

.mega-footer .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.mega-footer .footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #00d4ff;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mega-footer .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* ============================================
   DROPDOWN MENU
   ============================================ */
.nav-menu ul li {
    position: relative;
}

.nav-menu ul li .dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 220px;
    background: rgba(5, 10, 48, 0.98);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(35, 61, 255, 0.3);
    border-radius: 16px;
    padding: 0.75rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 0.5rem;
}

.nav-menu ul li:hover .dropdown {
    opacity: 1;
    visibility: visible;
}

.nav-menu ul li .dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-bottom-color: rgba(35, 61, 255, 0.3);
}

.nav-menu ul li .dropdown a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-menu ul li .dropdown a:hover {
    background: rgba(35, 61, 255, 0.2);
}

.nav-menu ul li .dropdown a i {
    width: 20px;
    color: #00d4ff;
}

.nav-menu ul li > a .fa-chevron-down {
    font-size: 0.7rem;
    margin-left: 0.35rem;
    transition: transform 0.3s ease;
}

.nav-menu ul li:hover > a .fa-chevron-down {
    transform: rotate(180deg);
}

@media (max-width: 968px) {
    .nav-menu ul li .dropdown {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        min-width: 100%;
        margin-top: 0.5rem;
        border: none;
        background: rgba(35, 61, 255, 0.1);
    }
    
    .nav-menu ul li .dropdown::before {
        display: none;
    }
}

/* ============ CÓMO FUNCIONA - STEPS ============ */
.how-it-works {
    padding: 5rem 5%;
    text-align: center;
}

.steps-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 1rem;
    margin: 3rem auto;
    max-width: 1100px;
    flex-wrap: wrap;
}

.step-card {
    background: rgba(5, 10, 48, 0.8);
    border: 2px solid rgba(35, 61, 255, 0.3);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    position: relative;
    transition: all 0.4s ease;
    z-index: 1;
}

.step-card:hover {
    border-color: #00d4ff;
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 212, 255, 0.2);
}

.step-card .step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #233dff, #00d4ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    -webkit-text-fill-color: #fff;
    z-index: 2;
}

.step-card .step-icon {
    width: 80px;
    height: 80px;
    background: rgba(35, 61, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem auto;
    font-size: 2rem;
    color: #00d4ff;
}

.step-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #fff;
}

.step-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
}

.step-connector {
    display: flex;
    align-items: center;
    color: #00d4ff;
    font-size: 1.5rem;
    opacity: 0.5;
    padding-top: 3rem;
}

.how-cta {
    margin-top: 2rem;
}

.btn-how {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #233dff, #00d4ff);
    border-radius: 30px;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-how:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(35, 61, 255, 0.4);
}

@media (max-width: 768px) {
    .step-connector {
        display: none;
    }
    .steps-container {
        flex-direction: column;
        align-items: center;
    }
}

/* Fix botón Consultoría */
.cta-button {
    white-space: nowrap;
    min-width: fit-content;
}

@media (max-width: 900px) {
    .cta-button {
        padding: 0.7rem 1.25rem;
        font-size: 0.85rem;
    }
    .cta-button i {
        display: none;
    }
}

/* ============ MEGA FOOTER MEJORADO ============ */
.mega-footer {
    background: linear-gradient(180deg, rgba(5,10,48,0.98), #030818);
    padding: 4rem 5% 0;
    margin-top: 4rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(35,61,255,0.2);
}

.footer-brand-section p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 1rem 0;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(35,61,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: linear-gradient(135deg, #233dff, #00d4ff);
    transform: translateY(-3px);
}

.footer-section h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: #fff;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #00d4ff;
    padding-left: 5px;
}

.footer-contact p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact i {
    color: #00d4ff;
    width: 16px;
}

.footer-bottom {
    padding: 1.5rem 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

.footer-bottom a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #00d4ff;
}

@media (max-width: 900px) {
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-brand-section {
        grid-column: span 2;
        text-align: center;
    }
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 500px) {
    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-brand-section {
        grid-column: span 1;
    }
    .footer-links {
        align-items: center;
    }
    .footer-contact p {
        justify-content: center;
    }
}

/* ============ SECCIÓN EMPRESAS DESTACADA ============ */
.empresas-destacada {
    padding: 5rem 5%;
    background: linear-gradient(135deg, rgba(139,92,246,0.1), rgba(167,139,250,0.05));
    border-top: 1px solid rgba(139,92,246,0.2);
    border-bottom: 1px solid rgba(139,92,246,0.2);
}

.empresas-container {
    max-width: 1100px;
    margin: 0 auto;
}

.empresas-subtitle {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    text-align: center;
}

.empresas-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.emp-stat {
    text-align: center;
}

.emp-stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #a78bfa;
}

.emp-stat-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

.empresas-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.emp-service {
    background: rgba(139,92,246,0.1);
    border: 1px solid rgba(139,92,246,0.3);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.emp-service:hover {
    border-color: #a78bfa;
    transform: translateY(-5px);
}

.emp-service i {
    font-size: 2rem;
    color: #a78bfa;
    margin-bottom: 0.75rem;
}

.emp-service h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.emp-service p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
}

.empresas-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.btn-empresas-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
    border-radius: 30px;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-empresas-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(139,92,246,0.4);
}

.btn-empresas-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: rgba(139,92,246,0.2);
    border: 2px solid rgba(139,92,246,0.4);
    border-radius: 30px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-empresas-secondary:hover {
    background: rgba(139,92,246,0.3);
}

.empresas-logos {
    text-align: center;
}

.empresas-logos p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 1rem;
}

.logos-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.logo-placeholder {
    padding: 0.5rem 1.5rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: rgba(255,255,255,0.4);
    font-weight: 600;
}

/* ============ NEURAL BACKGROUND FIX ============ */
.neural-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    background: linear-gradient(135deg, #050a30 0%, #0a1628 50%, #050a30 100%);
}

.neural-bg canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}

/* Fix para que el body cubra toda la pantalla */
html, body {
    min-height: 100vh;
}

/* ============ HERRAMIENTAS - ESTILOS UNIFICADOS ============ */
.tool-page {
    padding: calc(100px + 2rem) 5% 4rem;
    min-height: 100vh;
}

.tool-container {
    max-width: 1000px;
    margin: 0 auto;
}

.tool-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.tool-header h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.tool-header p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
}

.highlight-linkedin { color: #0077b5; }
.highlight-green { color: #10b981; }
.highlight-cyan { color: #00d4ff; }
.highlight-purple { color: #a78bfa; }

.linkedin-badge {
    background: linear-gradient(135deg, #0077b5, #00a0dc) !important;
}

.tool-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

@media (max-width: 900px) {
    .tool-grid {
        grid-template-columns: 1fr;
    }
}

.tool-panel {
    background: rgba(5,10,48,0.95);
    border: 2px solid rgba(35,61,255,0.3);
    border-radius: 24px;
    padding: 2rem;
}

.panel-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.panel-title i {
    color: #00d4ff;
}

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

.form-group label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    background: rgba(35,61,255,0.1);
    border: 2px solid rgba(35,61,255,0.3);
    border-radius: 12px;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00d4ff;
}

.form-group textarea {
    min-height: 80px;
    resize: vertical;
}

.btn-tool-primary {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #233dff, #00d4ff);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-tool-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(35,61,255,0.4);
}

.linkedin-btn {
    background: linear-gradient(135deg, #0077b5, #00a0dc);
}

.linkedin-btn:hover {
    box-shadow: 0 10px 30px rgba(0,119,181,0.4);
}

.output-section {
    margin-bottom: 1.5rem;
}

.output-section h4 {
    font-size: 0.9rem;
    color: #00d4ff;
    margin-bottom: 0.5rem;
}

.output-box {
    background: rgba(35,61,255,0.1);
    border: 1px solid rgba(35,61,255,0.3);
    border-radius: 12px;
    padding: 1rem;
    position: relative;
    min-height: 60px;
}

.output-box-large {
    min-height: 200px;
}

.output-text {
    color: rgba(255,255,255,0.9);
    line-height: 1.7;
    white-space: pre-wrap;
    font-size: 0.95rem;
}

.copy-btn {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    padding: 0.4rem 0.75rem;
    background: rgba(35,61,255,0.3);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 0.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: #233dff;
}

.pro-cta-box {
    background: linear-gradient(135deg, rgba(245,158,11,0.15), rgba(251,191,36,0.08));
    border: 2px solid rgba(251,191,36,0.4);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    margin-top: 1.5rem;
}

.pro-cta-box h4 {
    color: #fbbf24;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.pro-cta-box > p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.pro-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    text-align: left;
}

.pro-features li {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.pro-features li i {
    color: #10b981;
    font-size: 0.75rem;
}

.btn-pro-gold {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    border-radius: 30px;
    color: #000;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-pro-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(251,191,36,0.4);
}

/* ============ RESULTADOS DE CALCULADORAS ============ */
.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(35,61,255,0.1);
    border-radius: 12px;
    margin-bottom: 0.75rem;
}

.result-label {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

.result-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #00d4ff;
}

.result-highlight {
    color: #10b981;
}

.result-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(16,185,129,0.2), rgba(0,212,255,0.1));
    border: 2px solid rgba(16,185,129,0.4);
    border-radius: 16px;
    margin-top: 1rem;
}

.result-value-total {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: #10b981;
}

.disclaimer-box {
    display: flex;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(251,191,36,0.1);
    border: 1px solid rgba(251,191,36,0.3);
    border-radius: 12px;
    margin-top: 1rem;
}

.disclaimer-box i {
    color: #fbbf24;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.disclaimer-box p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
    margin: 0;
}

/* Info Cards */
.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.info-card {
    background: rgba(5,10,48,0.95);
    border: 2px solid rgba(35,61,255,0.3);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: #00d4ff;
    transform: translateY(-5px);
}

.info-card i {
    font-size: 2rem;
    color: #00d4ff;
    margin-bottom: 1rem;
}

.info-card h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.info-card p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

/* ============ PÁGINAS DE CIUDADES ============ */
.city-hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(100px + 2rem) 5% 4rem;
    text-align: center;
}

.city-hero-content {
    max-width: 700px;
}

.city-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(239,68,68,0.2);
    border: 1px solid rgba(239,68,68,0.4);
    border-radius: 25px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.city-badge i {
    color: #ef4444;
}

.city-hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.city-hero h1 span {
    color: #00d4ff;
}

.city-hero p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.city-stats {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.city-stat {
    text-align: center;
}

.city-stat .stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.25rem;
    font-weight: 800;
    color: #00d4ff;
}

.city-stat .stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

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

.btn-city-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #233dff, #00d4ff);
    border-radius: 30px;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-city-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(35,61,255,0.4);
}

.btn-city-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 30px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-city-secondary:hover {
    background: rgba(255,255,255,0.15);
}

/* City Services */
.city-services {
    padding: 4rem 5%;
    background: rgba(5,10,48,0.95);
}

.city-services h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    text-align: center;
    margin-bottom: 2rem;
}

.city-services h2 span {
    color: #00d4ff;
}

.city-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.city-service-card {
    background: rgba(35,61,255,0.1);
    border: 2px solid rgba(35,61,255,0.3);
    border-radius: 20px;
    padding: 1.75rem;
    text-align: center;
    transition: all 0.3s ease;
}

.city-service-card:hover {
    border-color: #00d4ff;
    transform: translateY(-5px);
}

.city-service-card i {
    font-size: 2.25rem;
    color: #00d4ff;
    margin-bottom: 1rem;
}

.city-service-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.city-service-card p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.city-service-card .service-price {
    color: #10b981;
    font-weight: 700;
}

/* City Testimonial */
.city-testimonial {
    padding: 3rem 5%;
    text-align: center;
}

.city-testimonial blockquote {
    font-size: 1.2rem;
    font-style: italic;
    color: rgba(255,255,255,0.9);
    max-width: 650px;
    margin: 0 auto 1rem;
    line-height: 1.7;
}

.city-testimonial cite {
    color: #00d4ff;
    font-style: normal;
}

/* City Areas */
.city-areas {
    padding: 2.5rem 5%;
    background: rgba(5,10,48,0.95);
    text-align: center;
}

.city-areas h3 {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 1rem;
}

.areas-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    max-width: 700px;
    margin: 0 auto;
}

.areas-tags span {
    padding: 0.5rem 1rem;
    background: rgba(35,61,255,0.1);
    border: 1px solid rgba(35,61,255,0.3);
    border-radius: 20px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
}

/* City CTA Section */
.city-cta-section {
    padding: 4rem 5%;
    text-align: center;
    background: linear-gradient(135deg, rgba(35,61,255,0.15), rgba(0,212,255,0.08));
}

.city-cta-section h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.city-cta-section p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 1.5rem;
}

/* ============ FIX NEURAL BACKGROUND ============ */
.neural-bg {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: -1 !important;
    pointer-events: none !important;
    background: linear-gradient(135deg, #050a30 0%, #0a1628 50%, #050a30 100%) !important;
    overflow: hidden !important;
}

.neural-bg canvas {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
}

/* Ensure body doesn't cut off */
html, body {
    min-height: 100vh;
    overflow-x: hidden;
}

body {
    background: #050a30;
}

/* ============ PÁGINA COMPARATIVA ============ */
.comparativa-page {
    padding: calc(100px + 2rem) 5% 4rem;
    min-height: 100vh;
}

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

.comparativa-header {
    text-align: center;
    margin-bottom: 3rem;
}

.comparativa-header h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.comparativa-header p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.comparison-card {
    background: rgba(5,10,48,0.95);
    border: 2px solid rgba(35,61,255,0.3);
    border-radius: 24px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.comparison-card.humanpro {
    border-color: #00d4ff;
    background: linear-gradient(135deg, rgba(0,212,255,0.1), rgba(35,61,255,0.1));
    transform: scale(1.05);
}

.comparison-card .card-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #000;
}

.card-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.card-header h3 {
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.features-list li i {
    width: 20px;
    text-align: center;
}

.features-list li.included i { color: #10b981; }
.features-list li.not-included i { color: #ef4444; }
.features-list li.partial i { color: #f59e0b; }

.features-list li.not-included {
    color: rgba(255,255,255,0.5);
}

.card-price {
    text-align: center;
    margin-bottom: 1rem;
}

.card-price .price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: #00d4ff;
}

.card-price .period {
    display: block;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

.btn-card-cta {
    display: block;
    width: 100%;
    padding: 0.85rem;
    background: linear-gradient(135deg, #233dff, #00d4ff);
    border-radius: 12px;
    color: #fff;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-card-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(35,61,255,0.4);
}

.why-humanpro {
    text-align: center;
    margin-bottom: 4rem;
}

.why-humanpro h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    margin-bottom: 2rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.benefit-card {
    background: rgba(35,61,255,0.1);
    border: 1px solid rgba(35,61,255,0.3);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: #00d4ff;
    transform: translateY(-5px);
}

.benefit-card i {
    font-size: 2rem;
    color: #00d4ff;
    margin-bottom: 1rem;
}

.benefit-card h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.benefit-card p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
}

.cta-section {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(35,61,255,0.15), rgba(0,212,255,0.08));
    border-radius: 24px;
}

.cta-section h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.cta-section p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 1.5rem;
}

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

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #233dff, #00d4ff);
    border-radius: 30px;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(35,61,255,0.4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 30px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.15);
}

@media (max-width: 1024px) {
    .comparison-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .comparison-card.humanpro {
        transform: none;
        order: -1;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* ============ CHECKOUT PAGE ============ */
.checkout-page {
    padding: calc(100px + 2rem) 5% 2rem;
    min-height: calc(100vh - 200px);
}

.checkout-container {
    max-width: 1000px;
    margin: 0 auto;
}

.checkout-header {
    text-align: center;
    margin-bottom: 2rem;
}

.checkout-header h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
}

.checkout-form {
    background: rgba(5,10,48,0.95);
    border: 2px solid rgba(35,61,255,0.3);
    border-radius: 24px;
    padding: 2rem;
}

.form-section {
    margin-bottom: 2rem;
}

.form-section:last-child {
    margin-bottom: 0;
}

.form-section h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #00d4ff;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.payment-method {
    padding: 1rem;
    background: rgba(35,61,255,0.1);
    border: 2px solid rgba(35,61,255,0.3);
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-method:hover,
.payment-method.selected {
    border-color: #00d4ff;
    background: rgba(0,212,255,0.1);
}

.payment-method i {
    font-size: 1.5rem;
    color: #00d4ff;
    margin-bottom: 0.5rem;
    display: block;
}

.payment-method span {
    font-size: 0.85rem;
}

.coupon-section {
    display: flex;
    gap: 0.5rem;
}

.coupon-section input {
    flex: 1;
}

.btn-coupon {
    padding: 0 1.5rem;
    background: rgba(35,61,255,0.3);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-coupon:hover {
    background: #233dff;
}

.coupon-hint {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    margin-top: 0.5rem;
}

.order-summary {
    background: rgba(5,10,48,0.95);
    border: 2px solid rgba(35,61,255,0.3);
    border-radius: 24px;
    padding: 2rem;
    position: sticky;
    top: 120px;
    height: fit-content;
}

.order-summary h3 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.order-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(35,61,255,0.2);
}

.order-item .name {
    flex: 1;
    font-size: 0.95rem;
}

.order-item .price {
    font-weight: 600;
    color: #00d4ff;
}

.order-item .discount-name { color: #10b981; }
.order-item .discount-price { color: #10b981; }

.order-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    margin-top: 0.5rem;
}

.order-total .label {
    font-weight: 600;
}

.order-total .value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: #10b981;
}

.btn-checkout {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #10b981, #34d399);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-checkout:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(16,185,129,0.4);
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(35,61,255,0.2);
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
}

.security-badge i {
    color: #10b981;
}

.guarantee-box {
    background: rgba(16,185,129,0.1);
    border: 1px solid rgba(16,185,129,0.3);
    border-radius: 12px;
    padding: 1rem;
    margin-top: 1.5rem;
    text-align: center;
}

.guarantee-box i {
    color: #10b981;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: block;
}

.guarantee-box p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
    margin: 0;
}

/* Mini Footer */
.mini-footer {
    background: rgba(5,10,48,0.98);
    border-top: 1px solid rgba(35,61,255,0.2);
    padding: 1.5rem 5%;
    margin-top: 2rem;
}

.mini-footer-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.mini-footer p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    margin: 0;
}

.mini-footer a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
}

.mini-footer a:hover {
    color: #00d4ff;
}

.mini-footer .secure-text {
    margin-top: 0.5rem;
    color: #10b981;
}

.mini-footer .secure-text i {
    margin-right: 0.3rem;
}

@media (max-width: 768px) {
    .checkout-grid {
        grid-template-columns: 1fr;
    }
    
    .order-summary {
        position: static;
    }
    
    .payment-methods {
        grid-template-columns: 1fr;
    }
    
    .form-row-2 {
        grid-template-columns: 1fr;
    }
}
