/* ===================================
   VARIABLES Y RESET
   =================================== */
:root {
    /* Colores Principales */
    --primary-color: #dc2626;
    --secondary-color: #4b5563;
    --accent-color: #ef4444;
    --dark-color: #1f2937;
    --light-color: #f9fafb;
    --white: #ffffff;
    
    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    --gradient-secondary: linear-gradient(135deg, #4b5563 0%, #6b7280 100%);
    --gradient-hero: linear-gradient(135deg, rgba(31,41,55,0.95) 0%, rgba(17,24,39,0.95) 100%);
    --gradient-dark: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    
    /* Tipografía */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Montserrat', sans-serif;
    
    /* Espaciado */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Sombras */
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.2);
    --shadow-xl: 0 15px 50px rgba(0,0,0,0.25);
    
    /* Bordes */
    --border-radius-sm: 8px;
    --border-radius-md: 15px;
    --border-radius-lg: 25px;
    
    /* Transiciones */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    color: var(--dark-color);
    line-height: 1.7;
    background-color: var(--white);
    overflow-x: hidden;
    /* Prevenir scroll cuando el menú móvil está abierto */
    transition: overflow 0.3s ease;
}

/* Clase para bloquear scroll cuando menú móvil está abierto */
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Asegurar que las secciones no se superpongan con el navbar al hacer scroll */
section {
    scroll-margin-top: 100px;
}

@media (max-width: 968px) {
    section {
        scroll-margin-top: 80px;
    }
}

@media (max-width: 768px) {
    section {
        scroll-margin-top: 70px;
    }
}

/* ===================================
   UTILIDADES
   =================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: var(--border-radius-lg);
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-normal);
    cursor: pointer;
    border: none;
    text-align: center;
    font-family: var(--font-primary);
    min-height: 48px; /* Touch-friendly */
}

@media (max-width: 768px) {
    .btn {
        padding: 0.9rem 1.75rem;
        font-size: 0.95rem;
        min-height: 44px;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 0.85rem 1.5rem;
        font-size: 0.9rem;
    }
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 5px 20px rgba(220,38,38,0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(220,38,38,0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-tag {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: var(--spacing-sm);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: var(--spacing-sm);
    font-family: var(--font-secondary);
}

@media (max-width: 968px) {
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.875rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.625rem;
    }
}

.section-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

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

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes hamburgerPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.4);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(220, 38, 38, 0);
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease;
}

.animate-fade-in-delay {
    animation: fadeIn 1s ease 0.3s both;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 1s ease 0.6s both;
}

.animate-fade-in-delay-3 {
    animation: fadeIn 1s ease 0.9s both;
}

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    padding: 1.75rem 0;
    z-index: 1000;
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(255,255,255,0.98);
    box-shadow: var(--shadow-md);
    padding: 1.25rem 0;
}

.navbar.scrolled .logo,
.navbar.scrolled .nav-link {
    color: var(--dark-color);
}

.navbar.scrolled .cta-nav {
    color: var(--white);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 1.5rem;
        justify-content: space-between;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    transition: transform var(--transition-normal);
    z-index: 1001;
    cursor: pointer;
}

/* En móvil: ajustar posiciones */
@media (max-width: 968px) {
    .logo {
        order: 2;
    }
    
    .hamburger {
        order: 1;
    }
}

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

/* Forzar color blanco en menú móvil e items desplegables para mejor contraste */
@media (max-width: 968px) {
    /* Enlaces principales del menú */
    .nav-menu .nav-link,
    .nav-menu a {
        color: var(--white) !important;
    }

    /* Enlaces del dropdown/subservicios */
    .dropdown-menu li a,
    .dropdown-menu li a span {
        color: var(--white) !important;
    }

    /* Asegurar iconos y chevrons visibles */
    .nav-menu .fas,
    .dropdown-menu li a i,
    .nav-dropdown > a i {
        color: var(--white) !important;
    }
}

.logo img,
.logo-image {
    height: 45px;
    width: auto;
    object-fit: contain;
    transition: all var(--transition-normal);
}

.navbar.scrolled .logo img,
.navbar.scrolled .logo-image {
    height: 38px;
}

.logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
    transition: transform var(--transition-normal);
}

.navbar.scrolled .logo-img {
    height: 38px;
}

.logo i {
    color: var(--primary-color);
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

@media (max-width: 968px) {
    .nav-menu {
        gap: 0;
    }
}

.nav-link {
    color: var(--white);
    font-weight: 500;
    font-size: 1.05rem;
    transition: all var(--transition-fast);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width var(--transition-normal);
}

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

.cta-nav {
    background: var(--gradient-primary);
    color: var(--white) !important;
    padding: 0.85rem 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 5px 15px rgba(220,38,38,0.3);
    font-size: 1.05rem;
}

.cta-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220,38,38,0.4);
}

.cta-nav::after {
    display: none;
}

/* Ocultar cualquier checkbox de navegación */
.nav-toggle,
input[type="checkbox"]#nav-toggle {
    display: none !important;
    visibility: hidden !important;
    position: absolute !important;
    left: -9999px !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    padding: 8px;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
    
    /* Reset de estilos de botón */
    border: none;
    outline: none;
    font-family: inherit;
}

