
/* ===== VARIABLES Y RESET ===== */
:root {
    /* Sistema de colores */
    --color-900: #00232C;
    --color-800: #004558;
    --color-700: #006883;
    --color-600: #0374BB;
    --color-500: #00ADDB;
    --color-200: #33BDE2;
    --color-100: #66CEE9;
    --color-50: #99DEF1;
    --white: #FFFFFF;
    --gray: #7FA4C7;
    --black: #000000;
    
    /* Sombras profesionales */
    --shadow-sm: 0 2px 4px rgba(0, 35, 44, 0.05);
    --shadow-md: 0 4px 8px rgba(0, 35, 44, 0.08);
    --shadow-lg: 0 8px 16px rgba(0, 35, 44, 0.1);
    --shadow-xl: 0 12px 24px rgba(0, 35, 44, 0.12);
    
    /* Transiciones suaves */
    --transition-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Tipografía profesional */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-secondary: 'Montserrat', sans-serif;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--color-900);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== TIPOGRAFÍA ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--color-900);
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.3px;
}

h3 {
    font-size: 1.75rem;
    font-weight: 600;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
}

p {
    font-size: 1.1rem;
    color: var(--color-700);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

/* ===== LAYOUT GENERAL ===== */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-header h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.section-header h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--color-500), var(--color-200));
    border-radius: 2px;
}

.section-header p {
    max-width: 600px;
    margin: 2rem auto 0;
    font-size: 1.2rem;
    color: var(--color-700);
}

/* ===== ANIMACIONES ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.fade-in-up {
    opacity: 0;
    animation: fadeInUp var(--transition-medium) forwards;
    text-align: center;
    display: block;
    width: 100%; /* CAMBIA fit-content por 100% */
    max-width: 100%;
}

/* Para h2 específicamente dentro de service-types */
.service-types h2 {
    margin-bottom: 3rem;
}

/* Si tiene línea decorativa */
.service-types h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--color-500), var(--color-200));
    border-radius: 2px;
}
.scale-in {
    opacity: 0;
    animation: scaleIn var(--transition-medium) forwards;
}

.slide-in {
    opacity: 0;
    animation: slideIn var(--transition-medium) forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

/* ===== BOTONES MEJORADOS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all var(--transition-fast);
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    min-height: 48px;
    letter-spacing: 0.3px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-500), var(--color-600));
    color: var(--white);
    box-shadow: var(--shadow-md);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--color-600), var(--color-700));
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
    background-color: rgba(255, 255, 255, 0.05);
}

.btn-secondary:hover {
    background-color: var(--color-500);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-700);
    border-color: var(--color-200);
    background-color: rgba(153, 222, 241, 0.1);
}

.btn-outline:hover {
    background-color: var(--color-50);
    border-color: var(--color-500);
    color: var(--color-500);
    transform: translateY(-2px);
}

.btn-small {
    padding: 0.625rem 1.5rem;
    font-size: 0.9rem;
    min-height: 40px;
}

.btn-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ===== HEADER Y MENÚ DESPLEGABLE ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: linear-gradient(135deg, var(--white), var(--color-50));
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-fast);
    padding: 0;
}

header.scrolled {
    /*background-color: var(--color-500);*/
    box-shadow: var(--shadow-lg);
}

header.scrolled .nav-link {
    color: var(--color-600);
}

header.scrolled .nav-link:hover,
header.scrolled .nav-link.active {
    color: var(--color-800);
}

header.scrolled .hamburger .bar {
    background-color: var(--white);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    position: relative;
}

/* Logo más a la izquierda - CON COLOR ORIGINAL */
.logo-container {
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 1001;
    margin-right: auto;
    padding-left: 0;
}

.logo-imagotipo {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: transform var(--transition-fast);
}

.logo-imagotipo:hover {
    transform: scale(1.05);
}

.logo-isotipo {
    height: 60px;
    width: auto;
    object-fit: contain;
    display: none;
}

/* Menú hamburguesa en móvil - VERSIÓN CORREGIDA */
@media (max-width: 768px) {
    /* Menú hamburguesa móvil - POSICIÓN Y FONDO FIJOS */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        flex-direction: column;
        background-color: var(--color-500); /* FONDO OSCURO PARA BUEN CONTRASTE */
        width: 350px;
        height: 180vh;
        padding: 100px 0 2rem 0; /* PADDING CORREGIDO */
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        gap: 0;
        margin-left: 0;
        z-index: 999; /* Un nivel menos que el hamburger */
        overflow-y: auto;
        align-items: stretch; /* PARA QUE OCUPE TODO EL ANCHO */
    }
    
    .nav-menu.show {
        right: 0;
    }
    
    /* ENLACES DEL MENÚ - MEJOR CONTRASTE Y ALINEACIÓN */
    .nav-link {
        display: flex;
        align-items: center;
        padding: 1rem 2rem;
        color: var(--white); /* BLANCO PARA BUEN CONTRASTE */
        font-size: 1rem;
        font-weight: 500;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        transition: all var(--transition-fast);
        position: relative;
        letter-spacing: 0.3px;
        text-transform: none; /* QUITAR MAYÚSCULAS EN MÓVIL */
        gap: 0.5rem;
    }
    
    .nav-link:hover,
    .nav-link.active {
        background-color: rgba(0, 173, 219, 0.15);
        color: var(--color-200); /* AZUL CLARO EN HOVER/ACTIVO */
    }
    
    /* QUITAR EL ::after EN MÓVIL YA QUE USAMOS BACKGROUND */
    .nav-link::after {
        display: none;
    }
    
    /* ÍCONOS EN LOS ENLACES */
    .nav-link i {
        font-size: 1.1rem;
        width: 24px;
        text-align: center;
        color: var(--color-500);
    }
    
    /* MENÚ DESPLEGABLE EN MÓVIL - MEJORADO */
    .services-dropdown {
        width: 100%;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: rgba(0, 0, 0, 0.2); /* FONDO OSCURO */
        border: none;
        padding: 0;
        display: none;
        animation: none;
        border-radius: 0;
        margin: 0;
        width: 100%;
    }
    
    .dropdown-menu.show {
        display: block;
    }
    
    .dropdown-item {
        display: flex;
        align-items: center;
        padding: 0.875rem 2rem 0.875rem 3.5rem; /* INDENTADO PARA SUBNIVEL */
        color: var(--color-100);
        text-decoration: none;
        transition: all var(--transition-fast);
        font-size: 0.95rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        background-color: transparent;
        width: 100%;
        letter-spacing: 0.3px;
    }
    
    .dropdown-item:hover,
    .dropdown-item.active {
        background-color: rgba(0, 173, 219, 0.2);
        color: var(--white);
        padding-left: 4rem;
    }
    
    .dropdown-item i {
        margin-right: 0.75rem;
        width: 20px;
        text-align: center;
        color: var(--color-500);
        font-size: 0.9rem;
    }
    
    /* FLECHA DEL DROPDOWN EN MÓVIL */
    .nav-link.has-dropdown::after {
        content: '▸';
        font-size: 0.8rem;
        margin-left: auto; /* EMPUJAR A LA DERECHA */
        transition: transform var(--transition-fast);
        color: var(--color-200);
        position: static;
        width: auto;
        height: auto;
        background: none;
    }
    
    .nav-link.has-dropdown.show::after {
        transform: rotate(90deg);
        color: var(--color-500);
    }
    
    /* HAMBURGER BUTTON - MEJORADO */
    .hamburger {
        display: flex;
        order: 3;
        flex-direction: column;
        gap: 4px;
        padding: 0.5rem;
        z-index: 1001;
        margin-left: 0.5rem;
        background: none;
        border: none;
        cursor: pointer;
    }
    
    .hamburger .bar {
        width: 25px;
        height: 2px;
        background-color: var(--white); /* BLANCO PARA MEJOR VISIBILIDAD */
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border-radius: 2px;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
        background-color: var(--white);
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
        background-color: var(--white);
    }
    
    /* LOGO EN MÓVIL - MEJOR CONTRASTE */
    .logo-imagotipo {
        display: none;
    }
    
    .logo-isotipo {
        display: block;
        height: 35px;
        filter: brightness(0) invert(1); /* BLANCO PARA CONTRASTE */
    }
    
    /* OVERLAY CUANDO EL MENÚ ESTÁ ABIERTO */
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 998;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        backdrop-filter: blur(2px);
    }
    
    .menu-overlay.show {
        opacity: 1;
        visibility: visible;
    }
    
    /* HEADER EN MÓVIL CON MENÚ ABIERTO */
    body.menu-open {
        overflow: hidden; /* PREVENIR SCROLL CUANDO EL MENÚ ESTÁ ABIERTO */
    }
    
    header.menu-open {
        background-color: var(--color-900); /* FONDO OSCURO CUANDO MENÚ ABIERTO */
    }
    
    /* BOTÓN DE CERRAR EN EL MENÚ (OPCIONAL) */
    .menu-close-btn {
        position: absolute;
        top: 1rem;
        right: 1rem;
        background: none;
        border: none;
        color: var(--white);
        font-size: 1.5rem;
        cursor: pointer;
        z-index: 1002;
        padding: 0.5rem;
        opacity: 0.8;
        transition: opacity var(--transition-fast);
    }
    
    .menu-close-btn:hover {
        opacity: 1;
    }
    
    /* TÍTULO DEL MENÚ (OPCIONAL) */
    .menu-header {
        padding: 1.5rem 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        margin-bottom: 1rem;
    }
    
    .menu-header h3 {
        color: var(--white);
        font-size: 1.1rem;
        margin: 0;
        text-transform: uppercase;
        letter-spacing: 1px;
        opacity: 0.8;
    }
}

