/* Custom Fonts */
@font-face {
    font-family: 'Oxanium';
    src: url('/fonts/Oxanium-VariableFont_wght.ttf') format('truetype');
    font-weight: 200 800;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Nueva paleta de colores basada en la imagen */
    --primary-color: #1e3a5f;        /* Azul oscuro/Navy principal */
    --secondary-color: #2d5aa0;      /* Azul medio para elementos secundarios */
    --accent-color: #4a90e2;         /* Azul claro para acentos */
    --light-blue: #6bb6ff;           /* Azul más claro para elementos suaves */
    --very-light-blue: #e3f2fd;      /* Azul muy claro para fondos */
    
    /* Colores de texto */
    --text-dark: #1e3a5f;            /* Usando el azul oscuro para texto */
    --text-light: #546e7a;           /* Gris azulado para texto secundario */
    --text-muted: #90a4ae;           /* Texto deshabilitado */
    
    /* Fondos */
    --bg-dark: #0d1b2a;              /* Fondo oscuro con tinte azul */
    --bg-light: #ffffff;
    --bg-section: #f8fbff;           /* Fondo de secciones con tinte azul muy claro */
    
    /* Sombras */
    --shadow-light: rgba(30, 58, 95, 0.1);
    --shadow-dark: rgba(30, 58, 95, 0.3);
    --shadow-blue: rgba(74, 144, 226, 0.2);
    
    /* Colores de acento para CTAs */
    --cta-primary: #ff6b35;          /* Naranja vibrante para botón principal */
    --cta-primary-dark: #e55a2b;     /* Naranja más oscuro para hover */
    --cta-secondary: #4ade80;        /* Verde para botones secundarios */
    
    /* Colores vibrantes adicionales */
    --lime-green: #32D74B;           /* Verde lime para elementos secundarios */
    --cyan-bright: #00D4FF;          /* Cyan brillante para detalles */
    --golden-yellow: #FFD60A;        /* Amarillo dorado para highlights */
    --purple-soft: #AF52DE;          /* Púrpura suave para variedad */
    --purple-vibrant: #8B5CF6;       /* Púrpura vibrante para texto destacado */
    
    /* Utilidades */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 12px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Custom Cursor - Removed for better UX */

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

header.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 2px 20px var(--shadow-light);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    z-index: 1;
    animation: logoShine 4s ease-in-out infinite;
    animation-delay: 2s;
}

@keyframes logoShine {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.logo-icon {
    height: 35px;
    width: auto;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 0;
}

.logo:hover .logo-icon {
    transform: scale(1.05);
}

.logo-text {
    font-family: 'Oxanium', 'Arial Black', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 0;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: var(--transition);
}

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

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

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

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

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

.animated-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gradient-sphere {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.3), rgba(118, 75, 162, 0.3));
    filter: blur(40px);
    animation: float-sphere 8s ease-in-out infinite;
}

.sphere-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.sphere-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: -5%;
    animation-delay: -3s;
}

.sphere-3 {
    width: 250px;
    height: 250px;
    bottom: 10%;
    left: 20%;
    animation-delay: -6s;
}

@keyframes float-sphere {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -40px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    z-index: 10;
    position: relative;
}

.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.8;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: float-particle 8s ease-in-out infinite;
    opacity: 0;
    animation-fill-mode: both;
}

.particle:nth-child(1) { top: 15%; left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { top: 85%; left: 85%; animation-delay: 1s; }
.particle:nth-child(3) { top: 35%; left: 75%; animation-delay: 2s; }
.particle:nth-child(4) { top: 65%; left: 25%; animation-delay: 3s; }
.particle:nth-child(5) { top: 5%; left: 95%; animation-delay: 4s; }
.particle:nth-child(6) { top: 95%; left: 5%; animation-delay: 5s; }
.particle:nth-child(7) { top: 25%; left: 60%; animation-delay: 1.5s; }
.particle:nth-child(8) { top: 75%; left: 40%; animation-delay: 2.5s; }
.particle:nth-child(9) { top: 45%; left: 12%; animation-delay: 3.5s; }
.particle:nth-child(10) { top: 55%; left: 88%; animation-delay: 4.5s; }
.particle:nth-child(11) { top: 12%; left: 45%; animation-delay: 0.8s; }
.particle:nth-child(12) { top: 88%; left: 55%; animation-delay: 1.8s; }
.particle:nth-child(13) { top: 32%; left: 32%; animation-delay: 2.8s; }
.particle:nth-child(14) { top: 68%; left: 68%; animation-delay: 3.8s; }
.particle:nth-child(15) { top: 18%; left: 78%; animation-delay: 0.3s; }
.particle:nth-child(16) { top: 82%; left: 22%; animation-delay: 1.3s; }
.particle:nth-child(17) { top: 42%; left: 90%; animation-delay: 2.3s; }
.particle:nth-child(18) { top: 58%; left: 8%; animation-delay: 3.3s; }
.particle:nth-child(19) { top: 28%; left: 50%; animation-delay: 4.3s; }
.particle:nth-child(20) { top: 72%; left: 48%; animation-delay: 5.3s; }

/* Tamaños variables para las partículas */
.particle:nth-child(2n) { width: 2px; height: 2px; }
.particle:nth-child(3n) { width: 4px; height: 4px; }
.particle:nth-child(5n) { 
    width: 1px; 
    height: 1px; 
    background: rgba(255, 255, 255, 0.4); 
}
.particle:nth-child(7n) { 
    width: 5px; 
    height: 5px; 
    background: rgba(255, 255, 255, 0.3); 
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(120deg); }
    66% { transform: translateY(20px) rotate(240deg); }
}