.hamburger:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.hamburger:hover {
    background: rgba(220, 38, 38, 0.2);
    transform: scale(1.05);
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger.active {
    background: rgba(220, 38, 38, 0.3);
}

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

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

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

/* En escritorio, el hamburger cambia con scroll (aunque no se vea) */
.navbar.scrolled .hamburger span {
    background: var(--dark-color);
}

/* ========================================
   MOBILE MENU - REDISEÑO COMPLETO Y MODERNO
   ======================================== */
@media (max-width: 968px) {
    /* Navbar móvil con efecto glass */
    .navbar {
        background: rgba(31, 41, 55, 0.95);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        box-shadow: 0 2px 10px rgba(0,0,0,0.3);
        padding: 1rem 0;
    }
    
    .navbar .logo,
    .navbar .logo span {
        color: var(--white);
    }
    
    .navbar.scrolled {
        background: rgba(31, 41, 55, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }
    
    /* ========================================
       BOTÓN HAMBURGUESA ULTRA MODERNO
       ======================================== */
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 6px;
        
        width: 46px;
        height: 46px;
        padding: 10px;
        
        cursor: pointer;
        z-index: 1002;
        
        /* Reset de estilos de botón */
        border: 2px solid rgba(220, 38, 38, 0.3);
        outline: none;
        font-family: inherit;
        
        /* Fondo moderno con gradiente sutil */
        background: linear-gradient(135deg, 
            rgba(220, 38, 38, 0.15) 0%, 
            rgba(185, 28, 28, 0.15) 100%);
        border-radius: 12px;
        
        /* Sombra sutil */
        box-shadow: 0 4px 12px rgba(220, 38, 38, 0.2);
        
        /* Transiciones suaves */
        transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }
    
    .hamburger:hover {
        background: linear-gradient(135deg, 
            rgba(220, 38, 38, 0.25) 0%, 
            rgba(185, 28, 28, 0.25) 100%);
        border-color: rgba(220, 38, 38, 0.5);
        box-shadow: 0 6px 20px rgba(220, 38, 38, 0.35);
        transform: scale(1.08);
    }
    
    /* Barras del hamburguesa - diseño moderno */
    .hamburger span {
        display: block;
        width: 24px;
        height: 3px;
        background: var(--primary-color);
        border-radius: 4px;
        transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        box-shadow: 0 2px 4px rgba(220, 38, 38, 0.3);
    }
    
    /* Estado ACTIVO del hamburguesa - X moderna */
    .hamburger.active {
        background: linear-gradient(135deg, 
            rgba(220, 38, 38, 0.35) 0%, 
            rgba(185, 28, 28, 0.35) 100%);
        border-color: rgba(220, 38, 38, 0.6);
        box-shadow: 0 8px 24px rgba(220, 38, 38, 0.4);
        transform: scale(1.05) rotate(90deg);
    }
    
    .hamburger.active span {
        background: var(--white);
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-30px);
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    /* ========================================
       MENÚ OVERLAY - PANTALLA COMPLETA
       ======================================== */
    
    /* Overlay de pantalla completa */
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        height: 100dvh; /* Para móviles modernos */
        
        /* Fondo con gradiente oscuro y blur */
        background: linear-gradient(135deg, 
            rgba(17, 24, 39, 0.98) 0%, 
            rgba(31, 41, 55, 0.98) 50%,
            rgba(17, 24, 39, 0.98) 100%);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        
        /* Patrón sutil de fondo */
        background-image: 
            linear-gradient(135deg, 
                rgba(17, 24, 39, 0.98) 0%, 
                rgba(31, 41, 55, 0.98) 50%,
                rgba(17, 24, 39, 0.98) 100%),
            radial-gradient(circle at 20% 30%, rgba(220, 38, 38, 0.08) 0%, transparent 50%),
            radial-gradient(circle at 80% 70%, rgba(220, 38, 38, 0.08) 0%, transparent 50%);
        
        /* Centrado absoluto */
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0;
        
        /* Oculto por defecto */
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        
        /* Transiciones suaves */
        transition: opacity 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55),
                    visibility 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        
        /* Z-index alto */
        z-index: 1000;
        
        /* Scroll suave si es necesario */
        overflow-y: auto;
        overflow-x: hidden;
        
        /* Padding para respiración */
        padding: 100px 25px 50px;
    }
    
    /* Estilo del scroll en el menú */
    .nav-menu::-webkit-scrollbar {
        width: 6px;
    }
    
    .nav-menu::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.05);
    }
    
    .nav-menu::-webkit-scrollbar-thumb {
        background: rgba(220, 38, 38, 0.5);
        border-radius: 3px;
    }
    
    /* Estado ACTIVO del menú */
    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
        animation: menuSlideIn 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }
    
    @keyframes menuSlideIn {
        from {
            opacity: 0;
            transform: scale(0.95);
        }
        to {
            opacity: 1;
            transform: scale(1);
        }
    }
    
    /* ========================================
       ITEMS DEL MENÚ PRINCIPAL
       ======================================== */
    
    .nav-menu > li {
        width: 100%;
        max-width: 420px;
        margin: 0 auto 14px;
        list-style: none;
        
        /* Animación inicial */
        opacity: 0;
        transform: translateY(40px) scale(0.9);
        transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }
    
    .nav-menu.active > li {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    
    /* Delays escalonados para efecto cascada */
    .nav-menu.active > li:nth-child(1) { transition-delay: 0.08s; }
    .nav-menu.active > li:nth-child(2) { transition-delay: 0.14s; }
    .nav-menu.active > li:nth-child(3) { transition-delay: 0.20s; }
    .nav-menu.active > li:nth-child(4) { transition-delay: 0.26s; }
    .nav-menu.active > li:nth-child(5) { transition-delay: 0.32s; }
    .nav-menu.active > li:nth-child(6) { transition-delay: 0.38s; }
    
    /* Enlaces principales - diseño moderno */
    .nav-menu > li > a {
        display: block;
        width: 100%;
        padding: 18px 28px;
        
        /* Centrado perfecto */
        text-align: center;
        
        /* Tipografía elegante */
        color: var(--white);
        font-size: 1.25rem;
        font-weight: 600;
        letter-spacing: 0.8px;
        text-decoration: none;
        text-transform: uppercase;
        
        /* Fondo glassmorphism */
        background: rgba(255, 255, 255, 0.06);
        border: 2px solid rgba(255, 255, 255, 0.12);
        border-radius: 18px;
        
        /* Efectos modernos */
        backdrop-filter: blur(15px);
        box-shadow: 
            0 4px 15px rgba(0, 0, 0, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
        
        /* Transiciones suaves */
        transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        
        /* Efecto de brillo sutil */
        position: relative;
        overflow: hidden;
    }
    
    /* Efecto de brillo al pasar */
    .nav-menu > li > a::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, 
            transparent, 
            rgba(255, 255, 255, 0.15), 
            transparent);
        transition: left 0.6s ease;
    }
    
    .nav-menu > li > a:hover::before {
        left: 100%;
    }
    
    /* Hover y Active states */
    .nav-menu > li > a:hover,
    .nav-menu > li > a:active {
        background: linear-gradient(135deg, 
            var(--primary-color) 0%, 
            #b91c1c 100%);
        border-color: rgba(220, 38, 38, 0.8);
        transform: translateY(-4px) scale(1.02);
        box-shadow: 
            0 10px 30px rgba(220, 38, 38, 0.5),
            0 0 20px rgba(220, 38, 38, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
    
    /* ========================================
       DROPDOWN DE SERVICIOS - TOTALMENTE CENTRADO
       ======================================== */
    
    .nav-dropdown {
        width: 100%;
    }
    
    .nav-dropdown > a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }
    
    .nav-dropdown > a i.fa-chevron-down {
        font-size: 0.85rem;
        transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    }
    
    .nav-dropdown.active > a i.fa-chevron-down {
        transform: rotate(180deg);
    }
    
    /* Container del dropdown - Rediseñado */
    .dropdown-menu {
        width: 100%;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        
        /* Centrado perfecto */
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 12px;
        
        margin: 0 auto;
        padding: 0 15px;
        
        /* Transiciones suaves */
        transition: 
            max-height 0.7s cubic-bezier(0.68, -0.55, 0.265, 1.55), 
            opacity 0.5s ease,
            margin 0.5s ease,
            padding 0.5s ease;
        
        background: transparent;
        border: none;
        box-shadow: none;
    }
    
    /* Dropdown ABIERTO */
    .nav-dropdown.active .dropdown-menu {
        max-height: 1000px;
        opacity: 1;
        margin: 16px auto 0;
        padding: 12px 15px;
    }
    
    /* Items del dropdown - PERFECTAMENTE CENTRADOS CON INDICADOR */
    .dropdown-menu li {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        list-style: none;
        position: relative;
        
        /* Animación de entrada */
        opacity: 0;
        transform: translateY(20px) scale(0.95);
        transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }
    
    .nav-dropdown.active .dropdown-menu li {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    
    /* Delays en cascada para subservicios */
    .nav-dropdown.active .dropdown-menu li:nth-child(1) { transition-delay: 0.08s; }
    .nav-dropdown.active .dropdown-menu li:nth-child(2) { transition-delay: 0.14s; }
    .nav-dropdown.active .dropdown-menu li:nth-child(3) { transition-delay: 0.20s; }
    .nav-dropdown.active .dropdown-menu li:nth-child(4) { transition-delay: 0.26s; }
    .nav-dropdown.active .dropdown-menu li:nth-child(5) { transition-delay: 0.32s; }
    .nav-dropdown.active .dropdown-menu li:nth-child(6) { transition-delay: 0.38s; }
    
    /* Links del dropdown - PERFECTAMENTE CENTRADOS Y LEGIBLES */
    .dropdown-menu li a {
        /* Flex para layout horizontal del contenido */
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 14px;
        
        /* Tamaño y espaciado */
        width: 100%;
        padding: 16px 20px 16px 24px;
        
        /* Texto legible */
        text-align: left;
        text-decoration: none;
        
        /* Tipografía mejorada para legibilidad */
        color: var(--white);
        font-size: 0.95rem;
        font-weight: 500;
        line-height: 1.4;
        letter-spacing: 0.3px;
        text-transform: capitalize;
        
        /* Permite wrap del texto */
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
        
        /* Visual con indicador izquierdo */
        background: linear-gradient(135deg, 
            rgba(220, 38, 38, 0.12) 0%, 
            rgba(185, 28, 28, 0.12) 100%);
        border: 1px solid rgba(220, 38, 38, 0.25);
        border-left: 4px solid var(--primary-color);
        border-radius: 10px;
        backdrop-filter: blur(8px);
        
        /* Sombras sutiles */
        box-shadow: 
            0 2px 8px rgba(0, 0, 0, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.08);
        
        /* Transición suave */
        transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        
        /* Sin overflow para ver todo el texto */
        position: relative;
    }
    
    /* Iconos del dropdown - visibles y alineados */
    .dropdown-menu li a i {
        color: var(--primary-color);
        font-size: 1.1rem;
        flex-shrink: 0;
        min-width: 24px;
        width: 24px;
        text-align: center;
        transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    }
    
    /* Hover en dropdown items - Efecto mejorado */
    .dropdown-menu li a:hover,
    .dropdown-menu li a:active {
        background: linear-gradient(135deg, 
            rgba(220, 38, 38, 0.85) 0%, 
            rgba(185, 28, 28, 0.85) 100%);
        border-left-width: 6px;
        border-left-color: var(--white);
        transform: translateX(4px);
        box-shadow: 
            0 6px 20px rgba(220, 38, 38, 0.45),
            inset 0 1px 0 rgba(255, 255, 255, 0.15);
    }
    
    .dropdown-menu li a:hover i,
    .dropdown-menu li a:active i {
        color: var(--white);
        transform: scale(1.2) rotate(8deg);
    }
    
    /* ========================================
       CTA BUTTON ESPECIAL
       ======================================== */
    
    .cta-nav {
        background: linear-gradient(135deg, 
            var(--primary-color) 0%, 
            #b91c1c 100%) !important;
        border: 2px solid rgba(255, 255, 255, 0.25) !important;
        box-shadow: 
            0 10px 30px rgba(220, 38, 38, 0.5),
            0 0 20px rgba(220, 38, 38, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
    }
    
    .cta-nav:hover {
        box-shadow: 
            0 14px 40px rgba(220, 38, 38, 0.7),
            0 0 30px rgba(220, 38, 38, 0.5),
            inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
        transform: translateY(-5px) scale(1.03);
    }
}

/* ===================================
   AJUSTES PARA MÓVILES PEQUEÑOS
   =================================== */
@media (max-width: 480px) {
    /* Padding del overlay reducido */
    .nav-menu {
        padding: 90px 18px 40px;
    }
    
    /* Botón hamburguesa más pequeño pero visible */
    .hamburger {
        width: 44px;
        height: 44px;
        gap: 5px;
    }
    
    .hamburger span {
        width: 22px;
    }
    
    /* Items principales más compactos */
    .nav-menu > li {
        margin-bottom: 12px;
        max-width: 100%;
    }
    
    .nav-menu > li > a {
        padding: 16px 24px;
        font-size: 1.15rem;
        letter-spacing: 0.5px;
    }
    
    /* Dropdown items ajustados pero legibles */
    .dropdown-menu {
        gap: 10px;
        padding: 0 10px;
        margin: 0 auto;
    }
    
    .nav-dropdown.active .dropdown-menu {
        padding: 10px;
        margin: 16px auto 0;
    }
    
    .dropdown-menu li {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .dropdown-menu li a {
        padding: 14px 18px 14px 20px;
        font-size: 0.9rem;
        gap: 12px;
        font-weight: 500;
        letter-spacing: 0.2px;
        border-left-width: 3px;
    }
    
    .dropdown-menu li a i {
        font-size: 1rem;
        min-width: 22px;
        width: 22px;
    }
}

/* ===================================
   AJUSTES PARA PANTALLAS MUY PEQUEÑAS
   =================================== */
@media (max-width: 360px) {
    .nav-menu {
        padding: 85px 15px 35px;
    }
    
    .nav-menu > li > a {
        padding: 14px 20px;
        font-size: 1.08rem;
    }
    
    .dropdown-menu {
        padding: 0 8px;
        margin: 0 auto;
    }
    
    .nav-dropdown.active .dropdown-menu {
        padding: 8px;
        margin: 16px auto 0;
    }
    
    .dropdown-menu li {
        width: 100%;
        margin: 0 auto;
    }
    
    .dropdown-menu li a {
        padding: 13px 16px 13px 18px;
        font-size: 0.85rem;
        font-weight: 500;
        letter-spacing: 0.2px;
        gap: 10px;
        border-left-width: 3px;
    }
    
    .dropdown-menu li a i {
        font-size: 0.95rem;
        min-width: 20px;
        width: 20px;
    }
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, rgba(31,41,55,0.85) 0%, rgba(17,24,39,0.90) 100%),
                url('../assets/images/hero-bg.jpg') center top/cover no-repeat fixed;
    overflow: hidden;
    /* Espacio superior para evitar superposición con navbar en desktop */
    padding-top: 100px;
}

@media (max-width: 968px) {
    .hero {
        padding-top: 80px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 70px;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(220,38,38,0.15) 0%, transparent 50%);
    z-index: 1;
}

.hero-overlay {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: var(--spacing-md);
}

/* Hero Brand Name - Simple & Elegant */
.hero-brand {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: var(--font-secondary);
    letter-spacing: normal;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: fadeInDown 1s ease-out;
}

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

/* Responsive Brand */
@media (max-width: 968px) {
    .hero-brand {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-brand {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-brand {
        font-size: 1.75rem;
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-top: 3rem;
    margin-bottom: var(--spacing-md);
    font-family: var(--font-secondary);
}

@media (max-width: 968px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-lg);
    color: rgba(255,255,255,0.9);
    font-weight: 300;
}

@media (max-width: 768px) {
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: var(--spacing-md);
    }
}

@media (max-width: 480px) {
    .hero-subtitle {
        font-size: 1rem;
    }
}

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

@media (max-width: 768px) {
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }
}

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

@media (max-width: 768px) {
    .hero-stats {
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        gap: 1.5rem;
        flex-direction: column;
        align-items: center;
    }
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #dc2626;
    font-family: var(--font-secondary);
}

@media (max-width: 768px) {
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .stat-number {
        font-size: 2rem;
    }
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    margin-top: 0.5rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 5rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 2;
    opacity: 0.9;
    transition: opacity var(--transition-normal);
}

.scroll-indicator:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .scroll-indicator {
        bottom: 3rem;
    }
}

@media (max-width: 480px) {
    .scroll-indicator {
        bottom: 2rem;
    }
}

/* ===================================
   ABOUT SECTION
   =================================== */
.about-section {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

@media (max-width: 768px) {
    .about-section {
        padding: var(--spacing-lg) 0;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: var(--spacing-md) 0;
    }
}

/* Nuevo diseño centrado y más cómodo de leer */
.about-content-new {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.about-image-centered {
    width: 100%;
    max-width: 400px;
    margin-bottom: var(--spacing-md);
}

.about-text-centered {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.about-text-centered h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: var(--spacing-sm);
    font-family: var(--font-secondary);
}

@media (max-width: 968px) {
    .about-text-centered h3 {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    .about-text-centered h3 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .about-text-centered h3 {
        font-size: 1.75rem;
    }
}

.about-intro {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .about-intro {
        font-size: 1.1rem;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .about-intro {
        font-size: 1rem;
    }
}

/* Cards grid para formación y metodología */
.about-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--spacing-md);
    width: 100%;
    margin-bottom: var(--spacing-md);
}

@media (max-width: 968px) {
    .about-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .about-cards-grid {
        gap: 1.25rem;
    }
}

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

.about-card {
    background: var(--light-color);
    padding: var(--spacing-md);
    border-radius: var(--border-radius-md);
    border-left: 4px solid var(--primary-color);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

@media (max-width: 768px) {
    .about-card {
        padding: 1.75rem;
    }
}

@media (max-width: 480px) {
    .about-card {
        padding: 1.5rem;
    }
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-sm);
}

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

.about-card h4 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: var(--spacing-sm);
    font-family: var(--font-secondary);
}

.about-card p {
    color: #555;
    line-height: 1.8;
}

.credentials-list {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.credentials-list li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: #555;
}

.credentials-list i {
    color: #10b981;
    font-size: 1rem;
}

/* Estilos antiguos mantener compatibilidad */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.about-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(220, 38, 38, 0.2),
        0 10px 30px rgba(0, 0, 0, 0.15);
    border: 4px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, #dc2626, #ef4444, #dc2626) border-box;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: imagePulse 3s ease-in-out infinite;
}

.image-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(220, 38, 38, 0.15) 50%,
        transparent 70%
    );
    transform: rotate(0deg);
    animation: shimmer 3s linear infinite;
}

.image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(220, 38, 38, 0.1) 0%,
        transparent 50%,
        rgba(239, 68, 68, 0.1) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.image-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 30px 80px rgba(220, 38, 38, 0.3),
        0 15px 40px rgba(0, 0, 0, 0.2);
    border-width: 5px;
}