/* ===== AJUSTES PARA MÓVILES PEQUEÑOS (≤480px) ===== */
@media (max-width: 480px) {
    .nav-menu {
        width: 100%; /* OCUPAR TODO EL ANCHO EN MÓVILES PEQUEÑOS */
        max-width: 320px;
        right: -100%;
    }
    
    .nav-menu.show {
        right: 0;
    }
    
    .nav-link {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .dropdown-item {
        padding: 0.75rem 1.5rem 0.75rem 3rem;
    }
    
    .dropdown-item:hover,
    .dropdown-item.active {
        padding-left: 3.5rem;
    }
    
    /* HAMBURGER MÁS PEQUEÑO */
    .hamburger {
        padding: 0.375rem;
    }
    
    .hamburger .bar {
        width: 22px;
        height: 2px;
    }
    
    .logo-isotipo {
        height: 30px;
    }
}

/* ===== AJUSTES PARA MÓVILES MUY PEQUEÑOS (≤360px) ===== */
@media (max-width: 360px) {
    .nav-link {
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .dropdown-item {
        padding: 0.75rem 1.25rem 0.75rem 2.75rem;
    }
    
    .logo-isotipo {
        height: 25px;
    }
}

/* ===== ANIMACIÓN SUAVE PARA EL MENÚ ===== */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.nav-link,
.dropdown-item {
    animation: slideInRight 0.3s ease-out forwards;
    animation-delay: calc(var(--item-index, 0) * 0.05s);
    opacity: 0;
}

/* ===== MEJORAS DE ACCESIBILIDAD PARA EL MENÚ ===== */
@media (prefers-reduced-motion: reduce) {
    .nav-menu {
        transition: none;
    }
    
    .nav-link,
    .dropdown-item {
        animation: none;
        opacity: 1;
    }
}

/* ===== FIX PARA HEADER EN MÓVIL ===== */
@media (max-width: 768px) {
    header {
        background-color: var(--color-900); /* FONDO OSCURO POR DEFECTO EN MÓVIL */
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }
    
    .header-container {
        padding: 0.75rem 0;
    }
    
    /* ASEGURAR QUE EL LOGO SE VEA BIEN */
    .logo-container {
        margin-right: 0;
        z-index: 1001;
    }
}

/* ===== ESTILOS ADICIONALES PARA MEJOR EXPERIENCIA ===== */

/* Asegurar que los enlaces sean fáciles de tocar */
@media (max-width: 768px) {
    .nav-link,
    .dropdown-item {
        min-height: 50px; /* TAMAÑO MÍNIMO RECOMENDADO PARA TAP */
        display: flex;
        align-items: center;
    }
    
    /* Mejorar el hover/active state */
    .nav-link:active,
    .dropdown-item:active {
        background-color: rgba(0, 173, 219, 0.25);
        transform: scale(0.98);
    }
    
    /* Separadores visuales */
    .nav-link:not(:last-child) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
}


/* Menú principal con submenú de servicios */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin-left: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--color-600);
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.5rem 0;
    position: relative;
    transition: color var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--color-700);
    transition: width var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-800);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Ícono de flecha para servicios */
.nav-link.has-dropdown::after {
    content: '▼';
    font-size: 0.6rem;
    margin-left: 0.3rem;
    transition: transform var(--transition-fast);
    position: static;
    width: auto;
    height: auto;
    background: none;
}

.nav-link.has-dropdown:hover::after {
    transform: rotate(180deg);
}

/* Contenedor del menú desplegable de servicios */
.services-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 220px;
    box-shadow: var(--shadow-xl);
    border-radius: 8px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-medium);
    z-index: 1000;
    border: 1px solid rgba(0, 173, 219, 0.1);
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--color-800);
    text-decoration: none;
    transition: all var(--transition-fast);
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    border-left: 3px solid transparent;
}

.dropdown-item:hover {
    background-color: var(--color-50);
    color: var(--color-500);
    border-left-color: var(--color-500);
    padding-left: 1.75rem;
}

.dropdown-item i {
    margin-right: 0.75rem;
    width: 20px;
    text-align: center;
    color: var(--color-500);
}

/* Hamburger menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 0.5rem;
    z-index: 1001;
    margin-left: auto;
}

.hamburger .bar {
    width: 25px;
    height: 2px;
    background-color: var(--color-700);
    transition: all var(--transition-fast);
    border-radius: 2px;
}

/* ===== HERO ===== */
.hero {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, var(--white), var(--color-600));
    position: relative;
    overflow: hidden;
    height:100vh;
    min-height:700px;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-logo {
    margin-bottom: 2rem;
}

.hero-logo img {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.hero h1 {
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--color-800), var(--color-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-image {
    flex: 1;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform var(--transition-medium);
}

.hero-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--transition-medium);
}

.hero-image:hover img {
    transform: scale(1.05);
}

/* ===== PÁGINA DE SERVICIO - LANDING PAGES ===== */
.service-page {
    padding-top: 0;
}

/* ===== HERO DE SERVICIO ACTUALIZADO ===== */
.service-hero {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, var(--white), var(--color-600));
    position: relative;
    overflow: hidden;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
}

.service-hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    width: 100%;
}

.service-hero-content {
    flex: 1;
    max-width: 600px;
    text-align: left; /* Cambiado de center a left */
}

.service-hero-logo {
    margin-bottom: 2rem;
}

