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

:root {
    /* Colores principales modernos */
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --primary-ultra-light: #e0e7ff;
    
    --secondary: #ec4899;
    --secondary-light: #f472b6;
    --secondary-ultra-light: #fce7f3;
    
    --accent: #10b981;
    --accent-light: #34d399;
    --warning: #f59e0b;
    --danger: #ef4444;
    
    /* Paleta de grises moderna */
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    
    /* Gradientes modernos y atractivos */
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    --gradient-accent: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    --gradient-purple: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-pink: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-blue: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-green: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    --gradient-sunset: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    --gradient-ocean: linear-gradient(135deg, #2196f3 0%, #21cbf3 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    
    /* Sombras modernas */
    --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-colored: 0 10px 25px rgba(99, 102, 241, 0.2);
    --shadow-pink: 0 10px 25px rgba(236, 72, 153, 0.2);
    --shadow-green: 0 10px 25px rgba(16, 185, 129, 0.2);
    
    /* Transiciones suaves */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Bordes redondeados modernos */
    --radius-sm: 8px;
    --radius: 12px;
    --radius-md: 16px;
    --radius-lg: 20px;
    --radius-xl: 24px;
    --radius-full: 9999px;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: var(--white);
    /* Fondo oscuro uniforme para toda la página */
    background: 
        linear-gradient(135deg, #0f172a 0%, #1e293b 25%, #334155 50%, #1e293b 75%, #0f172a 100%),
        radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(236, 72, 153, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(16, 185, 129, 0.06) 0%, transparent 50%);
    background-attachment: fixed;
    font-size: 16px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
}

/* Tipografía en blanco para toda la página */
h1, h2, h3, h4, h5, h6 {
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

p {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1000;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    padding: 0;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-lg);
    border-color: var(--gray-200);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 3rem;
    position: relative;
    width: 100%;
    max-width: none;
    margin: 0;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.logo {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    object-fit: cover;
    object-position: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    flex-shrink: 0;
    display: block;
}

.logo:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-colored);
}

.brand-text h1 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin: 0;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    white-space: nowrap;
}

.brand-text span {
    color: var(--gray-500);
    font-size: 0.8rem;
    font-weight: 500;
    display: block;
    margin-top: -0.25rem;
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    align-items: center;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: flex-end;
    margin-left: 0;
}

.nav-menu li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    position: relative;
    font-weight: 600;
    color: var(--gray-700);
    padding: 0.75rem 1.5rem;
    transition: var(--transition);
    font-size: 0.9rem;
    text-transform: capitalize;
    border-radius: var(--radius-full);
    text-decoration: none;
    background: transparent;
    border: 2px solid transparent;
    display: inline-block;
    white-space: nowrap;
}

.nav-menu li a:hover {
    color: white;
    background: var(--gradient-primary);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: var(--shadow-colored);
    text-decoration: none;
}

.nav-menu li a.active {
    color: white;
    background: var(--gradient-primary);
    border-color: transparent;
    box-shadow: var(--shadow-colored);
    text-decoration: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius);
    transition: var(--transition);
    flex-shrink: 0;
}

.hamburger:hover {
    background: var(--gray-100);
}

.hamburger span {
    width: 24px;
    height: 2.5px;
    background: var(--gray-700);
    margin: 2.5px 0;
    transition: 0.3s;
    border-radius: var(--radius-full);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 5px);
    background: var(--primary);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -5px);
    background: var(--primary);
}

/* ===== HERO SECTION ===== */
.hero {
    margin-top: 80px;
    min-height: auto;
    padding-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    padding: 4rem 0 2rem 0;
}

.hero .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 2rem auto;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 8px 16px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.hero-content h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-content h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: clamp(1.1rem, 2.5vw, 1.375rem);
    color: var(--gray-300);
    margin-bottom: 0;
    line-height: 1.8;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.stat-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.stat-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    display: block;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== SECCIONES PRINCIPALES ===== */
.section {
    position: relative;
    z-index: 1;
}

.servicios-destacados {
    padding: 2rem 0;
    background: transparent;
    position: relative;
}