.image-wrapper:hover::after {
    opacity: 1;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--transition-slow);
    position: relative;
    z-index: 1;
}

.image-wrapper:hover img {
    transform: scale(1.08);
    filter: brightness(1.05) contrast(1.05);
}

@keyframes imagePulse {
    0%, 100% {
        box-shadow: 
            0 20px 60px rgba(220, 38, 38, 0.2),
            0 10px 30px rgba(0, 0, 0, 0.15);
    }
    50% {
        box-shadow: 
            0 25px 70px rgba(220, 38, 38, 0.25),
            0 12px 35px rgba(0, 0, 0, 0.18);
    }
}

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

.image-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
}

.about-text h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: var(--spacing-sm);
    font-family: var(--font-secondary);
}

.credentials,
.methodology {
    margin-top: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--light-color);
    border-radius: var(--border-radius-md);
    border-left: 4px solid var(--primary-color);
}

.credentials h4,
.methodology h4 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.credentials h4 i,
.methodology h4 i {
    color: var(--primary-color);
}

.methodology p {
    color: #555;
    line-height: 1.8;
}

.about-quote {
    margin-top: var(--spacing-md);
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.05) 0%, rgba(239, 68, 68, 0.1) 100%);
    border-radius: var(--border-radius-lg);
    text-align: center;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.about-quote::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(239, 68, 68, 0.15));
    border-radius: 50%;
    z-index: 0;
}