.service-hero-logo img {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.service-hero h1 {
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--color-800), var(--color-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.service-hero p {
    font-size: 1.3rem;
    color: var(--color-700);
    opacity: 0.9;
    margin-bottom: 2rem;
}

/* Añade esta parte si quieres una imagen en el service-hero */
.service-hero-image {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform var(--transition-medium);
    background: linear-gradient(135deg, rgba(0, 173, 219, 0.1), rgba(153, 222, 241, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.service-hero-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.service-hero-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--transition-medium);
}

.service-hero-image:hover img {
    transform: scale(1.05);
}

/* Para las páginas que no tienen imagen, puedes usar esta variante */
.service-hero.centered {
    text-align: center;
}

.service-hero.centered .container {
    justify-content: center;
}

.service-hero.centered .service-hero-content {
    max-width: 800px;
    text-align: center;
}

/* Responsive para service-hero */
@media (max-width: 992px) {
    .service-hero {
        height: auto;
        min-height: auto;
        padding: 150px 0 80px;
    }
    
    .service-hero .container {
        flex-direction: column;
        gap: 3rem;
    }
    
    .service-hero-content {
        max-width: 100%;
        text-align: center;
    }
    
    .service-hero h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .service-hero {
        padding: 130px 0 60px;
    }
    
    .service-hero h1 {
        font-size: 2.3rem;
    }
    
    .service-hero p {
        font-size: 1.1rem;
    }
    
    .service-hero-image {
        min-height: 300px;
    }
}

@media (max-width: 480px) {
    .service-hero {
        padding: 120px 0 50px;
    }
    
    .service-hero h1 {
        font-size: 1.9rem;
    }
    
    .service-hero-logo img {
        height: 50px;
    }
}
/* Sección de detalles del servicio */
.service-details {
    padding: 100px 0;
    background-color: var(--white);
}

.service-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.service-intro h2 {
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.service-intro h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--color-500), var(--color-200));
    border-radius: 2px;
}

.service-intro p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--color-700);
}

/* Proceso de trabajo */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.process-step {
    background-color: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
    border: 1px solid rgba(0, 173, 219, 0.1);
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(0, 173, 219, 0.2);
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-500), var(--color-200));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-medium);
}

.process-step:hover::before {
    transform: scaleX(1);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-500), var(--color-600));
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
}

.process-step h3 {
    margin-bottom: 1rem;
    color: var(--color-900);
    font-size: 1.4rem;
}

.process-step p {
    color: var(--color-700);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Características del servicio */
.service-features {
    margin: 5rem 0;
}

.service-features h2 {
    text-align: center;
    margin-bottom: 3rem;
    width: 100%;
    position: relative;
}

.service-features h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--color-500), var(--color-200));
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-item {
    background-color: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(0, 173, 219, 0.1);
    transition: all var(--transition-medium);
    box-shadow: var(--shadow-sm);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-200);
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--color-500);
    margin-bottom: 1.5rem;
    transition: transform var(--transition-medium);
}

.feature-item:hover i {
    transform: scale(1.1) rotate(5deg);
}

.feature-item h3 {
    margin-bottom: 1rem;
    color: var(--color-900);
    font-size: 1.3rem;
}

.feature-item p {
    color: var(--color-700);
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 1rem;
}

/* CTA de servicio */
.service-cta {
    background: linear-gradient(135deg, var(--color-50) 0%, rgba(153, 222, 241, 0.3) 100%);
    padding: 4rem 2rem;
    border-radius: 20px;
    text-align: center;
    margin-top: 4rem;
    border: 1px solid rgba(0, 173, 219, 0.1);
}

.service-cta h2 {
    margin-bottom: 1rem;
    color: var(--color-900);
}

.service-cta p {
    max-width: 600px;
    margin: 0 auto 2rem;
    font-size: 1.2rem;
    color: var(--color-700);
}

.service-cta .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 10px;
}

/* ===== RESPONSIVE PARA PÁGINA DE SERVICIO ===== */
@media (max-width: 992px) {
    .service-hero {
        padding: 130px 0 70px;
        margin-top: 70px;
    }
    
    .service-hero h1 {
        font-size: 2.8rem;
    }
    
    .service-details {
        padding: 80px 0;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-hero {
        padding: 120px 0 60px;
        margin-top: 60px;
    }
    
    .service-hero h1 {
        font-size: 2.3rem;
    }
    
    .service-hero p {
        font-size: 1.1rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .process-step {
        padding: 2rem 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-item {
        padding: 2rem 1.5rem;
    }
    
    .service-cta {
        padding: 3rem 1.5rem;
    }
    
    .service-cta h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .service-hero {
        padding: 100px 0 50px;
        margin-top: 50px;
    }
    
    .service-hero h1 {
        font-size: 1.9rem;
    }
    
    .service-intro h2 {
        font-size: 1.8rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .process-step h3 {
        font-size: 1.2rem;
    }
    
    .feature-item h3 {
        font-size: 1.2rem;
    }
}

/* Corrección para el enlace de servicios en el footer */
.footer-services a[href="webapps.html"] {
    color: var(--color-100);
    text-decoration: none;
    transition: all var(--transition-fast);
    font-size: 0.95rem;
    opacity: 0.9;
}

.footer-services a[href="webapps.html"]:hover {
    color: var(--white);
    opacity: 1;
    padding-left: 5px;
}
@media (max-width: 768px) {
    /* Menú hamburguesa móvil */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        flex-direction: column;
        background-color: var(--white);
        width: 280px;
        height: 100vh;
        padding: 100px 2rem 2rem;
        box-shadow: var(--shadow-lg);
        transition: right var(--transition-medium);
        gap: 0;
        margin-left: 0;
        z-index: 1000;
        overflow-y: auto;
    }
    
    header.scrolled .nav-menu {
        background-color: rgba(0, 35, 44, 0.98);
    }
    
    .nav-menu.show {
        right: 0;
    }
    
    .nav-link {
        display: block;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(0, 173, 219, 0.1);
        font-size: 1rem;
        border-radius: 0;
        width: 100%;
    }
    
    header.scrolled .nav-link {
        color: var(--white);
        border-bottom-color: rgba(255, 255, 255, 0.1);
    }
    
    .nav-link:hover::after,
    .nav-link.active::after {
        width: 30%;
        left: 0;
        transform: none;
    }
    
    /* Menú desplegable en móvil */
    .services-dropdown {
        width: 100%;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: transparent;
        border: none;
        padding-left: 1.5rem;
        display: none;
    }
    
    .dropdown-menu.show {
        display: block;
    }
    
    .dropdown-item {
        padding: 0.75rem 1rem;
        color: var(--color-800);
        border-left: 2px solid var(--color-200);
    }
    
    header.scrolled .dropdown-item {
        color: var(--color-100);
        border-left-color: var(--color-100);
    }
    
    .dropdown-item:hover {
        background-color: transparent;
        color: var(--color-500);
        border-left-color: var(--color-500);
    }
    
    header.scrolled .dropdown-item:hover {
        color: var(--color-50);
        border-left-color: var(--color-50);
    }
    
    .hamburger {
        display: flex;
        order: 3;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    /* Mostrar isotipo en móviles */
    .logo-imagotipo {
        display: none;
    }
    
    .logo-isotipo {
        display: block;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 4rem 0;
        
    }
    
    .logo-isotipo {
        height: 30px;
    }
}

@media (max-width: 360px) {
    .logo-isotipo {
        height: 25px;
    }
}
/* ===== ESTILOS ADICIONALES PARA PÁGINAS DE SERVICIOS ===== */

/* Contenido principal del servicio */
.service-content {
    max-width: 1200px;
    margin: 0 auto;
}

/* Tipos de aplicaciones web (sección específica de webapp.html) */
.service-types {
    margin: 5rem 0;
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(0, 173, 219, 0.03) 0%, rgba(153, 222, 241, 0.03) 100%);
    border-radius: 20px;
}

.service-types h2 {
    text-align: center;
    margin-bottom: 3rem;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.service-types h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--color-500), var(--color-200));
    border-radius: 2px;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.type-item {
    background-color: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(0, 173, 219, 0.1);
    transition: all var(--transition-medium);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.type-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-500), var(--color-200));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-medium);
}