@keyframes float-particle {
    0% { 
        opacity: 0; 
        transform: translateY(0px) translateX(0px) scale(0.5); 
    }
    10% { 
        opacity: 1; 
    }
    90% { 
        opacity: 1; 
    }
    100% { 
        opacity: 0; 
        transform: translateY(-60px) translateX(20px) scale(1.2); 
    }
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 10;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding-top: 80px;
    padding-bottom: 60px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease-out 0.2s both;
}

.badge-icon {
    font-size: 1.2rem;
}

.badge-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 1.2rem;
    margin-top: 0;
    line-height: 1.1;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.text-gradient {
    background: linear-gradient(45deg, var(--accent-color), var(--light-blue), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease-in-out infinite;
}

.text-gradient-purple {
    background: linear-gradient(135deg, var(--purple-vibrant) 0%, #A855F7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.3);
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    max-width: 550px;
    line-height: 1.5;
    animation: fadeInUp 1s ease-out 0.4s both;
}

/* Hero Services Slider */
.hero-services-slider {
    width: 100%;
    max-width: 800px;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-services-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
    transition: transform 0.3s ease;
}

.hero-services-dots {
    display: none;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.hero-service-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-service-dot.active {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.2);
}

.service-card-mini {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}


.service-card-mini:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, rgba(255, 107, 107, 0.2), rgba(78, 205, 196, 0.2));
    border-radius: 50%;
    margin-top: -15px;
    margin-bottom: 0.6rem;
    transition: none;
    position: relative;
    z-index: 2;
}

.service-card-mini:hover .service-icon-wrapper {
    transform: scale(1.1) rotate(10deg);
}

/* Colores vibrantes para cada service card */
.service-card-mini:nth-child(1) .service-icon-wrapper {
    background: linear-gradient(45deg, var(--lime-green), #66FF7A);
}

.service-card-mini:nth-child(2) .service-icon-wrapper {
    background: linear-gradient(45deg, var(--cyan-bright), #33E3FF);
}

.service-card-mini:nth-child(3) .service-icon-wrapper {
    background: linear-gradient(45deg, var(--golden-yellow), #FFED4E);
}

.service-card-mini:nth-child(4) .service-icon-wrapper {
    background: linear-gradient(45deg, var(--purple-soft), #CC7AFF);
}

/* Animación secuencial de brillo pulsante en los íconos */
.service-card-mini:nth-child(1) .service-icon-wrapper {
    animation: iconGlow 6s ease-in-out 0s infinite;
}

.service-card-mini:nth-child(2) .service-icon-wrapper {
    animation: iconGlow 6s ease-in-out 1.5s infinite;
}

.service-card-mini:nth-child(3) .service-icon-wrapper {
    animation: iconGlow 6s ease-in-out 3s infinite;
}

.service-card-mini:nth-child(4) .service-icon-wrapper {
    animation: iconGlow 6s ease-in-out 4.5s infinite;
}

@keyframes iconGlow {
    0% { 
        box-shadow: 0 0 0 rgba(255, 255, 255, 0);
        transform: scale(1);
    }
    10% { 
        box-shadow: 0 0 25px rgba(255, 255, 255, 0.8), 0 0 50px rgba(255, 255, 255, 0.4);
        transform: scale(1.12);
    }
    20% { 
        box-shadow: 0 0 0 rgba(255, 255, 255, 0);
        transform: scale(1);
    }
    100% { 
        box-shadow: 0 0 0 rgba(255, 255, 255, 0);
        transform: scale(1);
    }
}

.service-icon {
    font-size: 1.3rem;
}

.service-card-mini h3 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: white;
    position: relative;
    z-index: 2;
}

.service-card-mini p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.3;
    position: relative;
    z-index: 2;
}

.hero-cta {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out 0.8s both;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

/* Hero CTA Hierarchy */
.btn-hero-main {
    transform: scale(1.05);
    z-index: 2;
    position: relative;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.btn-hero-secondary {
    opacity: 0.85;
    transform: scale(0.95);
    font-size: 0.9rem;
}

.btn-hero-main:hover {
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.4);
}

.btn-hero-secondary:hover {
    opacity: 1;
    transform: scale(0.97) translateY(-1px);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: linear-gradient(45deg, var(--cta-primary), #ff8f65);
    color: white;
    padding: 0.8rem 1.6rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.5);
    background: linear-gradient(45deg, var(--cta-primary-dark), #ff7a4d);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: transparent;
    color: white;
    padding: 0.8rem 1.6rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.btn-play {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 0.8rem;
}

.btn-icon {
    transition: transform 0.3s ease;
}

.btn-primary:hover .btn-icon {
    transform: translateX(3px);
}

.hero-stats {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 1s both;
    background: transparent;
    backdrop-filter: none;
    border: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}

.stat {
    text-align: center;
    flex: 1;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: #ffffff;
    display: block;
    margin-bottom: 0.2rem;
    text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.8),
                 1px -1px 0 rgba(0, 0, 0, 0.8),
                 -1px 1px 0 rgba(0, 0, 0, 0.8),
                 1px 1px 0 rgba(0, 0, 0, 0.8),
                 2px 2px 4px rgba(0, 0, 0, 0.3),
                 0 0 15px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

/* Números de estadísticas en blanco con contorno negro */
.stat-number {
    color: #ffffff !important;
    text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.8),
                 1px -1px 0 rgba(0, 0, 0, 0.8),
                 -1px 1px 0 rgba(0, 0, 0, 0.8),
                 1px 1px 0 rgba(0, 0, 0, 0.8),
                 2px 2px 4px rgba(0, 0, 0, 0.3) !important;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--cyan-bright);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.6),
                 1px -1px 0 rgba(0, 0, 0, 0.6),
                 -1px 1px 0 rgba(0, 0, 0, 0.6),
                 1px 1px 0 rgba(0, 0, 0, 0.6),
                 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.stat-divider {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.3);
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    animation: fadeInUp 1s ease-out 1.4s both;
    z-index: 10;
    width: fit-content;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s ease-in-out infinite;
}

@keyframes scroll-wheel {
    0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

.scroll-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    text-align: center;
    white-space: nowrap;
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Old carousel styles removed - using new hero design */

/* Old duplicate styles removed - using new hero design styles above */

/* Old button styles removed - using new hero CTA styles */

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 1;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border: 2px solid white;
    border-top: none;
    border-right: none;
    transform: rotate(-45deg);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

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

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    color: var(--text-dark);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

/* Problems Section */
.problems {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: relative;
    color: white;
    z-index: 2;
}

.problems-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.problems .section-title {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.problems-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 769px) and (max-width: 1024px) {
    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
    }
}

@media (min-width: 1025px) {
    .problems-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.problem-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.6s;
}

.problem-card:hover::before {
    left: 100%;
}

.problem-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.problem-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: white;
}

.problem-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
    opacity: 0.9;
}