.about-quote::after {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.08), rgba(239, 68, 68, 0.12));
    border-radius: 50%;
    z-index: 0;
}

.about-quote blockquote {
    position: relative;
    z-index: 1;
    margin: 0;
    padding: 0;
    font-size: 1.5rem;
    font-weight: 600;
    font-style: normal;
    line-height: 1.6;
    color: var(--dark-color);
    font-family: var(--font-secondary);
}

.about-quote blockquote::before {
    content: '"';
    font-size: 5rem;
    font-weight: 900;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    line-height: 1;
    font-family: Georgia, serif;
}

@media (max-width: 768px) {
    .about-quote {
        padding: 2rem 1.5rem;
    }
    
    .about-quote blockquote {
        font-size: 1.2rem;
    }
    
    .about-quote blockquote::before {
        font-size: 3.5rem;
        top: -20px;
    }
}

.about-achievements {
    margin-top: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--light-color);
    border-radius: var(--border-radius-md);
    border-left: 4px solid var(--primary-color);
    width: 100%;
}

.about-achievements h4 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.about-achievements h4 i {
    color: var(--primary-color);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--spacing-md);
}

.achievement-item {
    text-align: center;
    padding: var(--spacing-sm);
    background: var(--white);
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-fast);
}

.achievement-item:hover {
    transform: translateY(-5px);
}

.achievement-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.achievement-label {
    font-size: 0.9rem;
    color: var(--gray-color);
}

/* ===================================
   OPOSICIONES SECTION
   =================================== */
.oposiciones-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
}

@media (max-width: 768px) {
    .oposiciones-section {
        padding: var(--spacing-lg) 0;
    }
}

@media (max-width: 480px) {
    .oposiciones-section {
        padding: var(--spacing-md) 0;
    }
}

.oposiciones-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.oposiciones-hero {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--spacing-lg);
    align-items: center;
}

@media (max-width: 968px) {
    .oposiciones-hero {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
}

@media (max-width: 768px) {
    .oposiciones-hero {
        gap: 2rem;
    }
}

.oposiciones-image {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.oposiciones-image img {
    width: 100%;
    height: auto;
    display: block;
}

.success-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
    .success-badge {
        top: 1rem;
        right: 1rem;
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .success-badge {
        top: 0.5rem;
        right: 0.5rem;
        padding: 0.75rem;
    }
}

.badge-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

@media (max-width: 768px) {
    .badge-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .badge-number {
        font-size: 1.75rem;
    }
}

.badge-text {
    display: block;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.oposiciones-info h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: var(--spacing-sm);
    font-family: var(--font-secondary);
}

@media (max-width: 768px) {
    .oposiciones-info h3 {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .oposiciones-info h3 {
        font-size: 1.5rem;
    }
}

.intro-text {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

@media (max-width: 768px) {
    .intro-text {
        font-size: 1.05rem;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .intro-text {
        font-size: 1rem;
    }
}

.oposiciones-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
}

@media (max-width: 768px) {
    .oposiciones-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .oposiciones-features {
        gap: 0.875rem;
    }
}

.feature-box {
    background: var(--white);
    padding: var(--spacing-sm);
    border-radius: var(--border-radius-sm);
    border-left: 3px solid var(--primary-color);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

@media (max-width: 768px) {
    .feature-box {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .feature-box {
        padding: 0.875rem;
    }
}

.feature-box:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.feature-box i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.feature-box h4 {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.feature-box p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

.oposiciones-tipos {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.oposiciones-tipos h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-color);
    text-align: center;
    margin-bottom: var(--spacing-md);
    font-family: var(--font-secondary);
}

@media (max-width: 768px) {
    .oposiciones-tipos h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .oposiciones-tipos h3 {
        font-size: 1.4rem;
    }
}

.tipos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--spacing-sm);
}

@media (max-width: 768px) {
    .tipos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

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

.tipo-card {
    background: var(--light-color);
    padding: var(--spacing-sm);
    border-radius: var(--border-radius-sm);
    text-align: center;
    transition: all var(--transition-normal);
    cursor: pointer;
}

.tipo-card:hover {
    background: var(--gradient-primary);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.tipo-card i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    transition: color var(--transition-normal);
}

.tipo-card:hover i {
    color: var(--white);
}

.tipo-card h4 {
    font-size: 1rem;
    font-weight: 600;
}

/* ===================================
   SERVICES SECTION
   =================================== */
.services-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.services-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

@media (max-width: 768px) {
    .services-section {
        padding: var(--spacing-lg) 0;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: var(--spacing-md) 0;
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .services-grid {
        gap: 1.25rem;
    }
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(220, 38, 38, 0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
}

@media (max-width: 768px) {
    .service-card {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .service-card {
        padding: 1.75rem;
    }
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: left;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: radial-gradient(circle at 80% 20%, rgba(220, 38, 38, 0.03) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.15), 0 8px 16px rgba(0, 0, 0, 0.1);
    border-color: rgba(220, 38, 38, 0.2);
}

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

.service-card:hover::after {
    opacity: 1;
}

.service-featured {
    background: var(--white);
    color: var(--dark-color);
    transform: scale(1);
    border: 3px solid #dc2626;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.15), 0 0 0 1px rgba(220, 38, 38, 0.1);
}

.service-featured:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: #dc2626;
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.25), 0 8px 16px rgba(220, 38, 38, 0.15);
}

.service-featured h3 {
    color: var(--dark-color);
}

.service-featured p {
    color: #666;
    opacity: 1;
}

.service-featured .service-features li {
    color: #555;
}

.featured-badge {
    position: absolute;
    top: 1.2rem;
    right: -2.5rem;
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    color: var(--white);
    padding: 0.6rem 3rem;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transform: rotate(45deg);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
}

.service-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.25);
}

.service-card:hover .service-icon {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 12px 30px rgba(220, 38, 38, 0.35);
}

.service-featured .service-icon {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

.service-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-family: var(--font-secondary);
    line-height: 1.3;
}

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 0.98rem;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 1.8rem;
    padding-left: 0.5rem;
    flex-grow: 1;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    color: #555;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding-left: 0.5rem;
    border-left: 2px solid transparent;
}

.service-card:hover .service-features li {
    border-left-color: rgba(220, 38, 38, 0.2);
}

.service-features i {
    color: #10b981;
    font-size: 1rem;
    flex-shrink: 0;
}

.service-btn {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 1rem 1.5rem;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin-top: auto;
}

.service-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

.service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.35);
}

.service-btn:hover::before {
    width: 300px;
    height: 300px;
}

/* ===================================
   SPECIALTIES SECTION
   =================================== */
.specialties-section {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.specialties-content {
    max-width: 900px;
    margin: 0 auto;
}

.specialty-item {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-md);
    background: var(--light-color);
    border-radius: var(--border-radius-lg);
    transition: all var(--transition-normal);
}

.specialty-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateX(10px);
}

.specialty-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    opacity: 0.3;
    font-family: var(--font-secondary);
    min-width: 80px;
}

.specialty-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-family: var(--font-secondary);
}

.specialty-info h3 i {
    color: var(--primary-color);
}

.specialty-info p {
    color: #555;
    line-height: 1.8;
}