.type-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.type-item:hover::before {
    transform: scaleX(1);
}

.type-item h3 {
    margin-bottom: 1rem;
    color: var(--color-900);
    font-size: 1.4rem;
    position: relative;
    z-index: 1;
}

.type-item p {
    color: var(--color-700);
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

/* Color coding para tipos de aplicaciones */
.type-item:nth-child(1) {
    border-top: 4px solid var(--color-500);
}

.type-item:nth-child(2) {
    border-top: 4px solid var(--color-600);
}

.type-item:nth-child(3) {
    border-top: 4px solid var(--color-700);
}

.type-item:nth-child(4) {
    border-top: 4px solid var(--color-800);
}

/* Animaciones específicas para secciones de servicios */
.service-page .fade-in-up,
.service-page .scale-in {
    opacity: 0;
}

.service-page .fade-in-up.animated,
.service-page .scale-in.animated {
    animation-duration: 0.8s;
    animation-fill-mode: forwards;
}

/* Espaciado mejorado para secciones */
.service-page section {
    padding: 80px 0;
}

.service-page .service-details {
    padding: 100px 0;
}

/* Iconos específicos para características de webapp */
.feature-item .fa-server {
    color: var(--color-600);
}

.feature-item .fa-code {
    color: var(--color-500);
}

.feature-item .fa-shield-alt {
    color: var(--color-700);
}

.feature-item .fa-cloud {
    color: var(--color-800);
}

/* Corrección para márgenes en móviles */
@media (max-width: 768px) {
    .service-types {
        margin: 3rem 0;
        padding: 2rem 0;
    }
    
    .service-page section {
        padding: 60px 0;
    }
    
    .service-page .service-details {
        padding: 70px 0;
    }
    
    .types-grid {
        grid-template-columns: 1fr;
    }
    
    .type-item {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .service-types h2 {
        font-size: 1.8rem;
    }
    
    .type-item h3 {
        font-size: 1.3rem;
    }
}

/* ===== FOOTER SIMPLIFICADO ===== */
footer {
    background-color: var(--color-900);
    color: var(--white);
    padding: 3rem 0 1.5rem;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-500), var(--color-200));
}

/* Contenido principal del footer */
.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

/* Columnas del footer */
.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-family: var(--font-secondary);
    font-weight: 600;
}

/* Listas de enlaces */
.footer-links,
.footer-services {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-link {
    color: var(--color-100);
    text-decoration: none;
    transition: all var(--transition-fast);
    font-size: 0.9rem;
    opacity: 0.9;
}

.footer-link:hover {
    color: var(--white);
    opacity: 1;
}

/* Contacto rápido */
.quick-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background-color: var(--color-500);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all var(--transition-fast);
    text-align: center;
}

.contact-btn:hover {
    background-color: var(--color-600);
    transform: translateY(-2px);
}

.whatsapp-btn {
    background-color:   #25D366;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
}

.email-btn {
    background-color: var(--color-700);
}

/* Info de contacto mínima */
.mini-contact-info {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mini-contact-info p {
    color: var(--color-100);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mini-contact-info i {
    color: var(--color-500);
    width: 16px;
}

/* Logo y redes sociales */
.footer-logo-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.25rem;
}

.footer-logo-img img {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* Redes Sociales */
.social-icons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: all var(--transition-fast);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
    background-color: var(--color-500);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* Parte inferior del footer */
.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright p {
    color: var(--color-100);
    font-size: 0.85rem;
    opacity: 0.8;
    margin: 0;
}

/* Métodos de pago */
.footer-payment {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.payment-icons {
    display: flex;
    gap: 0.75rem;
}

.payment-icons i {
    font-size: 1.5rem;
    color: var(--color-100);
}

/* Enlaces legales */
.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-legal-links .footer-link {
    font-size: 0.85rem;
    color: var(--color-200);
}

.footer-legal-links .footer-link:hover {
    color: var(--white);
}

.separator {
    color: var(--color-100);
    opacity: 0.5;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-legal-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-legal-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .separator {
        display: none;
    }
}
/* Estilos para enlaces activos en páginas de servicio */
.nav-menu .nav-link.active[href*="webapp.html"],
.nav-menu .nav-link.active[href*="landing.html"],
.nav-menu .nav-link.active[href*="mobile.html"] {
    color: var(--color-200);
    font-weight: 600;
}

.nav-menu .nav-link.active[href*="webapp.html"]::after,
.nav-menu .nav-link.active[href*="landing.html"]::after,
.nav-menu .nav-link.active[href*="mobile.html"]::after {
    background-color: var(--color-200);
}

/* Estilos para el enlace activo en el footer */
.footer-services a.active {
    color: var(--color-200) !important;
    font-weight: 600;
    opacity: 1 !important;
    position: relative;
    padding-left: 10px;
}

.footer-services a.active::before {
    content: '→';
    position: absolute;
    left: -5px;
    color: var(--color-200);
    transition: transform var(--transition-fast);
}

.footer-services a.active:hover::before {
    transform: translateX(3px);
}

/* Mejoras para la animación de aparición de elementos */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-left {
    opacity: 0;
    animation: slideInLeft 0.6s ease-out forwards;
}

.slide-in-right {
    opacity: 0;
    animation: slideInRight 0.6s ease-out forwards;
}

/* Efecto de brillo para botones */
.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        rgba(255, 255, 255, 0) 30%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0) 70%
    );
    transform: rotate(30deg);
    transition: transform 0.6s ease-out;
}

.btn-primary:hover::after {
    transform: rotate(30deg) translate(20%, 20%);
}
/* ===== PÁGINA DE SERVICIO - APPS MÓVILES ===== */

/* Opciones de desarrollo móvil */
.development-options {
    margin: 5rem 0;
    padding: 3rem 0;
}

.development-options h2 {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.development-options h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--color-500), var(--color-200));
    border-radius: 2px;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.option-item {
    background-color: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 173, 219, 0.1);
    transition: all var(--transition-medium);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.option-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-500), var(--color-200));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-medium);
}

.option-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(0, 173, 219, 0.2);
}

.option-item:hover::before {
    transform: scaleX(1);
}

.option-header {
    text-align: center;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.option-header i {
    font-size: 3rem;
    margin-bottom: 1rem;
    transition: transform var(--transition-medium);
}

.option-item:hover .option-header i {
    transform: scale(1.1) rotate(5deg);
}

/* Colores específicos para cada opción */
.option-item:nth-child(1) .option-header i {
    color: var(--color-600); /* iOS - Azul más intenso */
}

.option-item:nth-child(2) .option-header i {
    color: var(--color-500); /* Híbrido - Azul principal */
}

.option-item:nth-child(3) .option-header i {
    color: var(--color-700); /* PWA - Azul oscuro */
}

.option-header h3 {
    margin-bottom: 0;
    color: var(--color-900);
    font-size: 1.4rem;
}

.option-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.option-item li {
    padding: 0.5rem 0;
    color: var(--color-700);
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.5;
}

.option-item li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-500);
    font-weight: bold;
}

/* Proceso de desarrollo específico para móviles */
.process-steps.mobile-process {
    margin: 5rem 0;
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(0, 173, 219, 0.03) 0%, rgba(153, 222, 241, 0.03) 100%);
    border-radius: 20px;
}

.process-steps.mobile-process h2 {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.process-steps.mobile-process h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--color-500), var(--color-200));
    border-radius: 2px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step-item {
    background-color: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(0, 173, 219, 0.1);
    transition: all var(--transition-medium);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-200);
}