.servicios-destacados::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(99, 102, 241, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(236, 72, 153, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.por-que-elegirnos {
    padding: 3rem 0;
    background: transparent;
    position: relative;
}

.por-que-elegirnos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 80% 30%, rgba(16, 185, 129, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 20% 70%, rgba(99, 102, 241, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.galeria-preview {
    padding: 3rem 0;
    background: transparent;
    position: relative;
}

.galeria-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 20%, rgba(236, 72, 153, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 30% 80%, rgba(16, 185, 129, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.servicios-destacados .container,
.por-que-elegirnos .container,
.galeria-preview .container {
    position: relative;
    z-index: 2;
}

.servicios-destacados h2,
.por-que-elegirnos h2,
.galeria-preview h2 {
    color: var(--white);
    text-align: center;
    margin-bottom: 1rem;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    background: linear-gradient(135deg, #fff 0%, #e0e7ff 50%, #c7d2fe 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.servicios-destacados p,
.galeria-preview p {
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== SERVICIOS PARA INDEX.HTML ===== */
.servicios-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.servicio-preview {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-align: center;
    cursor: pointer;
    max-width: 350px;
    margin: 0 auto;
}

.servicio-preview:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 8px 16px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.servicio-preview i {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

.servicio-preview h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.servicio-preview p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Centrar Expansiones en Index */
.servicio-preview:nth-child(4) {
    grid-column: 2;
    justify-self: center;
}

/* ===== VENTAJAS ===== */
.ventajas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 1rem;
}

.ventaja {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.ventaja:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 8px 16px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.ventaja i {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

.ventaja h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.ventaja p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* ===== GALERÍA ===== */
.galeria-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 1rem;
}

.galeria-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.galeria-item:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 8px 16px rgba(0, 0, 0, 0.2);
}

.galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.galeria-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem;
    text-align: center;
    transform: translateY(100%);
    transition: var(--transition);
}

.galeria-item:hover .galeria-overlay {
    transform: translateY(0);
}

.galeria-overlay h4 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.galeria-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* ===== SERVICIOS PARA SERVICIOS.HTML ===== */
.servicios-hero {
    margin-top: 80px;
    padding: 3rem 0 2rem 0;
    text-align: center;
    background: transparent;
}

.servicios-hero .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.servicios-hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 2rem auto;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 8px 16px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.servicios-hero-content h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.servicios-hero-content p {
    font-size: clamp(1.1rem, 2.5vw, 1.375rem);
    color: var(--gray-300);
    margin-bottom: 0;
    line-height: 1.8;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.servicios {
    padding-top: 2rem;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.filter-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--white);
    background: rgba(255, 255, 255, 0.15);
}

.filter-btn.active {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: transparent;
    box-shadow: var(--shadow-colored);
    font-weight: 700;
}

.filter-btn[data-filter="todos"] {
    order: -1;
}

.servicios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.servicio-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-align: center;
    cursor: pointer;
    max-width: 350px;
    margin: 0 auto;
}

.servicio-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 8px 16px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.servicio-card h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.servicio-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 1.05rem;
}

.servicio-card i {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

/* ===== CTA FINAL ===== */
.cta-final {
    background: var(--gradient-dark);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 2rem;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.cta-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-whatsapp-unified {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--gradient-green);
    color: white;
    padding: 1.5rem 3rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-whatsapp-unified::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #25d366, #128c7e);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-whatsapp-unified:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
}

.btn-whatsapp-unified:hover::before {
    opacity: 1;
}

.btn-whatsapp-unified i {
    font-size: 1.5rem;
    position: relative;
    z-index: 2;
}

.btn-whatsapp-unified span,
.btn-whatsapp-unified {
    position: relative;
    z-index: 2;
}

/* ===== BOTÓN "VER TODOS LOS SERVICIOS" ===== */
.cta-servicios {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--gradient-primary);
    color: white;
    padding: 1.25rem 2.5rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: var(--shadow-colored);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(99, 102, 241, 0.4);
}

.btn-cta:hover::before {
    opacity: 1;
}

.btn-cta i {
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
}

.btn-cta span,
.btn-cta {
    position: relative;
    z-index: 2;
}

/* ===== FOOTER ===== */
.footer {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
    margin-top: 0;
    position: relative;
}

.footer-simple {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 0;
}

.footer-logo-img {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    object-fit: cover;
    object-position: center;
}

.footer-logo-img:hover {
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.4);
}

.footer-logo h3 {
    color: var(--white);
    font-size: 1.1rem;
    margin: 0;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    margin: 0;
    font-weight: 500;
}

.footer-bottom {
    border: none;
    padding: 0;
    margin: 0;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    margin: 0;
    font-weight: 400;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .navbar {
        padding: 0.75rem 2rem;
    }
    
    .servicios-destacados,
    .por-que-elegirnos,
    .galeria-preview {
        padding: 2.5rem 0;
    }
    
    .cta-final {
        padding: 3.5rem 0;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.5rem 1rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 2rem 1rem;
        transition: all 0.3s ease;
        gap: 1rem;
        box-shadow: var(--shadow-lg);
        border-bottom: 1px solid var(--gray-200);
        transform: translateY(-20px);
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        margin-left: 0;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        max-height: 400px;
    }
    
    .nav-menu li a {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 200px;
        text-align: center;
    }
    
    .nav-menu li a:hover {
        transform: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero {
        margin-top: 70px;
        padding: 2rem 0 1.5rem 0;
    }
    
    .hero-content {
        padding: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .servicios-preview {
        grid-template-columns: 1fr;
        padding: 0 1rem;
        gap: 1.5rem;
    }
    
    .servicio-preview:nth-child(4) {
        grid-column: 1;
        justify-self: center;
    }
    
    .servicios-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
        gap: 1.5rem;
    }
    
    .servicio-preview,
    .servicio-card {
        padding: 1.5rem;
        max-width: none;
    }
    
    .filter-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .galeria-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .servicios-destacados,
    .por-que-elegirnos,
    .galeria-preview {
        padding: 2rem 0;
    }
    
    .cta-final {
        padding: 3rem 0;
        margin-top: 1.5rem;
    }
    
    .btn-whatsapp-unified {
        padding: 1.25rem 2.5rem;
        font-size: 1.1rem;
        width: 100%;
        max-width: 350px;
        justify-content: center;
    }
    
    .btn-whatsapp-unified i {
        font-size: 1.3rem;
    }
    
    .btn-cta {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .btn-cta i {
        font-size: 1.1rem;
    }
    
    .footer {
        padding: 0.75rem 0;
    }
    
    .footer-logo-img {
        width: 35px;
        height: 35px;
    }
    
    .footer-logo h3 {
        font-size: 1rem;
    }
    
    .footer-logo p {
        font-size: 0.75rem;
    }
    
    .footer-bottom p {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0.4rem 0.75rem;
    }
    
    .nav-menu {
        top: 65px;
        padding: 1.5rem 0.75rem;
    }
    
    .nav-menu li a {
        padding: 0.875rem 1.5rem;
        width: 180px;
    }
    
    .hero {
        margin-top: 65px;
        padding: 1.5rem 0 1rem 0;
    }
    
    .hero-content {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-stats {
        padding: 1.25rem;
    }
    
    .servicios-preview,
    .servicios-grid {
        padding: 0 0.5rem;
    }
    
    .servicio-preview,
    .servicio-card {
        padding: 1.25rem;
    }
    
    .filter-btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.85rem;
    }
    
    .servicios-destacados,
    .por-que-elegirnos,
    .galeria-preview {
        padding: 1.5rem 0;
    }
    
    .cta-final {
        padding: 2.5rem 0;
        margin-top: 1rem;
    }
    
    .btn-whatsapp-unified {
        padding: 1rem 2rem;
        font-size: 1rem;
        gap: 0.75rem;
    }
    
    .btn-whatsapp-unified i {
        font-size: 1.2rem;
    }
    
    .btn-cta {
        padding: 0.875rem 1.75rem;
        font-size: 0.9rem;
        gap: 0.5rem;
    }
    
    .btn-cta i {
        font-size: 1rem;
    }
    
    .footer {
        padding: 0.5rem 0;
    }
    
    .footer-simple {
        gap: 0.25rem;
    }
    
    .footer-logo {
        gap: 0.125rem;
    }
    
    .footer-logo-img {
        width: 32px;
        height: 32px;
    }
    
    .footer-logo h3 {
        font-size: 0.95rem;
    }
    
    .footer-logo p {
        font-size: 0.7rem;
    }
    
    .footer-bottom p {
        font-size: 0.65rem;
    }
}

/* ===== BAJAR BOTONES DE FILTROS EN SERVICIOS ===== */
.servicios-hero {
    margin-top: 80px;
    padding: 3rem 0 2rem 0;
    text-align: center;
    background: transparent;
}

.servicios-hero .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.servicios-hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 2rem auto;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 8px 16px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.servicios-hero-content h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.servicios-hero-content p {
    font-size: clamp(1.1rem, 2.5vw, 1.375rem);
    color: var(--gray-300);
    margin-bottom: 0;
    line-height: 1.8;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

/* ===== RESPONSIVE PARA SERVICIOS HERO ===== */
@media (max-width: 768px) {
    .servicios-hero-content {
        padding: 2rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .servicios-hero-content {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
}

/* ===== REDUCIR ESPACIO ENTRE HERO Y BOTONES EN SERVICIOS ===== */
.servicios-hero-content {
    margin-bottom: 1rem; /* Cambio de 2rem a 1rem */
}

.filter-buttons {
    margin-top: 0.5rem; /* Cambio de 1.5rem a 0.5rem */
}

/* ===== RESPONSIVE PARA ESPACIADO ===== */
@media (max-width: 768px) {
    .servicios-hero-content {
        margin-bottom: 0.75rem;
    }
    
    .filter-buttons {
        margin-top: 0.25rem;
    }
}

@media (max-width: 480px) {
    .servicios-hero-content {
        margin-bottom: 0.5rem;
    }
    
    .filter-buttons {
        margin-top: 0rem;
    }
}

/* ===== MODAL PARA GALERÍA ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    margin: auto;
    padding: 0;
    max-width: 90%;
    max-height: 90%;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
}

.modal img {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--radius-lg);
}

.close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    background: rgba(0, 0, 0, 0.7);
    border-radius: var(--radius-full);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.modal-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: white;
    padding: 2rem;
    text-align: center;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.modal-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.modal-info p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* ===== AJUSTES ESPECÍFICOS PARA GALERÍA HERO ===== */
.galeria-hero .hero-content {
    margin-bottom: 2rem;
}

/* ===== RESPONSIVE PARA MODAL ===== */
@media (max-width: 768px) {
    .modal-content {
        max-width: 95%;
        max-height: 95%;
    }
    
    .close {
        top: -35px;
        font-size: 1.5rem;
        width: 35px;
        height: 35px;
    }
    
    .modal-info {
        padding: 1.5rem;
    }
    
    .modal-info h3 {
        font-size: 1.25rem;
    }
    
    .modal-info p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .modal-content {
        max-width: 98%;
        max-height: 98%;
    }
    
    .close {
        top: -30px;
        font-size: 1.25rem;
        width: 30px;
        height: 30px;
    }
    
    .modal-info {
        padding: 1rem;
    }
    
    .modal-info h3 {
        font-size: 1.1rem;
    }
    
    .modal-info p {
        font-size: 0.8rem;
    }
}

/* ===== ESTILOS DEL CARRUSEL QUE FALTAN ===== */
.carrusel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto 4rem auto;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.carrusel-main {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

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

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Cambio de 'cover' a 'contain' */
    object-position: center;
    background: rgba(0, 0, 0, 0.1); /* Fondo sutil para imágenes que no llenen completamente */
}

.slide-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: white;
    padding: 3rem 2rem 3.5rem 2rem; /* Cambio de 2rem a 3.5rem en bottom */
    text-align: center;
}

.slide-info h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.slide-info p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* ===== RESPONSIVE PARA DESCRIPCIÓN ===== */
@media (max-width: 768px) {
    .slide-info {
        padding: 2rem 1.5rem 3rem 1.5rem; /* Más espacio en bottom para móviles */
    }
}

@media (max-width: 480px) {
    .slide-info {
        padding: 1.5rem 1rem 2.5rem 1rem; /* Más espacio en bottom para móviles pequeños */
    }
}

.carrusel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    color: var(--gray-800);
    border: none;
    border-radius: var(--radius-full);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.2rem;
    z-index: 10;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
}

.carrusel-btn:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-lg);
}

.carrusel-btn.prev {
    left: 20px;
}

.carrusel-btn.next {
    right: 20px;
}

.carrusel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 300px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

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

.dot.active {
    background: var(--white);
    border-color: var(--primary);
    transform: scale(1.3);
}

.carrusel-controls {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
}

#playPauseBtn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.9);
    color: var(--gray-800);
    border: none;
    border-radius: var(--radius-full);
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
}

#playPauseBtn:hover {
    background: var(--white);
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

#playPauseBtn i {
    font-size: 1rem;
}

.thumbnails-container-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.thumbnail-small {
    aspect-ratio: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px) saturate(180%);
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.thumbnail-small:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 8px 16px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.thumbnail-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.thumbnail-small:hover img {
    transform: scale(1.1);
}

/* ===== AJUSTAR GALERÍA HERO - SIN DUPLICAR ===== */
.galeria-hero {
    margin-top: 100px; /* Cambio de 80px a 100px */
}

/* ===== NOSOTROS HERO ===== */
.nosotros-hero {
    margin-top: 100px; /* Bajar un poco del header */
    min-height: auto;
    padding: 4rem 0 2rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    position: relative;
}

.nosotros-hero .hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 2rem auto;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 8px 16px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.nosotros-hero h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.nosotros-hero p {
    font-size: clamp(1.1rem, 2.5vw, 1.375rem);
    color: var(--gray-300);
    margin-bottom: 0;
    line-height: 1.8;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

/* ===== NOSOTROS CONTENT ===== */
.nosotros {
    padding: 3rem 0;
}

.nosotros-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.nosotros-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow);
}

.nosotros-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.nosotros-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* ===== VALORES EN RECUADRO ===== */
.valores {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-top: 2rem;
}

.valores h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-align: center;
}

.valores-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.valor-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.valor-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 8px 16px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.valor-item i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.valor-item h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--white);
}