/* ===================================
   STATS HIGHLIGHT SECTION
   =================================== */
.stats-highlight-section {
    padding: var(--spacing-xl) 0;
    background: var(--gradient-dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.stats-highlight-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(220,38,38,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.stats-highlight-section .section-tag {
    color: #ef4444;
}

.stats-highlight-section .section-title {
    color: var(--white);
}

.stats-highlight-section .section-description {
    color: rgba(255,255,255,0.8);
}

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

.stat-box {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255,255,255,0.05);
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

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

.stat-box:hover::before {
    transform: scaleX(1);
}

.stat-box:hover {
    transform: translateY(-10px);
    background: rgba(220,38,38,0.1);
    border-color: rgba(220,38,38,0.3);
    box-shadow: 0 15px 40px rgba(220,38,38,0.3);
}

.stat-box i {
    font-size: 3.5rem;
    color: #ef4444;
    margin-bottom: 1.5rem;
    display: block;
    transition: all var(--transition-normal);
}

.stat-box:hover i {
    transform: scale(1.1) rotateY(360deg);
}

.stat-box h4 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.75rem;
    font-family: var(--font-secondary);
    line-height: 1;
}

.stat-box p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.4;
}

/* Responsive Stats */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stat-box {
        padding: 2rem 1.5rem;
    }
    
    .stat-box h4 {
        font-size: 2.5rem;
    }
    
    .stat-box i {
        font-size: 3rem;
    }
}

/* ===================================
   IDEAL CLIENT SECTION
   =================================== */
.ideal-client-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.ideal-client-section::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.ideal-client-section::after {
    content: '';
    position: absolute;
    bottom: -25%;
    right: -8%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

@media (max-width: 768px) {
    .ideal-client-section {
        padding: var(--spacing-lg) 0;
    }
}

@media (max-width: 480px) {
    .ideal-client-section {
        padding: var(--spacing-md) 0;
    }
}

.ideal-client-content {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.ideal-intro {
    text-align: center;
    font-size: 1.3rem;
    color: #4b5563;
    margin-bottom: 3rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}

@media (max-width: 768px) {
    .ideal-intro {
        font-size: 1.15rem;
        margin-bottom: 2.5rem;
    }
}

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

@media (max-width: 768px) {
    .client-types {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .client-types {
        gap: 1.75rem;
    }
}

.client-type-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.client-type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: left;
}

.client-type-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.03) 0%, transparent 70%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s ease;
    pointer-events: none;
}

@media (max-width: 768px) {
    .client-type-card {
        padding: 2rem 1.75rem;
    }
}

@media (max-width: 480px) {
    .client-type-card {
        padding: 1.75rem 1.5rem;
    }
}

.client-type-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.12), 0 8px 16px rgba(0, 0, 0, 0.08);
    border-color: rgba(220, 38, 38, 0.2);
}

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

.client-type-card:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

.client-type-card i {
    font-size: 3.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.client-type-card:hover i {
    transform: scale(1.15) rotateY(360deg);
}

@media (max-width: 768px) {
    .client-type-card i {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .client-type-card i {
        font-size: 2.75rem;
    }
}

.client-type-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-family: var(--font-secondary);
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .client-type-card h3 {
        font-size: 1.35rem;
    }
}

.client-type-card p {
    color: #6b7280;
    line-height: 1.8;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .client-type-card p {
        font-size: 0.97rem;
    }
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */
.testimonials-section {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: var(--spacing-lg) 0;
    }
}

@media (max-width: 480px) {
    .testimonials-section {
        padding: var(--spacing-md) 0;
    }
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .testimonials-grid {
        gap: 1.25rem;
    }
}

.testimonial-card {
    background: var(--light-color);
    padding: var(--spacing-md);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .testimonial-card {
        padding: 1.75rem;
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        padding: 1.5rem;
    }
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 8rem;
    color: var(--primary-color);
    opacity: 0.1;
    font-family: Georgia, serif;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    background: var(--white);
}

.stars {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-sm);
}

.testimonial-text {
    color: #555;
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
    font-style: italic;
    position: relative;
    z-index: 1;
}

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

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

.testimonial-author h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.2rem;
}

.testimonial-author span {
    font-size: 0.9rem;
    color: #777;
}

/* ===================================
   CONTACT SECTION
   =================================== */
.contact-section {
    padding: var(--spacing-xl) 0;
    background: var(--gradient-dark);
    color: var(--white);
}

@media (max-width: 768px) {
    .contact-section {
        padding: var(--spacing-lg) 0;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: var(--spacing-md) 0;
    }
}

.contact-section .section-tag {
    color: #ef4444;
}

.contact-section .section-title,
.contact-section .section-description {
    color: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-lg);
    align-items: start;
}

@media (max-width: 968px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
}

@media (max-width: 768px) {
    .contact-content {
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .contact-content {
        gap: 1.5rem;
    }
}

.contact-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    font-family: var(--font-secondary);
    text-align: center;
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 2rem 1.5rem;
    background: rgba(31, 41, 55, 0.8);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-item:hover {
    background: rgba(31, 41, 55, 0.95);
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border-color: rgba(220, 38, 38, 0.3);
}

.info-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    background: rgba(220, 38, 38, 0.1);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    transition: all 0.4s ease;
}

.info-item:hover i {
    transform: scale(1.1);
    background: rgba(220, 38, 38, 0.2);
}

.info-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
}

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

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

.social-links a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(220, 38, 38, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(220, 38, 38, 0.2);
}

.social-links a:hover {
    background: var(--gradient-primary);
    color: var(--white);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.4);
    border-color: transparent;
}

.contact-form {
    background: rgba(255,255,255,0.05);
    padding: var(--spacing-md);
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-group label i {
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: var(--border-radius-md);
    background: rgba(255,255,255,0.1);
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all var(--transition-normal);
    min-height: 48px; /* Touch-friendly */
}

@media (max-width: 768px) {
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.9rem;
        font-size: 16px; /* Evita zoom en iOS */
        min-height: 44px;
    }
}

@media (max-width: 480px) {
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.85rem;
    }
}

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

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

.form-group select {
    cursor: pointer;
}

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

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

/* Form Validation Styles */
.form-group input.valid,
.form-group select.valid,
.form-group textarea.valid {
    border-color: #28a745;
}

.form-group input.invalid,
.form-group select.invalid,
.form-group textarea.invalid {
    border-color: #dc3545;
}

/* ===================================
   NOTIFICATIONS
   =================================== */
.notification {
    position: fixed;
    top: 100px;
    right: -400px;
    max-width: 400px;
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    z-index: 10000;
    transition: right var(--transition-normal);
}

.notification.show {
    right: 2rem;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.notification-success {
    border-left: 4px solid #28a745;
}

.notification-success i {
    color: #28a745;
    font-size: 1.5rem;
}

.notification-error {
    border-left: 4px solid #dc3545;
}

.notification-error i {
    color: #dc3545;
    font-size: 1.5rem;
}

.notification-close {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0.5rem;
    transition: all var(--transition-fast);
}

.notification-close:hover {
    color: var(--dark-color);
    transform: rotate(90deg);
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
}

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

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
    font-family: var(--font-secondary);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
    font-family: var(--font-secondary);
}

@media (max-width: 768px) {
    .footer-logo {
        justify-content: center;
    }
}

.footer-logo-img {
    height: 35px;
    width: auto;
    object-fit: contain;
}

.footer-logo img {
    height: 35px;
    width: auto;
    object-fit: contain;
}

.footer-logo i {
    color: var(--primary-color);
    font-size: 1.8rem;
}

.footer-section p {
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: var(--spacing-sm);
}

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

@media (max-width: 768px) {
    .footer-social {
        justify-content: center;
    }
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all var(--transition-normal);
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}

.footer-section ul li {
    margin-bottom: 0.7rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.footer-section ul li i {
    color: var(--primary-color);
    margin-top: 0.2rem;
    min-width: 16px;
}

.footer-section ul li a {
    color: rgba(255,255,255,0.7);
    transition: all var(--transition-fast);
}

.footer-section ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.footer-legal a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all var(--transition-fast);
    position: relative;
}

.footer-legal a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: width var(--transition-normal);
}

.footer-legal a:hover {
    color: var(--white);
}

.footer-legal a:hover::after {
    width: 100%;
}