.problems-cta {
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius);
    padding: 3rem;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.problems-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: white;
}

.problems-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Mobile Responsive for Problems Section */
@media (max-width: 768px) {
    .problems {
        padding: 3rem 0;
    }
    
    .problems .section-title {
        font-size: 1.8rem;
    }
    
    .problems-subtitle {
        font-size: 1rem;
    }
    
    .problems-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .problem-card {
        padding: 1.5rem;
    }
    
    .problem-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .problem-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .problem-card p {
        font-size: 0.9rem;
        margin-bottom: 0;
    }
    
    .problems-cta {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .problems-cta h3 {
        font-size: 1.4rem;
    }
    
    .problems-cta p {
        font-size: 1rem;
    }
}

/* Problems Toggle Styles */
.problems-toggle {
    display: flex;
    justify-content: center;
    margin-top: 4rem;
    margin-bottom: 2rem;
}

.btn-show-more {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border: 2px solid #dee2e6;
    color: var(--text-dark);
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-transform: none;
    min-width: 180px;
    max-width: 220px;
    height: 48px;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-show-more:hover {
    background: linear-gradient(135deg, #e9ecef, #dee2e6);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.toggle-icon {
    transition: transform 0.3s ease;
}

/* Nueva estructura simplificada de problemas */
.problems-extra {
    margin-top: 2rem;
}

/* Cuarto problema solo visible en tablet y móvil */
.tablet-fourth {
    display: block;
}

.problems-description {
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.problems-description p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Responsive para problems-extra */
@media (max-width: 768px) {
    .problems-extra {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .problems-description p {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .problems-extra {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.8rem;
    }
}

@media (min-width: 1025px) {
    .problems-extra {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .tablet-fourth {
        display: none;
    }
}

/* Button responsive styles */
@media (max-width: 768px) {
    .btn-show-more {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
        min-width: 160px;
        max-width: 200px;
        height: 44px;
    }
    
    .problems-toggle {
        margin-top: 1.5rem;
    }
}

@media (max-width: 480px) {
    .btn-show-more {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
        min-width: 140px;
        max-width: 180px;
        height: 40px;
        gap: 0.3rem;
    }
    
    .btn-show-more .toggle-icon {
        width: 16px;
        height: 16px;
    }
}

/* Sticky Bottom CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.sticky-cta.show {
    transform: translateY(0);
}

.sticky-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    gap: 1rem;
}

.sticky-cta-text {
    display: flex;
    flex-direction: column;
    color: white;
    flex: 1;
}

.sticky-cta-title {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.sticky-cta-subtitle {
    font-size: 0.8rem;
    opacity: 0.9;
}

.sticky-cta-btn {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    padding: 0.7rem 1.2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.sticky-cta-btn:hover {
    background: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.sticky-cta-close {
    background: none;
    border: none;
    color: white;
    padding: 0.5rem;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    border-radius: 50%;
}

.sticky-cta-close:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .sticky-cta-content {
        padding: 0.8rem 1rem;
        gap: 0.5rem;
    }
    
    .sticky-cta-title {
        font-size: 0.9rem;
    }
    
    .sticky-cta-subtitle {
        font-size: 0.7rem;
    }
    
    .sticky-cta-btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
}

/* Responsive utilities */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

/* Services Accordion */
.services-accordion {
    max-width: 600px;
    margin: 0 auto;
}

.accordion-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accordion-title {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex: 1;
}

.accordion-title .service-icon {
    font-size: 1.5rem;
}

.accordion-title h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.accordion-toggle {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-toggle {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.2rem;
}

.accordion-item.active .accordion-content {
    max-height: 300px;
    padding: 0 1.2rem 1.2rem;
}

.accordion-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    font-size: 0.95rem;
}

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

.service-features li {
    padding: 0.3rem 0;
    font-size: 0.9rem;
    color: var(--text-dark);
    opacity: 0.9;
}

@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }
    
    .mobile-only {
        display: block;
    }
    
    .accordion-header {
        padding: 1rem;
    }
    
    .accordion-title h3 {
        font-size: 1rem;
    }
    
    .accordion-content {
        padding: 0 1rem;
    }
    
    .accordion-item.active .accordion-content {
        padding: 0 1rem 1rem;
    }
}

/* About Section Compressed for Mobile */
.about-compressed {
    padding: 2rem 0;
}

.company-intro {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.company-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.company-text h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
}

.company-text p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-dark);
    opacity: 0.9;
}

.quick-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

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

.quick-stat .stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.2rem;
}

.quick-stat .stat-label {
    font-size: 0.8rem;
    color: var(--text-dark);
    opacity: 0.8;
}

.about-cta {
    text-align: center;
}

.btn-about {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-about:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* About Expanded Content for Mobile */
.about-expanded {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-expanded h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.about-expanded h4 {
    color: var(--secondary-color);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.about-expanded .timeline {
    margin-bottom: 2rem;
}

.about-expanded .timeline-item {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    border-left: 2px solid var(--accent-color);
}

.about-expanded .timeline-year {
    color: var(--accent-color);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.about-expanded .timeline-content p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

.about-expanded .team-section {
    margin-top: 2rem;
}

.about-expanded .team-section h4 {
    margin-bottom: 1rem;
}

.about-expanded .team-members {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-expanded .team-member {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-expanded .team-link {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    margin-top: 0.5rem;
    transition: color 0.3s ease;
}

.about-expanded .team-link:hover {
    color: var(--light-blue);
    text-decoration: underline;
}

/* Urgency/Offer Section - Suavizada */
.urgency-section {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.urgency-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    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.05'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    pointer-events: none;
}

.urgency-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 25px;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 500;
    font-size: 0.9rem;
    animation: subtle-pulse 3s infinite;
}

.badge-icon {
    font-size: 1.2rem;
}

.urgency-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.urgency-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    line-height: 1.5;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 0.8rem 1rem;
    color: white;
    font-weight: 500;
}

.feature-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.urgency-timer {
    margin-bottom: 2rem;
}

.timer-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.timer-counter {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.time-unit {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 1rem;
    min-width: 80px;
    text-align: center;
}

.time-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.2rem;
}

.time-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.urgency-cta {
    margin-bottom: 1rem;
}

.btn-urgency {
    display: inline-block;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 1.2rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-urgency::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: left 0.5s;
}

.btn-urgency:hover::before {
    left: 100%;
}

.btn-urgency:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.btn-text {
    display: block;
    margin-bottom: 0.2rem;
}

.btn-price {
    font-size: 0.9rem;
    opacity: 0.9;
    text-decoration: line-through rgba(255, 255, 255, 0.5);
}

.urgency-note {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.note-icon {
    font-size: 1.1rem;
}

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

@keyframes subtle-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.02); opacity: 0.9; }
}

@media (max-width: 768px) {
    .urgency-title {
        font-size: 1.8rem;
    }
    
    .urgency-subtitle {
        font-size: 1rem;
    }
    
    .offer-features {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .timer-counter {
        gap: 0.5rem;
    }
    
    .time-unit {
        padding: 0.8rem;
        min-width: 70px;
    }
    
    .time-number {
        font-size: 1.5rem;
    }
    
    .btn-urgency {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .urgency-note {
        flex-direction: column;
        gap: 0.3rem;
        text-align: center;
    }
}

/* Micro Quiz Styles */
.micro-quiz {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    animation: fadeInUp 1s ease-out 0.8s both;
}

/* Quiz Section Spacing */
.quiz-section {
    padding: 3rem 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.02) 100%);
    position: relative;
    z-index: 2;
}

.quiz-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.quiz-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.quiz-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.quiz-question {
    display: none;
}

.quiz-question.active {
    display: block;
}

.question-text {
    font-size: 1.1rem;
    color: white;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.quiz-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.quiz-option {
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-align: center;
}

.quiz-option:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.quiz-option.selected {
    background: rgba(102, 126, 234, 0.3);
    border-color: rgba(102, 126, 234, 0.6);
}

.option-icon {
    font-size: 2rem;
    margin-bottom: 0.2rem;
}

.option-text {
    font-weight: 600;
    font-size: 0.9rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.quiz-result {
    text-align: center;
    animation: fadeIn 0.5s ease-out;
}

.result-content {
    padding: 1rem;
}

.result-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.result-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.result-description {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    line-height: 1.5;
    font-size: 1rem;
}

.result-price {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: white;
}

.result-cta {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.result-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .micro-quiz {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .quiz-section {
        padding: 2rem 0;
    }
    
    .quiz-options {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .quiz-option {
        padding: 1rem;
    }
    
    .option-icon {
        font-size: 1.8rem;
    }
    
    .option-text {
        font-size: 0.9rem;
    }
    
    .quiz-header h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .quiz-header p {
        font-size: 1rem;
    }
    
    .result-cta {
        padding: 1rem 1.8rem;
        font-size: 1rem;
    }
    
    /* Better spacing between sections */
    .testimonials {
        padding: 3rem 0;
    }
    
    .problems {
        padding: 3rem 0;
    }
    
    .services {
        padding: 3rem 0;
    }
    
    .portfolio {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .problems-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .problem-card {
        padding: 1.2rem;
    }
    
    .problem-icon {
        font-size: 2rem;
    }
    
    .problem-card h3 {
        font-size: 1rem;
    }
    
    .problem-card p {
        font-size: 0.85rem;
    }
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: var(--bg-light);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    clip-path: polygon(0 0, 100% 0, 100% 50%, 0 100%);
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 5px 20px var(--shadow-light);
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255,255,255,0.8) 50%, 
        transparent
    );
    transform: skewX(-25deg);
    animation: lightSweep 8s infinite;
    z-index: 1;
}

@keyframes lightSweep {
    0% { left: -100%; }
    20% { left: 120%; }
    100% { left: 120%; }
}

.service-card:nth-child(1)::after {
    animation-delay: 0s;
}

.service-card:nth-child(2)::after {
    animation-delay: 2s;
}

.service-card:nth-child(3)::after {
    animation-delay: 4s;
}

.service-card:nth-child(4)::after {
    animation-delay: 6s;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover::before {
    left: 0;
    opacity: 0.1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow-dark);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
    padding: 1rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    color: white;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: var(--transition);
}

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

.service-card .service-icon {
    position: relative;
    z-index: 2;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    position: relative;
    z-index: 2;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Portfolio Section */
.portfolio {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
}

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

.portfolio-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 300px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.portfolio-link {
    display: block;
    text-decoration: none;
    color: inherit;
    width: 100%;
    height: 100%;
}

.portfolio-image,
.portfolio-slider {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.portfolio-slider {
    position: relative;
}

.portfolio-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    border-radius: var(--border-radius);
}

.portfolio-slide.active {
    opacity: 1;
}

.slider-dots {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    gap: 8px;
    z-index: 2;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.slider-dot.active {
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.portfolio-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23ffffff" opacity="0.1"/><circle cx="20" cy="20" r="2" fill="%23ffffff" opacity="0.3"/><circle cx="80" cy="30" r="1.5" fill="%23ffffff" opacity="0.4"/><circle cx="40" cy="70" r="1" fill="%23ffffff" opacity="0.5"/></svg>');
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6));
    color: white;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    text-align: center;
}

.portfolio-link-text {
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(45deg, var(--accent-color), var(--light-blue));
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    align-self: center;
    transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-link-text {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-dark);
}

.portfolio-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.portfolio-overlay p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.portfolio-tech {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tech-tag {
    background: var(--primary-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: var(--bg-light);
}

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

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px var(--shadow-light);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-dark);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffffff;
    display: block;
    margin-bottom: 0.2rem;
    text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.8),
                 1px -1px 0 rgba(0, 0, 0, 0.8),
                 -1px 1px 0 rgba(0, 0, 0, 0.8),
                 1px 1px 0 rgba(0, 0, 0, 0.8),
                 2px 2px 4px rgba(0, 0, 0, 0.3),
                 0 0 10px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}


/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background: var(--bg-dark);
    color: white;
    position: relative;
    z-index: 2;
}

.testimonials .section-title {
    color: white;
}

.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-item {
    opacity: 0;
    transform: translateX(100%);
    transition: var(--transition);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.testimonial-item.active {
    opacity: 1;
    transform: translateX(0);
    position: relative;
}

.testimonial-content {
    text-align: center;
    padding: 2rem;
}

.stars {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-info h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.author-info h4 a,
.author-info h4 a:link,
.author-info h4 a:visited {
    color: #ffffff !important;
    text-decoration: none !important;
    transition: color 0.3s ease;
}

.author-info h4 a:hover,
.author-info h4 a:focus {
    color: #4a90e2 !important;
    text-decoration: underline !important;
}

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

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

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary-color);
}

/* Tech Stack Section */
.tech-stack {
    padding: 5rem 0;
    background: #f8f9fa;
}

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

.tech-item {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    box-shadow: 0 5px 20px var(--shadow-light);
}

.tech-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow-dark);
}

.tech-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.tech-item span {
    font-weight: 600;
    color: var(--text-dark);
}

/* Tooltip */
.tech-item::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-dark);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    margin-bottom: 5px;
}

.tech-item::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: var(--bg-dark);
    opacity: 0;
    transition: var(--transition);
}