.valor-item p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.6;
}

/* ===== STATS Y EXPERIENCIA EN RECUADRO ===== */
.nosotros-stats {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow);
}

.nosotros-stats h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--white);
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

.experiencia {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-top: 2rem;
}

.experiencia h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-align: center;
}

.experiencia-lista {
    list-style: none;
    padding: 0;
    margin: 0;
}

.experiencia-lista li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.experiencia-lista i {
    color: var(--accent);
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* ===== RESPONSIVE PARA NOSOTROS ===== */
@media (max-width: 768px) {
    .nosotros-hero {
        margin-top: 70px;
        padding: 2rem 0 1.5rem 0;
    }
    
    .nosotros-hero .hero-content {
        padding: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .nosotros-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .nosotros-content,
    .nosotros-stats {
        padding: 2rem;
    }
    
    .valores-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .valores,
    .experiencia {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .nosotros-hero {
        margin-top: 65px;
        padding: 1.5rem 0 1rem 0;
    }
    
    .nosotros-hero .hero-content {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .nosotros-content,
    .nosotros-stats {
        padding: 1.5rem;
    }
    
    .valores,
    .experiencia {
        padding: 1rem;
    }
    
    .valor-item {
        padding: 1rem;
    }
}

/* ===== CONTACTO HERO ===== */
.contacto-hero {
    margin-top: 100px; /* Bajar un poco del header */
    min-height: auto;
    padding: 4rem 0 2rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    position: relative;
}

.contacto-hero .hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 2rem auto;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 8px 16px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.contacto-hero h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.contacto-hero p {
    font-size: clamp(1.1rem, 2.5vw, 1.375rem);
    color: var(--gray-300);
    margin-bottom: 0;
    line-height: 1.8;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

/* ===== CONTACTO CONTENT ===== */
.contacto {
    padding: 3rem 0;
}

.contacto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 2rem;
    align-items: stretch;
}

/* ===== FILA 1: INFO Y FORMULARIO ===== */
.info-card,
.form-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* ===== FILA 2: HORARIOS Y REDES ===== */
.horarios-card,
.redes-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* ===== AJUSTAR ESTRUCTURA HTML CON CSS ===== */
.contacto-info {
    display: contents; /* Hace que los hijos se comporten como hijos directos del grid */
}

/* ===== RESPONSIVE PARA 2x2 ===== */
@media (max-width: 768px) {
    .contacto-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto auto;
        gap: 1.5rem;
    }
    
    .info-card,
    .form-card,
    .horarios-card,
    .redes-card {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .contacto-grid {
        gap: 1rem;
    }
    
    .info-card,
    .form-card,
    .horarios-card,
    .redes-card {
        padding: 1.5rem;
    }
}

/* ===== RESPONSIVE PARA CONTACTO ===== */
@media (max-width: 768px) {
    .contacto-hero {
        margin-top: 70px;
        padding: 2rem 0 1.5rem 0;
    }
    
    .contacto-hero .hero-content {
        padding: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .contacto-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .info-card,
    .horarios-card,
    .redes-card,
    .form-card,
    .mapa-card {
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .redes-sociales {
        grid-template-columns: 1fr;
    }
    
    .mapa-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .contacto-hero {
        margin-top: 65px;
        padding: 1.5rem 0 1rem 0;
    }
    
    .contacto-hero .hero-content {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .info-card,
    .horarios-card,
    .redes-card,
    .form-card,
    .mapa-card {
        padding: 1.5rem;
    }
    
    .info-item,
    .horario-item,
    .red-social {
        padding: 1rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.875rem;
   

    }
}

/* ===== CARDS DE CONTACTO MÁS BONITAS ===== */
.info-card h3,
.horarios-card h3,
.redes-card h3,
.form-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    text-align: center;
    position: relative;
}

.info-card h3::after,
.horarios-card h3::after,
.redes-card h3::after,
.form-card h3::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
}

/* ===== INFO ITEMS MEJORADOS ===== */
.info-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.info-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 0 var(--radius) var(--radius) 0;
}

.info-item:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.2),
        0 5px 15px rgba(0, 0, 0, 0.1);
}

.info-item i {
    font-size: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    flex-shrink: 0;
    margin-top: 0.25rem;
    padding: 0.5rem;
    background-color: rgba(99, 102, 241, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
}

.info-item-content h4 {
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.info-item-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.info-item-content small {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-style: italic;
}

/* ===== HORARIOS MEJORADOS ===== */
.horarios-grid {
    display: grid;
    gap: 1.5rem;
}

.horario-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.75rem 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.horario-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-accent);
}

.horario-item:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.15),
        0 5px 10px rgba(0, 0, 0, 0.1);
}