/* ===================================
   LEGAL PAGES
   =================================== */
.legal-section {
    padding: 8rem 0 4rem;
    background: var(--light-color);
    min-height: 100vh;
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 3px solid var(--primary-color);
}

.legal-header h1 {
    font-size: 3rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.legal-header h1 i {
    color: var(--primary-color);
}

.legal-update {
    color: var(--secondary-color);
    font-size: 0.95rem;
    font-style: italic;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-block {
    background: var(--white);
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.legal-block:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.legal-block h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(220,38,38,0.2);
}

.legal-block h3 {
    color: var(--dark-color);
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem;
    font-weight: 600;
}

.legal-block p {
    color: var(--secondary-color);
    line-height: 1.8;
    margin-bottom: 1rem;
    text-align: justify;
}

.legal-block ul {
    list-style: none;
    margin: 1rem 0;
    padding-left: 0;
}

.legal-block ul li {
    color: var(--secondary-color);
    line-height: 1.8;
    margin-bottom: 0.75rem;
    padding-left: 2rem;
    position: relative;
}

.legal-block ul li::before {
    content: '▸';
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0.5rem;
    font-size: 1.2rem;
}

.legal-block strong {
    color: var(--dark-color);
    font-weight: 600;
}

.legal-block a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all var(--transition-fast);
    border-bottom: 1px solid transparent;
}

.legal-block a:hover {
    border-bottom-color: var(--primary-color);
}

/* Responsive Legal Pages */
@media (max-width: 768px) {
    .legal-section {
        padding: 6rem 0 3rem;
    }
    
    .legal-header h1 {
        font-size: 2rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .legal-header h1 i {
        font-size: 2.5rem;
    }
    
    .legal-block {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .legal-block h2 {
        font-size: 1.5rem;
    }
    
    .legal-block h3 {
        font-size: 1.2rem;
    }
    
    .legal-block p {
        text-align: left;
    }
    
    .legal-block ul li {
        padding-left: 1.5rem;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 0.75rem;
    }
}

/* ===================================
   SCROLL TO TOP
   =================================== */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 999;
}

@media (max-width: 768px) {
    .scroll-top {
        width: 45px;
        height: 45px;
        bottom: 1.5rem;
        right: 1.5rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .scroll-top {
        width: 40px;
        height: 40px;
        bottom: 1rem;
        right: 1rem;
        font-size: 1rem;
    }
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(220,38,38,0.4);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
/* La media query principal para móvil ya está definida arriba en la sección del navbar */

@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
        min-height: 90vh;
        padding: 2rem 0;
    }
    
    .hero-content {
        padding: var(--spacing-sm);
    }
    
    /* ========================================
       DROPDOWN MENU MÓVIL - COMPLETAMENTE REDISEÑADO
       ======================================== */
    
    .dropdown,
    .nav-dropdown {
        position: relative;
        width: 100%;
    }
    
    /* Link principal del dropdown */
    .dropdown > a,
    .nav-dropdown > a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        width: 100%;
        position: relative;
    }
    
    /* Chevron indicador */
    .dropdown > a i.fa-chevron-down,
    .nav-dropdown > a i.fa-chevron-down {
        font-size: 0.75rem;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        margin-left: 0.25rem;
    }
    
    .dropdown.active > a i.fa-chevron-down,
    .nav-dropdown.active > a i.fa-chevron-down {
        transform: rotate(180deg);
    }
    
    /* Contenedor del dropdown */
    .dropdown-menu {
        position: static;
        width: 100%;
        max-width: 100%;
        background: transparent;
        box-shadow: none;
        border-radius: 0;
        backdrop-filter: none;
        margin: 0.75rem 0 0 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                    opacity 0.4s ease;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    /* Dropdown abierto */
    .dropdown.active .dropdown-menu,
    .nav-dropdown.active .dropdown-menu {
        max-height: 1000px;
        opacity: 1;
    }
    
    /* Items del dropdown centrados */
    .dropdown-menu li {
        width: 95%;
        max-width: 380px;
        margin: 0 auto;
        list-style: none;
        opacity: 0;
        transform: translateY(-15px);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    /* Animación cuando el dropdown está activo */
    .dropdown.active .dropdown-menu li,
    .nav-dropdown.active .dropdown-menu li {
        opacity: 1;
        transform: translateY(0);
    }
    
    
    /* Logo responsive */
    .logo-img {
        height: 40px;
    }
    
    .footer-logo img,
    .footer-logo-img {
        height: 28px;
        max-width: 110px;
    }
    
    /* Hero Section Mobile - Pantalla completa */
    .hero {
        min-height: 100vh;
        padding-top: 70px;
        padding-bottom: 2rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 2rem 1.5rem;
    }
    
    .hero-title {
        font-size: 2.25rem;
        line-height: 1.15;
        margin-top: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.15rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .hero-cta .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .hero-stats {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    /* About Section Responsive */
    .about-cards-grid {
        grid-template-columns: 1fr;
    }
    
    /* Oposiciones Section Responsive */
    .oposiciones-hero {
        grid-template-columns: 1fr;
    }
    
    .oposiciones-features {
        grid-template-columns: 1fr;
    }
    
    .tipos-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    /* Mejorar info de contacto en móvil */
    .contact-info {
        order: 2; /* Formulario primero, info después */
    }
    
    .contact-form {
        order: 1;
    }
    
    .info-item {
        flex-direction: row;
        align-items: center;
        padding: 1.25rem;
        gap: 1.25rem;
        background: rgba(255,255,255,0.08);
    }
    
    .info-item:hover {
        transform: translateX(0) scale(1.02);
    }
    
    .info-item i {
        font-size: 1.75rem;
        min-width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(220,38,38,0.2);
        border-radius: 50%;
    }
    
    .info-item div {
        flex: 1;
    }
    
    .info-item h4 {
        font-size: 1.05rem;
        margin-bottom: 0.4rem;
    }
    
    .info-item p {
        font-size: 1rem;
        line-height: 1.5;
        word-break: break-word;
    }
    
    .social-links {
        justify-content: center;
        gap: 1.25rem;
        margin-top: 2rem;
    }
    
    .social-links a {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }
    
    /* Typography adjustments */
    .hero-title {
        font-size: 1.875rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .stat-number {
        font-size: 2.25rem;
    }
    
    /* Services grid */
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-featured {
        transform: scale(1);
    }
    
    /* About Section Mobile */
    .about-text-centered h3 {
        font-size: 1.875rem;
    }
    
    .about-intro {
        font-size: 1.05rem;
    }
    
    .about-cards-grid {
        gap: var(--spacing-sm);
    }
    
}

@media (max-width: 480px) {
    /* Typography small screens */
    .hero-title {
        font-size: 1.625rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
        min-height: 44px; /* Touch-friendly */
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .specialty-item {
        flex-direction: column;
        text-align: center;
    }
    
    .specialty-number {
        font-size: 1.875rem;
    }
    
    /* About Section Small Mobile */
    .about-cards-grid {
        grid-template-columns: 1fr;
    }
    
    /* Mobile menu small screens */
    .nav-menu {
        width: 100%;
        max-width: 100%;
    }
    
    .logo-img {
        height: 36px;
    }
    
    .about-text-centered h3 {
        font-size: 1.8rem;
    }
    
    /* Oposiciones Section Small Mobile */
    .success-badge {
        top: 1rem;
        right: 1rem;
        padding: 1rem;
    }
    
    .badge-number {
        font-size: 2rem;
    }
    
    .tipos-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   DROPDOWN MENU DE SERVICIOS
   =================================== */
.nav-dropdown {
    position: relative;
}

.nav-dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-20px) scaleY(0);
    transform-origin: top center;
    background: var(--white);
    min-width: 280px;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1000;
    padding: 0.75rem 0;
    list-style: none;
    border: 1px solid rgba(220, 38, 38, 0.1);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scaleY(1);
}

.dropdown-menu li {
    list-style: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.nav-dropdown:hover .dropdown-menu li {
    opacity: 1;
    transform: translateY(0);
}

/* Efecto cascada - cada item aparece secuencialmente */
.nav-dropdown:hover .dropdown-menu li:nth-child(1) { transition-delay: 0.05s; }
.nav-dropdown:hover .dropdown-menu li:nth-child(2) { transition-delay: 0.1s; }
.nav-dropdown:hover .dropdown-menu li:nth-child(3) { transition-delay: 0.15s; }
.nav-dropdown:hover .dropdown-menu li:nth-child(4) { transition-delay: 0.2s; }
.nav-dropdown:hover .dropdown-menu li:nth-child(5) { transition-delay: 0.25s; }
.nav-dropdown:hover .dropdown-menu li:nth-child(6) { transition-delay: 0.3s; }

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1.5rem;
    color: var(--dark-color);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.dropdown-menu li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, rgba(220,38,38,0.1) 0%, rgba(220,38,38,0.05) 100%);
    transition: width 0.3s ease;
}

.dropdown-menu li a:hover::before {
    width: 100%;
}

.dropdown-menu li a i {
    color: var(--primary-color);
    font-size: 1.1rem;
    transition: transform 0.3s ease;
    z-index: 1;
}

.dropdown-menu li a:hover i {
    transform: scale(1.2) rotate(5deg);
}

.dropdown-menu li a:hover,
.dropdown-menu li a.active {
    color: var(--primary-color);
    padding-left: 2rem;
}

.nav-link i.fa-chevron-down {
    font-size: 0.7rem;
    margin-left: 0.3rem;
    transition: transform var(--transition-fast);
}

.nav-dropdown:hover .nav-link i.fa-chevron-down {
    transform: rotate(180deg);
}

/* ===================================
   SECCIÓN DE TARIFAS / PRICING
   =================================== */
.pricing-section {
    padding: var(--spacing-xl) 0;
    background: var(--light-color);
}

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

.pricing-card {
    background: var(--white);
    border-radius: var(--border-radius-md);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

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

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

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-badge.premium {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
}

.pricing-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(220,38,38,0.1) 0%, rgba(239,68,68,0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

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

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    text-align: center;
}

.pricing-subtitle {
    text-align: center;
    color: var(--secondary-color);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.pricing-price {
    text-align: center;
    margin: 2rem 0;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.price-period {
    font-size: 1.2rem;
    color: var(--secondary-color);
    font-weight: 500;
}

.pricing-note-small {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-sm);
    text-align: center;
    margin: 1rem 0;
    font-size: 0.85rem;
    font-weight: 500;
}

.pricing-note-small i {
    margin-right: 0.4rem;
    color: #fbbf24;
}

.pricing-savings {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: var(--white);
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius-sm);
    text-align: center;
    margin: 1rem 0;
    font-weight: 600;
}

.pricing-savings i {
    margin-right: 0.5rem;
}

.pricing-features {
    list-style: none;
    margin: 2rem 0;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: var(--secondary-color);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.pricing-features li i {
    color: #10b981;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.pricing-btn {
    display: block;
    width: 100%;
    padding: 1rem;
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
    text-decoration: none;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    transition: all var(--transition-normal);
}

.pricing-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(220,38,38,0.3);
}

.pricing-btn.premium {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
}

.pricing-footer {
    text-align: center;
    margin-top: 3rem;
    color: var(--secondary-color);
}

.pricing-footer p {
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.pricing-footer i {
    color: var(--primary-color);
}

/* ===================================
   PÁGINAS DE SERVICIOS INDIVIDUALES
   =================================== */

/* Hero Section Rediseñado - Más Limpio */
.service-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, rgba(31,41,55,0.92) 0%, rgba(17,24,39,0.95) 100%),
                url('../assets/images/hero-bg.jpg') center top/cover no-repeat fixed;
    overflow: hidden;
    padding: 8rem 0 5rem;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(220,38,38,0.15) 0%, transparent 50%);
    z-index: 1;
}

.hero-overlay {
    display: none;
}

.service-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.service-hero-content .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Breadcrumb más sutil */
.breadcrumb {
    color: rgba(255,255,255,0.65);
    margin-bottom: 2rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    width: 100%;
}

.breadcrumb a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb i {
    font-size: 0.65rem;
    opacity: 0.5;
}

/* Badge más discreto */
.service-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(220,38,38,0.2);
    border: 1px solid rgba(220,38,38,0.4);
    color: var(--white);
    padding: 0.65rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-align: center;
}

.service-badge i {
    font-size: 1rem;
    color: var(--primary-color);
}

/* Título limpio y directo */
.service-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.25rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    font-family: var(--font-secondary);
    text-align: center;
    width: 100%;
}

.service-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    width: 100%;
}

/* Precio más integrado */
.service-hero-price {
    display: inline-flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.75rem;
    margin: 0 0 2.5rem;
    flex-wrap: wrap;
    width: 100%;
    text-align: center;
}

.price-tag {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    text-shadow: 0 2px 10px rgba(220, 38, 38, 0.3);
}

.price-info {
    color: rgba(255,255,255,0.75);
    font-size: 1.05rem;
    font-weight: 400;
}

.btn-large {
    padding: 1.15rem 2.75rem;
    font-size: 1.05rem;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(220,38,38,0.35);
    transition: all 0.3s ease;
    border-radius: var(--border-radius-lg);
}

.btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(220,38,38,0.45);
}