.step-item .step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-500), var(--color-600));
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
}

.step-item h3 {
    margin-bottom: 1rem;
    color: var(--color-900);
    font-size: 1.4rem;
}

.step-item p {
    color: var(--color-700);
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 1.1rem;
}

/* Tipos de aplicaciones móviles */
.app-types {
    margin: 5rem 0;
    padding: 3rem 0;
}

.app-types h2 {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.app-types h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--color-500), var(--color-200));
    border-radius: 2px;
}

.app-types .types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.app-types .type-item {
    background-color: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(0, 173, 219, 0.1);
    transition: all var(--transition-medium);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.app-types .type-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-500), var(--color-200));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-medium);
}

.app-types .type-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.app-types .type-item:hover::before {
    transform: scaleX(1);
}

.app-types .type-item h3 {
    margin-bottom: 1rem;
    color: var(--color-900);
    font-size: 1.4rem;
}

.app-types .type-item p {
    color: var(--color-700);
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 1.1rem;
}

/* Color coding para tipos de apps móviles */
.app-types .type-item:nth-child(1) {
    border-top: 4px solid var(--color-500);
}

.app-types .type-item:nth-child(2) {
    border-top: 4px solid var(--color-600);
}

.app-types .type-item:nth-child(3) {
    border-top: 4px solid var(--color-700);
}

.app-types .type-item:nth-child(4) {
    border-top: 4px solid var(--color-800);
}

/* CTA específico para móviles */
.service-cta.mobile-cta {
    background: linear-gradient(135deg, var(--color-50) 0%, rgba(153, 222, 241, 0.3) 100%);
    padding: 4rem 2rem;
    border-radius: 20px;
    text-align: center;
    margin-top: 4rem;
    border: 1px solid rgba(0, 173, 219, 0.1);
    position: relative;
    overflow: hidden;
}

.service-cta.mobile-cta::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 173, 219, 0.1) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    border-radius: 50%;
}

.service-cta.mobile-cta::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(153, 222, 241, 0.1) 0%, transparent 70%);
    bottom: -75px;
    left: -75px;
    border-radius: 50%;
}

.service-cta.mobile-cta h2 {
    margin-bottom: 1rem;
    color: var(--color-900);
    position: relative;
    z-index: 1;
}

.service-cta.mobile-cta p {
    max-width: 600px;
    margin: 0 auto 2rem;
    font-size: 1.2rem;
    color: var(--color-700);
    position: relative;
    z-index: 1;
}

.service-cta.mobile-cta .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 10px;
    position: relative;
    z-index: 1;
}

/* Responsive específico para móviles */
@media (max-width: 992px) {
    .options-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .app-types .types-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .development-options,
    .process-steps.mobile-process,
    .app-types {
        margin: 3rem 0;
        padding: 2rem 0;
    }
    
    .options-grid {
        grid-template-columns: 1fr;
    }
    
    .option-item {
        padding: 2rem 1.5rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .step-item {
        padding: 2rem 1.5rem;
    }
    
    .app-types .types-grid {
        grid-template-columns: 1fr;
    }
    
    .app-types .type-item {
        padding: 2rem 1.5rem;
    }
    
    .service-cta.mobile-cta {
        padding: 3rem 1.5rem;
    }
    
    .step-item .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .development-options h2,
    .process-steps.mobile-process h2,
    .app-types h2 {
        font-size: 1.8rem;
    }
    
    .option-header h3,
    .step-item h3,
    .app-types .type-item h3 {
        font-size: 1.3rem;
    }
    
    .option-item li,
    .step-item p,
    .app-types .type-item p {
        font-size: 1rem;
    }
}
.footer-services a[href="mobile.html"].active {
    color: var(--color-200) !important;
    font-weight: 600;
    opacity: 1 !important;
    position: relative;
    padding-left: 10px;
}

.footer-services a[href="mobile.html"].active::before {
    content: '→';
    position: absolute;
    left: -5px;
    color: var(--color-200);
    transition: transform var(--transition-fast);
}

/* ===== SERVICIOS ===== */
.services {
    background-color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-medium);
    text-align: center;
    border: 1px solid rgba(0, 173, 219, 0.1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-500), var(--color-200));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-medium);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    font-size: 3rem;
    color: var(--color-500);
    margin-bottom: 1.5rem;
    transition: transform var(--transition-medium);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    margin-bottom: 1rem;
}

.service-card > p {
    flex-grow: 1;
    margin-bottom: 2rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.service-features li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--color-800);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-500);
    font-weight: bold;
}

.service-button {
    margin-top: auto;
}

/* ===== SOBRE NOSOTROS ===== */
.about-page {
    padding-top: 0px;
}

.about-hero {
    background: linear-gradient(135deg, var(--color-50) 0%, var(--white) 100%);
    padding: 100px 0;
    margin-top: 80px;
}

.about-details {
    padding: 100px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    padding-right: 2rem;
}

.about-logo {
    margin-bottom: 2rem;
}

.about-logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.mission-values {
    margin-top: 3rem;
}

.mission-values h3 {
    margin-bottom: 1.5rem;
    color: var(--color-500);
}

.mission-values ul {
    list-style: none;
    margin-top: 1rem;
}

.mission-values li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--color-700);
    line-height: 1.6;
}

.mission-values li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-500);
    font-weight: bold;
}

.mission-values li strong {
    color: var(--color-600);
    font-weight: 600;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-fast);
    border: 1px solid rgba(0, 173, 219, 0.1);
}

.stat:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-500);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    color: var(--color-700);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: transform var(--transition-medium);
    border: 1px solid rgba(0, 173, 219, 0.1);
}

.about-image:hover {
    transform: translateY(-5px);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--transition-medium);
}

.about-image:hover img {
    transform: scale(1.05);
}

/* ===== RESPONSIVE PARA PÁGINA SOBRE NOSOTROS ===== */
@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-text {
        padding-right: 0;
    }
    
    .about-image {
        order: -1;
    }
    
    .about-page {
        padding-top: 120px;
    }
    
    .about-hero {
        padding: 80px 0;
        margin-top: 70px;
    }
}

@media (max-width: 768px) {
    .about-page {
        padding-top: 100px;
    }
    
    .about-hero {
        padding: 60px 0;
        margin-top: 60px;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .about-details {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .about-page {
        padding-top: 90px;
    }
    
    .about-hero {
        padding: 50px 0;
        margin-top: 50px;
    }
    
    .about-logo img {
        height: 45px;
    }
}
/* ===== CONTACTO ===== */
.contact-page {
    padding-top: 0px;
}

.contact-hero {
    background: linear-gradient(135deg, var(--white) 0%, var(--color-600) 100%);
    padding: 100px 0;
    margin-top: 0px;
}

.contact-details {
    padding: 100px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 2rem;
}

.contact-info {
    padding-right: 2rem;
}

.contact-logo {
    margin-bottom: 2rem;
}

.contact-logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
    margin:0px;
}

.contact-info > h2 {
    margin-bottom: 1.5rem;
    color: var(--color-900);
}

.contact-info > p {
    color: var(--color-700);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Cambiado de .contact-details a .contact-details-list para evitar conflicto */
.contact-details-list {
    margin: 2.5rem 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 173, 219, 0.1);
    transition: transform var(--transition-fast);
}

.contact-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.contact-item i {
    color: var(--color-500);
    font-size: 1.5rem;
    margin-right: 1rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
    width: 24px;
    text-align: center;
}

.contact-item h4 {
    margin-bottom: 0.25rem;
    color: var(--color-900);
    font-size: 1.1rem;
}

.contact-item p {
    color: var(--color-700);
    margin: 0;
    font-size: 1rem;
}

.social-links {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 173, 219, 0.1);
}