.horario-item .dia {
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.horario-item .dia::before {
    content: '📅';
    font-size: 1.2rem;
}

.horario-item .hora {
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

/* ===== REDES SOCIALES MEJORADAS ===== */
.redes-sociales {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.red-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: var(--transition);
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.red-social::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    transition: var(--transition);
    z-index: -1;
}

.red-social:hover {
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.2),
        0 5px 15px rgba(0, 0, 0, 0.1);
}

.red-social.whatsapp:hover::before {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.2) 0%, rgba(18, 140, 126, 0.1) 100%);
}

.red-social.instagram:hover::before {
    background: linear-gradient(135deg, rgba(228, 64, 95, 0.2) 0%, rgba(241, 166, 132, 0.1) 100%);
}

.red-social.tiktok:hover::before {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(255, 255, 255, 0.1) 100%);
}

.red-social.email:hover::before {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(118, 75, 162, 0.1) 100%);
}

.red-social i {
    font-size: 2.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.red-social:hover i {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.red-social span {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== FORMULARIO MEJORADO ===== */
.form-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

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

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

.form-group label {
    display: block;
    color: var(--white);
    font-weight: 700;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    color: var(--white);
    font-size: 1rem;
    transition: var(--transition);
    font-weight: 500;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
    box-shadow: 
        0 0 0 4px rgba(99, 102, 241, 0.1),
        0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

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

.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    background: var(--gradient-primary);
    color: white;
    padding: 1.5rem 2rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: var(--transition);
    box-shadow: 
        0 8px 25px rgba(99, 102, 241, 0.3),
        0 4px 10px rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
    margin-top: auto;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 15px 35px rgba(99, 102, 241, 0.4),
        0 8px 15px rgba(0, 0, 0, 0.2);
}

.btn-submit:hover::before {
    opacity: 1;
}

.btn-submit i,
.btn-submit span {
    position: relative;
    z-index: 2;
}

.btn-submit i {
    font-size: 1.3rem;
}

/* ===== RESPONSIVE PARA CARDS BONITAS ===== */
@media (max-width: 768px) {
    .redes-sociales {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .red-social {
        flex-direction: row;
        justify-content: center;
        padding: 1.5rem;
    }
    
    .red-social i {
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
    }
    
    .info-item {
        padding: 1.5rem;
    }
    
    .horario-item {
        padding: 1.5rem;
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .info-item {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
    }
    
    .red-social {
        padding: 1.25rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 1rem;
    }
    
    .btn-submit {
        padding: 1.25rem 1.5rem;
        font-size: 1.1rem;
    }
}