/* Descripción del Servicio */
.service-description {
    padding: 4rem 0;
    background: var(--white);
}

.service-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3.5rem;
}

.service-intro h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--dark-color);
}

.lead {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--secondary-color);
}

.service-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: start;
    margin-top: 2.5rem;
}

.service-image-wrapper {
    position: relative;
}

.service-main-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.image-stats {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
}

.stat-badge {
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 0.875rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.stat-badge i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.stat-badge span {
    font-weight: 600;
    color: var(--dark-color);
    font-size: 1rem;
}

.service-features-detailed h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
    font-weight: 700;
}

.service-features-detailed h3 i {
    color: var(--primary-color);
    margin-right: 0.65rem;
}

.feature-detailed-item {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #f3f4f6;
}

.feature-detailed-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.feature-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(220,38,38,0.1) 0%, rgba(239,68,68,0.05) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.3rem;
    color: var(--primary-color);
}

.feature-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.6rem;
}

.feature-content p {
    color: var(--secondary-color);
    line-height: 1.6;
    font-size: 1rem;
}

/* Metodología del Servicio */
.service-methodology {
    padding: 4rem 0;
    background: #fafbfc;
}

.service-methodology h2 {
    text-align: center;
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.section-subtitle {
    text-align: center;
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

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

.methodology-step {
    background: var(--white);
    padding: 2rem 1.75rem;
    border-radius: 12px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border: 1px solid #f3f4f6;
}

.methodology-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: rgba(220,38,38,0.1);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #b91c1c 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(220,38,38,0.3);
}

.step-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(220,38,38,0.1) 0%, rgba(239,68,68,0.05) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.75rem auto 1.5rem;
}

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

.methodology-step h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.875rem;
    color: var(--dark-color);
}

.methodology-step p {
    color: var(--secondary-color);
    line-height: 1.6;
    font-size: 1rem;
}

/* Grids específicos para cada servicio */
.for-who-grid,
.injuries-grid,
.massage-types-grid,
.supplements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.for-who-card,
.injury-card,
.massage-card,
.supplement-card {
    background: var(--white);
    padding: 2rem 1.75rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border: 1px solid #f3f4f6;
}

.for-who-card:hover,
.injury-card:hover,
.massage-card:hover,
.supplement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: rgba(220,38,38,0.1);
}

.for-who-card i,
.injury-card i,
.massage-card i,
.supplement-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
}

.for-who-card h3,
.injury-card h3,
.massage-card h3,
.supplement-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.875rem;
    color: var(--dark-color);
}

.for-who-card p,
.injury-card p,
.massage-card p,
.supplement-card p {
    color: var(--secondary-color);
    line-height: 1.6;
    font-size: 1rem;
}

/* Resultados / Casos de Éxito */
.service-results {
    padding: 4rem 0;
    background: var(--white);
}

.service-results h2 {
    text-align: center;
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

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

.result-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border: 1px solid #f3f4f6;
}

.result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    border-color: rgba(220,38,38,0.1);
}

.result-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.result-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
}

.result-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
}

.result-info p {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.result-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--light-color);
    border-radius: var(--border-radius-sm);
}

.result-stat {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--secondary-color);
}

.result-card p {
    color: var(--secondary-color);
    line-height: 1.7;
    font-style: italic;
}