.social-links h4 {
    margin-bottom: 1rem;
    color: var(--color-900);
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: var(--white);
    color: var(--color-500);
    border-radius: 12px;
    text-decoration: none;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 173, 219, 0.1);
}

.social-icon:hover {
    background-color: var(--color-500);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.contact-form {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 173, 219, 0.1);
}

.contact-form h3 {
    margin-bottom: 2rem;
    color: var(--color-900);
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-900);
    font-weight: 600;
    font-family: var(--font-secondary);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid rgba(0, 173, 219, 0.2);
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: all var(--transition-fast);
    background-color: var(--white);
    color: var(--color-900);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-500);
    box-shadow: 0 0 0 3px rgba(0, 173, 219, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form .btn-primary {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 1rem;
}

/* ===== RESPONSIVE PARA PÁGINA DE CONTACTO ===== */
@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-info {
        padding-right: 0;
    }
    
    .contact-page {
        padding-top: 120px;
    }
    
    .contact-hero {
        padding: 80px 0;
        margin-top: 70px;
    }
}

@media (max-width: 768px) {
    .contact-page {
        padding-top: 100px;
    }
    
    .contact-hero {
        padding: 60px 0;
        margin-top: 60px;
    }
    
    .contact-details {
        padding: 60px 0;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .contact-logo img {
        height: 50px;
    }
}

@media (max-width: 480px) {
    .contact-page {
        padding-top: 90px;
    }
    
    .contact-hero {
        padding: 50px 0;
        margin-top: 50px;
    }
    
    .contact-form {
        padding: 1.25rem;
    }
    
    .contact-item {
        padding: 0.75rem;
    }
    
    .contact-logo img {
        height: 45px;
    }
}
/* Botón de envío del formulario */
.contact-form .btn-primary {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* ===== FOOTER ===== */
footer {
    background-color: var(--color-900);
    color: var(--white);
    padding: 4rem 0 2rem;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-500), var(--color-200));
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo-img {
    margin-bottom: 1.5rem;
}

.footer-logo-img img {
    height: 60px;
    width: auto;
    object-fit: contain;
    /* Logo blanco en footer */
    filter: brightness(0) invert(1);
}

.footer-logo p {
    color: var(--color-100);
    margin-top: 1rem;
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Información de contacto en el footer */
.footer-contact-info {
    margin-top: 1.5rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    color: var(--color-100);
}

.footer-contact-item i {
    color: var(--color-200);
    font-size: 1rem;
    margin-right: 0.75rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.footer-contact-item span {
    font-size: 0.9rem;
    opacity: 0.9;
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-links h4::after,
.footer-services h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--color-500);
}

.footer-links ul,
.footer-services ul,
.footer-contact ul {
    list-style: none;
}

.footer-links li,
.footer-services li,
.footer-contact li {
    margin-bottom: 0.75rem;
}

.footer-link {
    color: var(--color-100);
    text-decoration: none;
    transition: all var(--transition-fast);
    font-size: 0.95rem;
    opacity: 0.9;
}

.footer-link:hover {
    color: var(--white);
    opacity: 1;
    padding-left: 5px;
}

.footer-contact ul {
    margin-top: 1rem;
}

.footer-contact li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    color: var(--color-100);
}

.footer-contact li i {
    color: var(--color-200);
    margin-right: 0.75rem;
    font-size: 0.9rem;
}

.footer-contact li a {
    color: var(--color-100);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-contact li a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-100);
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-bottom a {
    color: var(--color-200);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-bottom a:hover {
    color: var(--white);
    text-decoration: underline;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .hero .container {
        gap: 3rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero .container,
    .about-content,
    .contact-content {
        flex-direction: column;
        gap: 3rem;
    }
    
    .hero-content,
    .about-text,
    .contact-info {
        max-width: 100%;
        padding-right: 0;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-container {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    /* Ajuste del header en tablet */
    .nav-menu {
        margin-left: 1rem;
        gap: 1rem;
    }
    
    .nav-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    /* Menú hamburguesa */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        flex-direction: column;
        background-color: var(--white);
        width: 280px;
        height: 100vh;
        padding: 100px 2rem 2rem;
        box-shadow: var(--shadow-lg);
        transition: right var(--transition-medium);
        gap: 0;
        margin-left: 0;
        z-index: 1000;
    }
    
    .nav-menu.show {
        right: 0;
    }
    
    .nav-link {
        display: block;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(0, 173, 219, 0.1);
        font-size: 1rem;
        border-radius: 0;
    }
    
    .nav-link:hover::after,
    .nav-link.active::after {
        width: 30%;
        left: 0;
        transform: none;
    }
    
    .hamburger {
        display: flex;
        order: 3;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    /* Mostrar isotipo en móviles */
    .logo-imagotipo {
        display: none;
    }
    
    .logo-isotipo {
        display: block;
        height: 35px;
    }
    
    /* Ajustes hero */
    .hero {
        padding: 150px 0 80px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        text-align: center;
        margin-bottom: 0.5rem;
    }
    
    /* Servicios en columna */
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    /* Sobre nosotros en columna */
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-image {
        order: -1;
    }
    
    /* Stats en columna */
    .stats-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Contacto en columna */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    /* Footer en columna */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-links h4::after,
    .footer-services h4::after,
    .footer-contact h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-contact-info,
    .footer-contact ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-link:hover {
        padding-left: 0;
    }
    
    .footer-contact li {
        justify-content: center;
    }
    
    /* Ajustes de secciones */
    section {
        padding: 80px 0;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    /* Header más compacto en móviles pequeños */
    .header-container {
        padding: 0.75rem 0;
    }
    
    .logo-isotipo {
        height: 30px;
    }
    
    /* Hero más compacto */
    .hero {
        padding: 130px 0 60px;
    }
    
    .hero-logo img {
        height: 50px;
    }
    
    /* Cards más compactas */
    .service-card,
    .contact-form {
        padding: 1.5rem;
    }
    
    /* Ajustes de texto */
    p {
        font-size: 1rem;
    }
    
    .section-header p {
        font-size: 1.1rem;
    }
    
    /* Logos más pequeños en móviles */
    .hero-logo img,
    .about-logo img,
    .contact-logo img,
    .footer-logo-img img {
        height: 45px;
    }
    
    /* Botones más compactos */
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
    
    /* Formularios más compactos */
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.75rem;
        font-size: 0.95rem;
    }
    
    /* Footer más compacto */
    footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-bottom {
        padding-top: 1.5rem;
        font-size: 0.85rem;
    }
}

/* ===== MEJORAS ADICIONALES PARA RESPONSIVE ===== */
@media (max-width: 360px) {
    .container {
        width: 95%;
        padding: 0 10px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .service-card {
        padding: 1.25rem;
    }
    
    .hero-buttons {
        gap: 0.5rem;
    }
    
    .btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .logo-isotipo {
        height: 25px;
    }
}

/* ===== UTILIDADES PARA RESPONSIVE ===== */
.hidden-mobile {
    display: none;
}

.visible-mobile {
    display: block;
}

@media (min-width: 769px) {
    .hidden-mobile {
        display: block;
    }
    
    .visible-mobile {
        display: none;
    }
}

/* Asegurar que las imágenes sean responsive */
img {
    max-width: 100%;
    height: auto;
}

/* Mejorar la legibilidad en móviles */
@media (max-width: 768px) {
    body {
        font-size: 16px;
        line-height: 1.5;
    }
    
    .container {
        padding: 0 15px;
    }
}

/* Filtros SVG para cambiar colores de imágenes si es necesario */
.filter-svg {
    display: none;
}
/*Banner "SLIDE"*/
.hero-slides {
            position: relative;
            height: 100%;
        }
        
        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.5s ease, visibility 0.5s;
        }
        
        .hero-slide.active {
            opacity: 1;
            visibility: visible;
        }
        
        .hero-slide .container {
            height: 100%;
        }
        
        /* Controles del slider */
        .hero-prev,
        .hero-next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: var(--color-200);
            border: none;
            color: var(--white);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            backdrop-filter: blur(5px);
        }
        
        .hero-prev:hover,
        .hero-next:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-50%) scale(1.1);
        }
        
        .hero-prev {
            left: 20px;
        }
        
        .hero-next {
            right: 20px;
        }
        
        /* Indicadores */
        .hero-indicators {
            position: absolute;
            bottom: 0px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            gap: 18px;
            z-index: 10;
        }
        
        .hero-indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: var(--color-50);
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            padding: 0;
        }
        
        .hero-indicator.active {
            background-color: var(--white);
            transform: scale(1.2);
        }
        
        /* Elementos promocionales específicos */
        .hero-badge {
            display: inline-block;
            background-color: var(--white);
            color: var(--color-600);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: var(--shadow-sm);
        }
        
        .hero-timer {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-top: 1.5rem;
            color: var(--white);
            opacity: 0.9;
            font-size: 0.95rem;
        }
        
        .hero-timer i {
            color: var(--color-200);
        }
        
        .hero-features {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin: 1.5rem 0;
        }
        
        .hero-features span {
            background-color: rgba(255, 255, 255, 0.1);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .hero-features i {
            color: var(--color-200);
            font-size: 0.8rem;
        }
        
        .promo-highlight {
            margin: 1.5rem 0;
            text-align: center;
        }
        
        .highlight-item {
            display: inline-flex;
            flex-direction: column;
            align-items: center;
            background: rgba(255, 255, 255, 0.1);
            padding: 1rem 2rem;
            border-radius: 12px;
            backdrop-filter: blur(10px);
            margin-bottom: 1rem;
        }
        
        .highlight-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--white);
            line-height: 1;
        }
        
        .highlight-label {
            font-size: 1.2rem;
            color: var(--white);
            opacity: 0.9;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .highlight-text {
            color: var(--white);
            opacity: 0.9;
            font-size: 1rem;
        }
        
        .promo-icon-container {
            position: relative;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .promo-icon {
            font-size: 8rem;
            color: rgba(255, 255, 255, 0.15);
            animation: float 3s ease-in-out infinite;
        }
        
        .promo-number {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 3rem;
            font-weight: 800;
            color: var(--white);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-prev,
            .hero-next {
                width: 40px;
                height: 40px;
            }
            
            .promo-icon {
                font-size: 5rem;
            }
            
            .promo-number {
                font-size: 2rem;
            }
            
            .highlight-number {
                font-size: 2.5rem;
            }
            
            .highlight-label {
                font-size: 1rem;
            }
        }
        /* ===== ESTILOS PARA PÁGINA ABOUT MEJORADA ===== */

/* Estilos para misión y valores */
.mission-values-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.mission-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
    border: 1px solid rgba(0, 173, 219, 0.1);
    transition: all var(--transition-medium);
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.mission-icon {
    font-size: 3rem;
    color: var(--color-500);
    margin-bottom: 1.5rem;
}

.mission-card h3 {
    margin-bottom: 1rem;
    color: var(--color-900);
}

.mission-card p {
    color: var(--color-700);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Grid de valores */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.value-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(0, 173, 219, 0.1);
    transition: all var(--transition-medium);
    box-shadow: var(--shadow-sm);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-200);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--color-500);
    margin-bottom: 1rem;
    transition: transform var(--transition-medium);
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
}