.tech-item:hover::before,
.tech-item:hover::after {
    opacity: 1;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: var(--bg-dark);
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateX(10px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: white;
    font-size: 1.2rem;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    transition: var(--transition);
    border: 2px solid transparent;
}

.form-group select {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 5"><path fill="white" d="M2 0L0 2h4zM2 5L0 3h4z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 12px;
    padding-right: 3rem;
}

.form-group select option {
    background: var(--text-dark);
    color: white;
    padding: 0.5rem;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--primary-color);
    transform: scale(1.02);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group input.error,
.form-group textarea.error,
.form-group select.error {
    border-color: var(--accent-color);
}

.form-group .error-message {
    color: var(--accent-color);
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.submit-btn::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: left 0.5s ease;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-loading {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.recaptcha-info {
    margin-top: 1rem;
    text-align: center;
}

.recaptcha-info small {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    line-height: 1.4;
}

.recaptcha-info a {
    color: var(--cyan-bright);
    text-decoration: none;
    font-weight: 500;
}

.recaptcha-info a:hover {
    text-decoration: underline;
    color: #ffffff;
}

/* WhatsApp Link Styles */
.whatsapp-link {
    color: white;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

.whatsapp-link:hover {
    color: #25D366;
    transform: scale(1.05);
}

.whatsapp-link::after {
    content: '💬';
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8em;
    opacity: 0;
    transition: var(--transition);
}

.whatsapp-link:hover::after {
    opacity: 1;
}

/* Footer */
footer {
    background: #111;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    transform: scale(1.2) rotate(10deg);
}

/* Loading Animation */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.loading-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-top: 5px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        padding: 0 2rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .logo-text {
        font-size: 1.4rem;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateY(-120%);
        opacity: 0;
        transition: transform 0.3s ease, opacity 0.3s ease;
        z-index: 999;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
    }
    
    .nav-links a {
        display: block;
        padding: 0.75rem 1rem;
        font-size: 1.1rem;
        border-radius: 8px;
        transition: background-color 0.3s ease;
    }
    
    .nav-links a:hover {
        background-color: rgba(0, 123, 255, 0.1);
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-services-track {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        max-width: 600px;
    }
    
    .hero-services-dots {
        display: flex;
    }
    
    .service-card-mini {
        padding: 1rem;
        min-height: 140px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }
    
    .service-icon-wrapper {
        width: 35px;
        height: 35px;
        margin-bottom: 0.5rem;
        aspect-ratio: 1;
        flex-shrink: 0;
    }
    
    .service-icon {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 0.8rem 1.5rem;
        min-width: 200px;
        justify-content: center;
    }
    
    .hero-stats {
        gap: 1rem;
        padding: 1rem 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    .hero-container {
        padding: 0 1rem;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats {
        grid-template-columns: 1fr;
    }
    
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.3rem !important;
    }
    
    .whatsapp-float {
        bottom: 80px;
        right: 15px;
    }
    
    .hero-title {
        font-size: 1.25rem !important;
        line-height: 1.1 !important;
        margin-bottom: 1rem !important;
        max-width: 310px !important;
    }
    
    .hero-subtitle {
        font-size: 0.95rem !important;
        line-height: 1.2 !important;
        margin-bottom: 1.5rem !important;
        max-width: 290px !important;
    }
    
    .hero-services-slider {
        max-width: 280px;
        margin-bottom: 1.5rem;
        overflow: hidden;
        position: relative;
    }
    
    .hero-services-track {
        display: flex;
        width: 400%;
        transition: transform 0.3s ease;
    }
    
    .hero-services-track .service-card-mini {
        flex: 0 0 25%;
        width: 25%;
    }
    
    .service-card-mini {
        padding: 0.6rem;
        min-height: 120px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .service-icon-wrapper {
        width: 32px !important;
        height: 32px !important;
        min-width: 32px;
        min-height: 32px;
        margin-bottom: 0.4rem;
        flex-shrink: 0;
        border-radius: 50% !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        aspect-ratio: 1 !important;
    }
    
    .service-icon {
        font-size: 0.9rem !important;
        line-height: 1 !important;
        display: block !important;
        width: auto !important;
        height: auto !important;
    }
    
    .service-card-mini:hover {
        transform: none !important;
        background: rgba(255, 255, 255, 0.12);
    }
    
    .service-card-mini:hover .service-icon-wrapper {
        transform: none !important;
    }
    
    .service-card-mini h3 {
        font-size: 0.7rem;
        margin-bottom: 0.3rem;
    }
    
    .service-card-mini p {
        font-size: 0.65rem;
        line-height: 1.2;
        margin: 0;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.8rem;
        padding: 0.8rem 1rem;
        margin-bottom: 1rem;
        max-width: 300px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .stat-divider {
        display: none;
    }
    
    .hero-content {
        min-height: 100vh;
        padding-top: 100px;
        padding-bottom: 40px;
    }
    
    .hero-container {
        padding: 0 1rem;
    }
    
    .particles-container {
        opacity: 0.3;
    }
    
    .service-card .service-icon {
        width: 80px !important;
        height: 80px !important;
        border-radius: 50% !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 2rem !important;
        line-height: 1 !important;
    }
    
    .service-card:hover .service-icon {
        transform: none !important;
    }
    
    .service-card {
        padding: 1.5rem !important;
        margin-bottom: 1rem;
    }
    
    .service-card:hover {
        transform: none !important;
    }
    
    .logo {
        font-size: 1.65rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about {
        padding: 3rem 0 !important;
    }
    
    .about-content {
        gap: 1.5rem !important;
    }
    
    .about-text h2 {
        font-size: 1.8rem !important;
        margin-bottom: 1.5rem !important;
        text-align: center;
    }
    
    .about-text p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1.2rem;
        text-align: center;
    }
    
    .stats {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
        margin-top: 2rem;
    }
    
    .stat-item {
        padding: 1rem !important;
        text-align: center;
    }
    
    .stat-number {
        font-size: 2.5rem !important;
    }
    
    .stat-label {
        font-size: 1rem !important;
        margin-top: 0.5rem;
    }
    
    .contact {
        padding: 3rem 0 !important;
    }
    
    .contact-info h2 {
        font-size: 1.8rem !important;
        margin-bottom: 1.5rem !important;
        text-align: center;
    }
    
    .contact-item {
        justify-content: center;
        margin-bottom: 1.2rem !important;
        transform: none !important;
    }
    
    .contact-item:hover {
        transform: none !important;
    }
    
    .contact-icon {
        width: 40px !important;
        height: 40px !important;
        font-size: 1rem !important;
        margin-right: 0.8rem !important;
    }
    
    .contact-form {
        padding: 1.5rem !important;
        margin-top: 2rem;
    }
    
    .form-group {
        margin-bottom: 1.2rem !important;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.8rem !important;
        font-size: 0.9rem;
    }
    
    .submit-btn {
        padding: 0.8rem 2rem !important;
        font-size: 0.9rem;
        width: 100%;
    }
    
    .recaptcha-info {
        font-size: 0.75rem !important;
        text-align: center;
        margin-top: 1rem !important;
        line-height: 1.4;
    }
    
    .grecaptcha-badge {
        visibility: visible !important;
        opacity: 1 !important;
        z-index: 1000 !important;
    }
    
    .whatsapp-float,
    .whatsapp-button {
        z-index: 10000 !important;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
    }
}

/* Smooth scrolling for all browsers */
html {
    scroll-behavior: smooth;
}

/* Selection styles */
::selection {
    background: var(--primary-color);
    color: white;
}

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

/* Scrollbar styles */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
} 
/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-button {
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    color: white;
    animation: pulse 2s infinite;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

.whatsapp-popup {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 300px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.whatsapp-popup.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.whatsapp-popup-header {
    background: #075e54;
    color: white;
    padding: 15px;
    border-radius: 12px 12px 0 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.whatsapp-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
}

.avatar-circle {
    width: 100%;
    height: 100%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    color: white;
}

.whatsapp-info h4 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
}

.whatsapp-info p {
    margin: 0;
    font-size: 12px;
    opacity: 0.85;
}

.whatsapp-close {
    margin-left: auto;
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-popup-body {
    padding: 20px;
}

.whatsapp-message {
    margin-bottom: 15px;
}

.message-bubble {
    background: #f0f0f0;
    padding: 12px 16px;
    border-radius: 18px 18px 18px 4px;
    font-size: 14px;
    line-height: 1.4;
    color: #333;
}

.whatsapp-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.whatsapp-options button {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    padding: 12px 16px;
    border-radius: 8px;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
    color: #333;
}

.whatsapp-options button:hover {
    background: #25d366;
    color: white;
    border-color: #25d366;
}

/* Portfolio Fix - Estado Gris Inactivo con Colores Originales al Hover */
.portfolio-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    /* Estado inactivo: completamente gris */
    filter: brightness(0.8) contrast(0.9) saturate(0.7);
    opacity: 0.85;
    transform: scale(0.98);
}

.portfolio-item:hover {
    /* Estado activo: colores originales vibrantes restaurados */
    filter: grayscale(0) brightness(1.1) contrast(1.1) saturate(1.2);
    opacity: 1;
    transform: scale(1.02) translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.portfolio-image {
    height: 300px;
    /* Colores originales vibrantes que se verán al hacer hover */
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Patrón de fondo sutil */
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255,255,255,0.1) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(255,255,255,0.1) 2px, transparent 2px);
    background-size: 50px 50px;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    opacity: 0;
    transition: all 0.4s ease;
    border-radius: var(--border-radius);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    color: white;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.portfolio-overlay p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.portfolio-btn {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.portfolio-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Specific styles for Sivilla and Maker images to show full content */
.sivilla-image {
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

.maker-image {
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

.portfolio-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    transition: all 0.3s ease;
}

.tech-tag {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.portfolio-item:hover .tech-tag {
    /* Tags más vibrantes al activarse */
    background: rgba(102, 126, 234, 0.8);
    color: white;
    border-color: rgba(102, 126, 234, 1);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

/* Efecto de brillo al hacer hover */
.portfolio-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
    opacity: 0;
    transition: all 0.6s ease;
    pointer-events: none;
    z-index: 1;
}

.portfolio-item:hover::before {
    opacity: 1;
    transform: translateX(100%);
}

/* Grid responsivo */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .portfolio-item {
        /* En mobile mantener el estado gris pero un poco menos severo */
        filter: brightness(0.8) contrast(0.9) saturate(0.7);
        opacity: 0.85;
    }
    
    .portfolio-item:hover {
        /* Activación completa en mobile también */
        filter: grayscale(0) brightness(1.1) contrast(1.1) saturate(1.1);
        transform: scale(1) translateY(-4px);
    }
}

@media (max-width: 480px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 3rem 0 1.5rem;
    border-top: 1px solid #333;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.footer-left {
    flex: 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.8rem;
}

.footer-logo-icon {
    height: 28px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-logo-text {
    font-family: 'Oxanium', 'Arial Black', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.5;
    max-width: 400px;
    padding-left: calc(28px + 0.6rem); /* Exactamente el ancho del icon + gap del logo */
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1.5rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: right;
}

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

.footer-link:hover {
    color: #667eea;
}

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

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #667eea;
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    text-align: center;
}

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

/* Footer Responsive */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-right {
        align-items: center;
    }
    
    .footer-contact {
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 20px;
    z-index: 10001;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-text h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    color: #ecf0f1;
}

.cookie-text p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
    color: #bdc3c7;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.cookie-accept {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.cookie-decline {
    background: transparent;
    color: #bdc3c7;
    border: 2px solid #7f8c8d;
}

.cookie-decline:hover {
    background: #7f8c8d;
    color: white;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-btn {
        flex: 1;
        max-width: 150px;
    }
}

/* About Section - New Nosotros Section */
.about {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--very-light-blue) 0%, #f0f7ff 100%);
}

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

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

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.about-story {
    order: 1;
}

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

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-color);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin: 3rem 0;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 50%;
    padding-right: 3rem;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 50%;
    padding-left: 3rem;
    text-align: left;
}

.timeline-year {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 2;
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

.timeline-content h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

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

.founder-info {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.linkedin-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #0077b5;
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border: 2px solid #0077b5;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.linkedin-link:hover {
    background: #0077b5;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 119, 181, 0.3);
}

.linkedin-link i {
    font-size: 1.1rem;
}

.about-expertise {
    order: 2;
    margin-bottom: 0;
}

.about-expertise h3 {
    text-align: center;
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
    font-weight: 600;
}

.expertise-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.expertise-item {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expertise-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.expertise-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.expertise-item h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.expertise-item p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

.about-stats-container {
    grid-column: 1 / -1;
    margin-top: 3rem;
}

/* About Section Stats - Simple Style */
.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 0 auto;
    max-width: 600px;
    justify-items: center;
    width: 100%;
}

.about-stat-item {
    text-align: center;
    padding: 1rem;
}

.about-stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.about-stat-label {
    font-size: 0.9rem;
    color: var(--text-color);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

/* Responsive Design for About Section */
@media (max-width: 768px) {
    .about {
        padding: 3rem 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-story {
        order: 1;
    }
    
    .about-expertise {
        order: 2;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin: 0;
        margin-left: 70px;
        padding-left: 2rem;
        text-align: left;
        padding-right: 1rem;
    }
    
    .timeline-year {
        left: 30px;
        transform: translateX(-50%);
        font-size: 0.8rem;
        padding: 0.3rem 0.8rem;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .expertise-item {
        padding: 1.5rem;
    }
    
    .expertise-icon {
        font-size: 2.5rem;
    }
    
    .about-expertise h3 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .linkedin-link {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .about-stats {
        gap: 1.5rem;
        margin-top: 1.5rem;
        max-width: 400px;
    }
    
    .about-stat-item {
        padding: 0.8rem;
    }
    
    .about-stat-number {
        font-size: 1.9rem;
    }
    
    .about-stat-label {
        font-size: 0.8rem;
    }
}

/* Hero Section - New Styles */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.hero-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.hero-container {
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 3rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto 3rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hero-feature:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.feature-icon {
    font-size: 1.5rem;
}

.feature-text {
    font-size: 0.95rem;
    font-weight: 500;
}

.hero-trust {
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.trust-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.trust-icon {
    color: #4ade80;
    font-weight: bold;
    margin-right: 0.3rem;
}

.button-arrow {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.cta-button.primary:hover .button-arrow {
    transform: translateX(4px);
}

/* Footer Compacto y Profesional */
.footer-compact {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary-color) 50%, #0a1221 100%);
    color: #e0e0e0;
    position: relative;
    padding: 3rem 0 1.5rem;
}

.footer-compact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand .footer-logo {
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}


.footer-links-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -0.3rem;
    left: 0;
    width: 20px;
    height: 2px;
    background: var(--primary-color);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.6rem;
}

.footer-column a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-column a:hover {
    color: #ffffff;
    padding-left: 0.3rem;
}

.footer-contact a,
.contact-info a {
    color: #e0e0e0 !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-contact a:hover,
.contact-info a:hover {
    color: #4a90e2 !important;
    text-decoration: none;
    padding-left: 0;
}

.contact-info p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.contact-info a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright p {
    color: #888;
    font-size: 0.85rem;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #e0e0e0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.footer-trust {
    display: flex;
    gap: 1.5rem;
    font-size: 0.8rem;
    color: #888;
}

.footer-trust span {
    white-space: nowrap;
}

/* Responsive Footer Compacto */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links-section {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-compact {
        padding: 2rem 0 1rem;
    }
    
    .footer-links-section {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-trust {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .footer-compact {
        padding: 1.5rem 0 1rem;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
    
    .social-links {
        justify-content: center;
    }
}