/* Pricing CTA en Páginas de Servicio */
.service-pricing-cta {
    padding: 4rem 0;
    background: #fafbfc;
}

.pricing-cta-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.pricing-cta-content h2 {
    text-align: center;
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.pricing-cta-content > p {
    text-align: center;
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.pricing-box {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.1);
    border: 1px solid #f3f4f6;
    transition: all 0.3s ease;
}

.pricing-box:hover {
    box-shadow: 0 15px 45px rgba(0,0,0,0.15);
    border-color: rgba(220,38,38,0.15);
}

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

.pricing-icon-large {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, rgba(220,38,38,0.12) 0%, rgba(239,68,68,0.06) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.pricing-icon-large i {
    font-size: 2.25rem;
    color: var(--primary-color);
}

.pricing-header h3 {
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--dark-color);
}

.pricing-amount {
    text-align: center;
    margin: 2rem 0;
}

.amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.period {
    font-size: 1.3rem;
    color: var(--secondary-color);
    font-weight: 500;
}

.pricing-includes {
    list-style: none;
    margin: 2rem 0;
}

.pricing-includes li {
    padding: 0.75rem 0;
    color: var(--secondary-color);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.pricing-includes li i {
    color: #10b981;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.pricing-guarantee,
.pricing-bonus,
.pricing-note {
    margin: 1.5rem 0;
    padding: 1rem;
    background: var(--light-color);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pricing-guarantee i,
.pricing-bonus i,
.pricing-note i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.pricing-guarantee p,
.pricing-bonus p,
.pricing-note p {
    margin: 0;
    color: var(--secondary-color);
}

.btn-block {
    width: 100%;
}

.pricing-combo {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
    text-align: center;
}

.pricing-combo p {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.pricing-combo a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition-fast);
}

.pricing-combo a:hover {
    color: var(--accent-color);
}

.pricing-combo i {
    margin-left: 0.5rem;
}

.pricing-extra-info {
    display: flex;
    justify-content: space-around;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.info-item span {
    font-size: 0.85rem;
    color: var(--secondary-color);
    text-align: center;
}

/* FAQ del Servicio */
.service-faq {
    padding: 4rem 0;
    background: var(--white);
}

.service-faq h2 {
    text-align: center;
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.service-faq > .container > p {
    text-align: center;
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

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

.faq-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border: 1px solid #f3f4f6;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: rgba(220,38,38,0.1);
    transform: translateY(-3px);
}

.faq-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    line-height: 1.4;
}

.faq-item h4 i {
    color: var(--primary-color);
    font-size: 1rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.faq-item p {
    color: var(--secondary-color);
    line-height: 1.7;
    font-size: 1rem;
}

/* CTA Final */
.final-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--dark-color) 0%, #111827 100%);
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(220,38,38,0.08)"/></svg>');
    opacity: 0.25;
}

.final-cta-content {
    position: relative;
    z-index: 2;
}

.final-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
}

.final-cta-content p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.cta-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

/* ===================================
   RESPONSIVE - PÁGINAS DE SERVICIOS
   =================================== */
@media (max-width: 992px) {
    .service-hero {
        min-height: 60vh;
        padding: 7rem 0 4rem;
    }
    
    .service-hero h1 {
        font-size: 2.75rem;
        line-height: 1.2;
    }
    
    .service-hero-subtitle {
        font-size: 1.15rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }
    
    .price-tag {
        font-size: 2.5rem;
    }
    
    .service-hero-price {
        margin-bottom: 2rem;
    }
    
    .hero-cta-buttons {
        flex-direction: column;
        gap: 0.875rem;
    }
    
    .hero-cta-buttons .btn {
        width: 100%;
    }
    
    .service-content-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .methodology-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-extra-info {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .for-who-grid,
    .injuries-grid,
    .massage-types-grid,
    .supplements-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .service-hero {
        min-height: 55vh;
        padding: 6rem 0 3.5rem;
        background-attachment: scroll;
    }
    
    .service-hero-content .container {
        padding: 0 1.5rem;
    }
    
    .service-badge {
        padding: 0.5rem 1.25rem;
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }
    
    .service-hero h1 {
        font-size: 2.25rem;
        margin-bottom: 1rem;
    }
    
    .service-hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .service-hero-price {
        margin: 0 0 2rem;
    }
    
    .price-tag {
        font-size: 2.25rem;
    }
    
    .price-info {
        font-size: 0.95rem;
    }
    
    .btn-large {
        padding: 1rem 2.25rem;
        font-size: 1rem;
    }
    
    /* Títulos de secciones */
    .service-intro h2,
    .service-methodology h2,
    .service-results h2,
    .service-faq h2,
    .pricing-cta-content h2,
    .final-cta-content h2 {
        font-size: 2.25rem;
    }
    
    .lead,
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    /* Grids a una columna */
    .results-grid,
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .methodology-steps,
    .for-who-grid,
    .injuries-grid,
    .massage-types-grid,
    .supplements-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Pricing box */
    .pricing-box {
        padding: 2.5rem 2rem;
    }
    
    .pricing-cta-wrapper {
        max-width: 100%;
    }
    
    /* Features */
    .feature-detailed-item {
        gap: 1.25rem;
    }
    
    .feature-icon {
        width: 55px;
        height: 55px;
    }
    
    .feature-icon i {
        font-size: 1.35rem;
    }
    
    /* Dropdown mobile */
    .nav-dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--transition-normal);
    }
    
    .nav-dropdown:hover .dropdown-menu {
        max-height: 500px;
    }
    
    .dropdown-menu li a {
        padding: 0.75rem 1rem;
        border-left: 2px solid transparent;
    }
    
    .dropdown-menu li a:hover,
    .dropdown-menu li a.active {
        border-left-color: var(--primary-color);
        background: rgba(220,38,38,0.05);
    }
}

@media (max-width: 480px) {
    .logo img,
    .logo-image {
        height: 38px;
    }
    
    .service-hero {
        min-height: 50vh;
        padding: 5.5rem 0 3rem;
    }
    
    .service-hero-content .container {
        padding: 0 1rem;
    }
    
    .breadcrumb {
        font-size: 0.8rem;
        margin-bottom: 1.25rem;
    }
    
    .service-badge {
        padding: 0.5rem 1.15rem;
        font-size: 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .service-badge i {
        font-size: 0.9rem;
    }
    
    .service-hero h1 {
        font-size: 1.9rem;
        margin-bottom: 1rem;
    }
    
    .service-hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.75rem;
    }
    
    .service-hero-price {
        margin: 0 0 1.75rem;
        gap: 0.5rem;
    }
    
    .price-tag {
        font-size: 2rem;
    }
    
    .price-info {
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 0.95rem 2rem;
        font-size: 0.95rem;
        width: 100%;
    }
    
    /* Títulos móvil pequeño */
    .service-intro h2,
    .service-methodology h2,
    .service-results h2,
    .service-faq h2,
    .pricing-cta-content h2 {
        font-size: 1.85rem;
    }
    
    .final-cta-content h2 {
        font-size: 2rem;
    }
    
    .lead {
        font-size: 1.05rem;
    }
    
    .section-subtitle {
        font-size: 1.05rem;
        margin-bottom: 2.5rem;
    }
    
    /* Pricing box móvil */
    .pricing-box {
        padding: 2rem 1.5rem;
    }
    
    .pricing-header h3 {
        font-size: 1.5rem;
    }
    
    .amount {
        font-size: 2.75rem;
    }
    
    .period {
        font-size: 1.1rem;
    }
    
    /* Icons más pequeños */
    .pricing-icon-large {
        width: 70px;
        height: 70px;
    }
    
    .pricing-icon-large i {
        font-size: 2.25rem;
    }
    
    .step-icon {
        width: 65px;
        height: 65px;
    }
    
    .step-icon i {
        font-size: 1.65rem;
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
    }
    
    /* Cards más compactos */
    .methodology-step,
    .for-who-card,
    .injury-card,
    .massage-card,
    .supplement-card,
    .faq-item,
    .result-card {
        padding: 2rem 1.5rem;
    }
    
    .feature-detailed-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
    }
    
    /* Grids */
    .methodology-steps,
    .for-who-grid,
    .injuries-grid,
    .massage-types-grid,
    .supplements-grid,
    .results-grid,
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}