.value-card h4 {
    margin-bottom: 0.75rem;
    color: var(--color-900);
    font-size: 1.2rem;
}

.value-card p {
    color: var(--color-700);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Estilos para el equipo */
.team-member {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(0, 173, 219, 0.1);
    transition: all var(--transition-medium);
    box-shadow: var(--shadow-sm);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-200);
}

.team-member h3 {
    margin-bottom: 0.75rem;
    color: var(--color-900);
}

.team-member p {
    color: var(--color-700);
    line-height: 1.5;
    margin-bottom: 0;
}

/* CTA específico para about */
.service-cta {
    background: linear-gradient(135deg, var(--color-50) 0%, rgba(153, 222, 241, 0.3) 100%);
    padding: 4rem 2rem;
    border-radius: 20px;
    text-align: center;
    margin-top: 4rem;
    border: 1px solid rgba(0, 173, 219, 0.1);
}

.service-cta h2 {
    margin-bottom: 1rem;
    color: var(--color-900);
}

.service-cta p {
    max-width: 600px;
    margin: 0 auto 2rem;
    font-size: 1.2rem;
    color: var(--color-700);
}

/* Stats mejorados */
.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-fast);
    border: 1px solid rgba(0, 173, 219, 0.1);
}

.stat:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-500);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    color: var(--color-700);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive para about */
@media (max-width: 768px) {
    .mission-values-content {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .mission-card,
    .value-card,
    .team-member {
        padding: 1.5rem;
    }
}

/* Clase para enlace activo en footer */
.footer-link.active {
    color: var(--color-200) !important;
    font-weight: 600;
    opacity: 1 !important;
    position: relative;
}

.footer-link.active::before {
    content: '→';
    position: absolute;
    left: -15px;
    color: var(--color-200);
}

/* Estilos adicionales para mejoras específicas de contacto */
        .contact-hero-visual {
            text-align: center;
            padding: 2rem;
        }

        .floating-elements {
            position: relative;
            height: 150px;
            margin-top: 2rem;
        }

        .floating-element {
            position: absolute;
            background: var(--white);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-md);
            animation: float 3s ease-in-out infinite;
            font-size: 1.5rem;
            color: var(--color-500);
        }

        .floating-element:nth-child(1) {
            top: 0;
            left: 20%;
        }

        .floating-element:nth-child(2) {
            top: 30%;
            right: 20%;
        }

        .floating-element:nth-child(3) {
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }

        .contact-methods {
            background: linear-gradient(135deg, var(--white) 0%, rgba(153, 222, 241, 0.1) 100%);
            padding: 80px 0;
        }

        .contact-methods-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .contact-method-card {
            background: var(--white);
            padding: 2rem;
            border-radius: 16px;
            text-align: center;
            box-shadow: var(--shadow-md);
            border: 1px solid rgba(0, 173, 219, 0.1);
            transition: all var(--transition-medium);
        }

        .contact-method-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-xl);
            border-color: var(--color-500);
        }

        .method-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--color-500), var(--color-600));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            color: var(--white);
        }

        .method-info {
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(0, 173, 219, 0.1);
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            flex-shrink: 0;
            color: var(--color-500);
            font-size: 1.5rem;
        }

        .contact-note {
            display: block;
            margin-top: 0.5rem;
            color: var(--color-600);
            font-size: 0.85rem;
        }

        .schedule-info {
            margin-top: 2rem;
            padding: 1.5rem;
            background: var(--color-50);
            border-radius: 12px;
            border-left: 4px solid var(--color-500);
        }

        .schedule-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 1rem;
            margin-top: 1rem;
        }

        .schedule-item {
            display: flex;
            flex-direction: column;
        }

        .schedule-day {
            font-weight: 600;
            color: var(--color-900);
        }

        .schedule-time {
            color: var(--color-700);
            font-size: 0.9rem;
        }

        .social-description {
            margin-bottom: 1rem;
            color: var(--color-700);
        }

        .social-tooltip {
            position: absolute;
            bottom: -30px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--color-900);
            color: var(--white);
            padding: 0.25rem 0.5rem;
            border-radius: 4px;
            font-size: 0.75rem;
            white-space: nowrap;
            opacity: 0;
            transition: opacity var(--transition-fast);
        }

        .social-icon:hover .social-tooltip {
            opacity: 1;
        }

        .form-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .form-progress {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .progress-step {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--color-100);
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            transition: all var(--transition-fast);
        }

        .progress-step.active {
            background: linear-gradient(135deg, var(--color-500), var(--color-600));
            transform: scale(1.1);
        }

        .form-step {
            display: none;
        }

        .form-step.active {
            display: block;
        }

        .form-group label i {
            margin-right: 0.5rem;
            color: var(--color-500);
        }

        .char-count {
            display: block;
            text-align: right;
            margin-top: 0.25rem;
            color: var(--color-700);
            font-size: 0.85rem;
        }

        .form-buttons {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
        }

        .form-status {
            margin-top: 2rem;
            padding: 1.5rem;
            border-radius: 12px;
            text-align: center;
            background: var(--color-50);
        }

        .status-success i,
        .status-error i {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .status-success i {
            color: #2ed573;
        }

        .status-error i {
            color: #ff4757;
        }

        .contact-faq {
            background: linear-gradient(135deg, rgba(0, 173, 219, 0.05) 0%, rgba(153, 222, 241, 0.05) 100%);
            padding: 80px 0;
        }

        .faq-grid {
            max-width: 800px;
            margin: 3rem auto 0;
        }

        .faq-item {
            background: var(--white);
            border-radius: 12px;
            margin-bottom: 1rem;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            border: 1px solid rgba(0, 173, 219, 0.1);
        }

        .faq-question {
            padding: 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            transition: background var(--transition-fast);
        }

        .faq-question:hover {
            background: var(--color-50);
        }

        .faq-question h4 {
            margin: 0;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .faq-question i.fa-chevron-down {
            transition: transform var(--transition-fast);
        }

        .faq-question i.rotate {
            transform: rotate(180deg);
        }

        .faq-answer {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height var(--transition-medium), padding var(--transition-medium);
        }

        .faq-item.active .faq-answer {
            padding: 0 1.5rem 1.5rem;
            max-height: 500px;
        }

        @media (max-width: 768px) {
            .contact-methods-grid {
                grid-template-columns: 1fr;
            }

            .form-buttons {
                flex-direction: column;
            }

            .floating-elements {
                height: 100px;
            }

            .floating-element {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }
        }
        /* ===== AJUSTE RESPONSIVE SIN TOCAR EL MENÚ MÓVIL ===== */
@media (max-width: 768px) {
    /* Evita espacios en blanco verticales */
    .hero,
    .service-hero {
        height: auto !important;
        min-height: unset !important;
        padding: 120px 0 60px !important;
    }

    .hero-slides {
        height: auto !important;
        min-height: unset !important;
    }

    .hero-slide {
        position: relative !important;
        height: auto !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .hero-slide:not(.active) {
        display: none !important;
    }

    /* El contenido principal sí debe apilarse en móvil */
    .hero .container,
    .service-hero .container,
    .about-content,
    .contact-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
    }

    .about-content,
    .contact-content {
        display: grid !important;
        grid-template-columns: 1fr !important;
    }

    /* Corrige imágenes grandes que empujan el layout */
    .hero-image,
    .service-hero-image,
    .about-image {
        width: 100% !important;
        max-width: 100% !important;
        transform: none !important;
    }

    .hero-image img,
    .service-hero-image img,
    .about-image img {
        width: 100% !important;
        height: auto !important;
        display: block;
    }

    /* Texto más ordenado */
    .hero-content,
    .service-hero-content,
    .about-text,
    .contact-info {
        max-width: 100% !important;
        padding-right: 0 !important;
        text-align: center;
    }

    .service-hero-content {
        text-align: center !important;
    }

    /* Botones más limpios */
    .hero-buttons,
    .btn-group,
    .form-buttons {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
    }

    .hero-buttons .btn,
    .btn-group .btn,
    .form-buttons .btn {
        width: 100%;
    }

    /* Grids en una sola columna para que no se rompa */
    .services-grid,
    .features-grid,
    .types-grid,
    .options-grid,
    .steps-grid,
    .app-types .types-grid,
    .process-steps,
    .contact-methods-grid,
    .values-grid,
    .stats-container,
    .footer-content {
        grid-template-columns: 1fr !important;
    }

    /* Footer bien centrado */
    .footer-content,
    .footer-bottom-content {
        text-align: center;
    }

    .footer-bottom-content {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .footer-links h4::after,
    .footer-services h4::after,
    .footer-contact h4::after {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }

    /* Corrige paddings agresivos */
    section,
    .service-details,
    .about-details,
    .contact-details,
    .contact-methods,
    .contact-faq {
        padding: 60px 0 !important;
    }

    /* Evita desbordes laterales */
    html,
    body {
        overflow-x: hidden;
    }

    .container {
        width: 92% !important;
        padding: 0 12px !important;
    }
}

@media (max-width: 480px) {
    .hero,
    .service-hero {
        padding: 110px 0 50px !important;
    }

    .hero h1,
    .service-hero h1 {
        font-size: 2rem !important;
        line-height: 1.15;
    }

    h2 {
        font-size: 1.75rem !important;
    }

    p,
    .section-header p,
    .service-hero p {
        font-size: 1rem !important;
    }

    .service-card,
    .feature-item,
    .type-item,
    .option-item,
    .step-item,
    .contact-form,
    .mission-card,
    .value-card,
    .team-member {
        padding: 1.5rem !important;
    }

    .hero-prev,
    .hero-next {
        width: 38px;
        height: 38px;
    }

    .hero-indicators {
        bottom: 10px;
    }
}
/* ===== FIX MENÚ MÓVIL ===== */
@media (max-width: 768px) {
    .nav-menu {
        background: var(--white) !important;
        background-color: var(--white) !important;
        height: 100vh !important;
        min-height: 100vh !important;
        overflow-y: auto;
    }

    header.scrolled .nav-menu {
        background: var(--white) !important;
        background-color: var(--white) !important;
    }

    .nav-link {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        width: 100% !important;
        padding: 1rem 2rem !important;
        color: var(--color-600) !important;
    }

    /* Solo para el item que tiene dropdown */
    .nav-link.has-dropdown {
        justify-content: center !important;
        padding-right: 2rem !important;
    }

    /* Flecha sin desalinear el texto */
    .nav-link.has-dropdown::after {
        position: static !important;
        margin-left: 0.4rem !important;
    }

    /* Submenú centrado también */
    .dropdown-menu {
        background: transparent !important;
    }

    .dropdown-item {
        text-align: center !important;
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }
}
/* ===== HEADER MÁS ALTO EN MÓVIL ===== */
@media (max-width: 768px) {

    header {
        height: 80px;
        display: flex;
        align-items: center;
    }

    .header-container {
        padding: 1.4rem 0 !important;
    }

    .logo-isotipo {
        height: 45px !important;
    }

    .hamburger {
        margin-top: 4px;
    }

}
/* ===== FIX ESPACIO BLANCO DEBAJO DEL HEADER ===== */

/* Ajuste del header */
header{
    height: 90px;
}

/* evita separación extra en secciones hero */
.hero,
.service-hero,
.about-hero,
.contact-hero{
    margin-top: 0 !important;
}

/* evita espacios generados por páginas */
.about-page,
.contact-page{
    padding-top: 0 !important;
}

/* compensación correcta por header fijo */
.hero{
    padding-top: 140px !important;
}

.service-hero{
    padding-top: 140px !important;
}

/* móvil */
@media (max-width:768px){

    header{
        height: 90px;
    }

    .hero,
    .service-hero{
        padding-top: 120px !important;
    }

}
/*Cambios Responsive*/
