/* =========================================== */
/* ESTILOS COMPLETOS PARA PÁGINA DE SERVICIOS */
/* =========================================== */

/* =========================================== */
/* CUADRO CENTRAL CON ICONO */
/* =========================================== */
.cuadro-central-hero {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
    background: linear-gradient(145deg, rgba(20, 25, 40, 0.95), rgba(15, 20, 35, 0.95));
    border-radius: 30px;
    border: 2px solid rgba(30, 144, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 30px rgba(30, 144, 255, 0.15);
    overflow: hidden;
    z-index: 10; /* Alto para estar siempre encima */
    animation: flotar-suave 6s ease-in-out infinite;
}

.contenido-cuadro-central {
    text-align: center;
    padding: 30px;
    z-index: 11;
}

.icono-cuadro-central {
    width: 100px;
    height: 100px;
    background: linear-gradient(145deg, rgba(30, 144, 255, 0.15), rgba(30, 144, 255, 0.05));
    border: 2px solid rgba(30, 144, 255, 0.4);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 42px;
    color: #1e90ff;
    animation: latido-icono 3s ease-in-out infinite;
    box-shadow: 
        inset 0 2px 4px rgba(255, 255, 255, 0.1),
        0 5px 15px rgba(30, 144, 255, 0.2);
}

.cuadro-central-hero h3 {
    color: white;
    font-size: 1.6rem;
    margin-bottom: 10px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cuadro-central-hero p {
    color: #b0b0b0;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.4;
}

/* =========================================== */
/* 4 CUADROS FLOTANTES CON ÓRBITA Y PASO TRASERO */
/* =========================================== */
.elemento-flotante-servicio {
    position: absolute;
    width: 90px;
    height: 90px;
    background: linear-gradient(145deg, rgba(30, 144, 255, 0.15), rgba(30, 144, 255, 0.05));
    border: 2px solid rgba(30, 144, 255, 0.3);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #1e90ff;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 2; /* Normalmente delante */
}

.texto-elemento-flotante {
    font-size: 12px;
    font-weight: 600;
    margin-top: 5px;
    color: #1e90ff;
    font-family: 'Roboto Mono', monospace;
    letter-spacing: 1px;
}

/* Efecto hover */
.elemento-flotante-servicio:hover {
    background: rgba(30, 144, 255, 0.25);
    transform: scale(1.15) rotate(5deg);
    box-shadow: 
        0 15px 30px rgba(30, 144, 255, 0.3),
        0 0 0 2px rgba(30, 144, 255, 0.4);
    animation-play-state: paused;
    z-index: 8 !important;
    opacity: 1 !important;
    filter: none !important;
}

/* =========================================== */
/* ANIMACIONES INDIVIDUALES PARA CADA CUADRO */
/* =========================================== */

/* WEB - Órbita en forma de elipse */
.elemento-web-servicio {
    animation: orbita-web 25s linear infinite;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes orbita-web {
    0% {
        transform: translate(-50%, -50%) rotate(0deg) translateX(180px) rotate(0deg);
        z-index: 2;
        opacity: 1;
        filter: none;
    }
    40% {
        transform: translate(-50%, -50%) rotate(144deg) translateX(180px) rotate(-144deg);
        z-index: 2;
        opacity: 1;
        filter: none;
    }
    50% {
        transform: translate(-50%, -50%) rotate(180deg) translateX(180px) rotate(-180deg);
        z-index: 1; /* Pasa por detrás */
        opacity: 0.6;
        filter: blur(0.8px);
    }
    90% {
        transform: translate(-50%, -50%) rotate(324deg) translateX(180px) rotate(-324deg);
        z-index: 1;
        opacity: 0.6;
        filter: blur(0.8px);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg) translateX(180px) rotate(-360deg);
        z-index: 2;
        opacity: 1;
        filter: none;
    }
}

/* SOFTWARE - Órbita diferente */
.elemento-software-servicio {
    animation: orbita-software 28s linear infinite;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes orbita-software {
    0% {
        transform: translate(-50%, -50%) rotate(90deg) translateX(160px) rotate(-90deg);
        z-index: 2;
        opacity: 1;
        filter: none;
    }
    40% {
        transform: translate(-50%, -50%) rotate(234deg) translateX(160px) rotate(-234deg);
        z-index: 2;
        opacity: 1;
        filter: none;
    }
    50% {
        transform: translate(-50%, -50%) rotate(270deg) translateX(160px) rotate(-270deg);
        z-index: 1;
        opacity: 0.6;
        filter: blur(0.8px);
    }
    90% {
        transform: translate(-50%, -50%) rotate(414deg) translateX(160px) rotate(-414deg);
        z-index: 1;
        opacity: 0.6;
        filter: blur(0.8px);
    }
    100% {
        transform: translate(-50%, -50%) rotate(450deg) translateX(160px) rotate(-450deg);
        z-index: 2;
        opacity: 1;
        filter: none;
    }
}

/* APP - Órbita diferente */
.elemento-app-servicio {
    animation: orbita-app 31s linear infinite;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes orbita-app {
    0% {
        transform: translate(-50%, -50%) rotate(180deg) translateX(170px) rotate(-180deg);
        z-index: 2;
        opacity: 1;
        filter: none;
    }
    40% {
        transform: translate(-50%, -50%) rotate(324deg) translateX(170px) rotate(-324deg);
        z-index: 2;
        opacity: 1;
        filter: none;
    }
    50% {
        transform: translate(-50%, -50%) rotate(0deg) translateX(170px) rotate(0deg);
        z-index: 1;
        opacity: 0.6;
        filter: blur(0.8px);
    }
    90% {
        transform: translate(-50%, -50%) rotate(144deg) translateX(170px) rotate(-144deg);
        z-index: 1;
        opacity: 0.6;
        filter: blur(0.8px);
    }
    100% {
        transform: translate(-50%, -50%) rotate(180deg) translateX(170px) rotate(-180deg);
        z-index: 2;
        opacity: 1;
        filter: none;
    }
}

/* SEO - Órbita diferente */
.elemento-seo-servicio {
    animation: orbita-seo 34s linear infinite;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes orbita-seo {
    0% {
        transform: translate(-50%, -50%) rotate(270deg) translateX(150px) rotate(-270deg);
        z-index: 2;
        opacity: 1;
        filter: none;
    }
    40% {
        transform: translate(-50%, -50%) rotate(54deg) translateX(150px) rotate(-54deg);
        z-index: 2;
        opacity: 1;
        filter: none;
    }
    50% {
        transform: translate(-50%, -50%) rotate(90deg) translateX(150px) rotate(-90deg);
        z-index: 1;
        opacity: 0.6;
        filter: blur(0.8px);
    }
    90% {
        transform: translate(-50%, -50%) rotate(234deg) translateX(150px) rotate(-234deg);
        z-index: 1;
        opacity: 0.6;
        filter: blur(0.8px);
    }
    100% {
        transform: translate(-50%, -50%) rotate(270deg) translateX(150px) rotate(-270deg);
        z-index: 2;
        opacity: 1;
        filter: none;
    }
}

/* Indicador de desplazamiento */
.indicador-desplazamiento {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 2;
    cursor: pointer;
    opacity: 0;
    animation: aparecer 1s ease 1.5s forwards;
}

.texto-desplazamiento {
    color: #b0b0b0;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.contenedor-flecha {
    width: 40px;
    height: 40px;
    background: rgba(30, 144, 255, 0.1);
    border: 1px solid rgba(30, 144, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e90ff;
    font-size: 18px;
    animation: subirBajar 2s ease-in-out infinite;
}

/* =========================================== */
/* ANIMACIONES */
/* =========================================== */
@keyframes flotar-suave {
    0%, 100% {
        transform: translate(-50%, -50%) translateY(0px);
    }
    50% {
        transform: translate(-50%, -50%) translateY(-15px);
    }
}

@keyframes latido-icono {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    25% {
        transform: scale(1.03) rotate(5deg);
    }
    50% {
        transform: scale(1.05) rotate(0deg);
    }
    75% {
        transform: scale(1.03) rotate(-5deg);
    }
}

@keyframes latido {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
}

@keyframes subirBajar {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes aparecer {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* =========================================== */
/* RESPONSIVE */
/* =========================================== */
@media (max-width: 1200px) {
    .contenido-hero {
        gap: 60px;
    }
    
    .linea-titulo {
        font-size: 3rem;
    }
    
    .contenedor-ilustracion-hero {
        width: 450px;
        height: 450px;
    }
    
    /* Ajustamos las órbitas */
    @keyframes orbita-web {
        0% { transform: translate(-50%, -50%) rotate(0deg) translateX(150px) rotate(0deg); }
        50% { transform: translate(-50%, -50%) rotate(180deg) translateX(150px) rotate(-180deg); }
        100% { transform: translate(-50%, -50%) rotate(360deg) translateX(150px) rotate(-360deg); }
    }
}

@media (max-width: 992px) {
    .contenido-hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }
    
    .contenido-textual-hero {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .contenedor-botones-hero {
        justify-content: center;
    }
    
    .contenedor-ilustracion-hero {
        width: 400px;
        height: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .seccion-hero-servicios {
        padding: 150px 0 80px;
        min-height: auto;
    }
    
    .linea-titulo {
        font-size: 2.5rem;
    }
    
    .contenedor-ilustracion-hero {
        width: 350px;
        height: 350px;
    }
    
    .cuadro-central-hero {
        width: 240px;
        height: 240px;
    }
    
    .icono-cuadro-central {
        width: 80px;
        height: 80px;
        font-size: 36px;
    }
    
    .elemento-flotante-servicio {
        width: 75px;
        height: 75px;
        font-size: 28px;
    }
    
    /* Órbitas más pequeñas */
    @keyframes orbita-web {
        0% { transform: translate(-50%, -50%) rotate(0deg) translateX(120px) rotate(0deg); }
        50% { transform: translate(-50%, -50%) rotate(180deg) translateX(120px) rotate(-180deg); }
        100% { transform: translate(-50%, -50%) rotate(360deg) translateX(120px) rotate(-360deg); }
    }
}

@media (max-width: 576px) {
    .contenedor-botones-hero {
        flex-direction: column;
        align-items: stretch;
    }
    
    .boton {
        justify-content: center;
    }
    
    .contenedor-ilustracion-hero {
        width: 300px;
        height: 300px;
    }
    
    .elemento-flotante-servicio {
        width: 65px;
        height: 65px;
        font-size: 24px;
    }
    
    .texto-elemento-flotante {
        font-size: 10px;
    }
    
    /* Órbitas aún más pequeñas */
    @keyframes orbita-web {
        0% { transform: translate(-50%, -50%) rotate(0deg) translateX(100px) rotate(0deg); }
        50% { transform: translate(-50%, -50%) rotate(180deg) translateX(100px) rotate(-180deg); }
        100% { transform: translate(-50%, -50%) rotate(360deg) translateX(100px) rotate(-360deg); }
    }
}

/* =========================================== */
/* SECCIÓN DE SERVICIOS DETALLADOS */
/* =========================================== */

.seccion-servicios-detallados {
    padding: 120px 0;
    background-color: #0a0e17;
    position: relative;
}

.seccion-servicios-detallados::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(30, 144, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 191, 255, 0.03) 0%, transparent 50%);
}

/* Encabezado de sección */
.encabezado-seccion {
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.numero-seccion {
    font-size: 6rem;
    font-weight: 800;
    color: rgba(30, 144, 255, 0.05);
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
    font-family: 'Roboto Mono', monospace;
}

.titulo-seccion {
    font-size: 2.8rem;
    color: white;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.texto-destacado {
    color: #1e90ff;
    position: relative;
}

.texto-destacado::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(30, 144, 255, 0.2);
    z-index: -1;
    border-radius: 4px;
}

.descripcion-seccion {
    color: #b0b0b0;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Navegación entre servicios */
.navegacion-servicios {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.boton-navegacion-servicio {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 30px;
    background: rgba(20, 25, 40, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    color: #b0b0b0;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: none;
    font-family: 'Inter', sans-serif;
}

.boton-navegacion-servicio:hover {
    background: rgba(30, 144, 255, 0.1);
    border: 1px solid rgba(30, 144, 255, 0.3);
    color: #1e90ff;
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.boton-navegacion-servicio.activo {
    background: rgba(30, 144, 255, 0.15);
    border: 1px solid #1e90ff;
    color: #1e90ff;
    box-shadow: 0 15px 30px rgba(30, 144, 255, 0.2);
}

.boton-navegacion-servicio i {
    font-size: 22px;
}

/* Contenedor de detalles de servicios */
.contenedor-servicios-detalles {
    position: relative;
    min-height: 600px;
}

.servicio-detalle {
    display: none;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
}

.servicio-detalle.activo {
    display: block;
    opacity: 1;
    transform: translateY(0);
    animation: aparecer-servicio 0.5s ease forwards;
}

@keyframes aparecer-servicio {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.servicio-detalle-contenedor {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: rgba(20, 25, 40, 0.8);
    border-radius: 25px;
    padding: 50px;
    border: 1px solid rgba(30, 144, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

/* Columna de información del servicio */
.servicio-info-columna {
    max-width: 600px;
}

.servicio-cabecera {
    margin-bottom: 35px;
}

.servicio-icono-grande {
    font-size: 70px;
    color: #1e90ff;
    margin-bottom: 25px;
    text-align: center;
}

.servicio-titulo-detalle {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 15px;
    text-align: center;
}

.servicio-subtitulo {
    color: #b0b0b0;
    font-size: 1.2rem;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 400;
}

.servicio-descripcion-detallada {
    margin-bottom: 40px;
}

.servicio-descripcion-detallada p {
    color: #b0b0b0;
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Características del servicio */
.servicio-caracteristicas {
    margin-bottom: 40px;
}

.caracteristicas-titulo {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.caracteristicas-titulo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #1e90ff;
    border-radius: 2px;
}

.caracteristicas-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.caracteristica-item-detalle {
    display: flex;
    gap: 18px;
    padding: 22px;
    background: rgba(30, 144, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(30, 144, 255, 0.1);
    transition: all 0.3s ease;
}

.caracteristica-item-detalle:hover {
    background: rgba(30, 144, 255, 0.1);
    border-color: rgba(30, 144, 255, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.caracteristica-icono-detalle {
    font-size: 28px;
    color: #1e90ff;
    flex-shrink: 0;
    margin-top: 5px;
}

.caracteristica-contenido-detalle h5 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.caracteristica-contenido-detalle p {
    color: #b0b0b0;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Tecnologías utilizadas */
.servicio-tecnologias {
    margin-bottom: 40px;
}

.tecnologias-titulo {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 10px;
}

.tecnologias-titulo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #1e90ff;
    border-radius: 2px;
}

.tecnologias-lista {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tecnologia-badge {
    background: rgba(30, 144, 255, 0.1);
    color: #1e90ff;
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 500;
    border: 1px solid rgba(30, 144, 255, 0.2);
    transition: all 0.3s ease;
    font-family: 'Roboto Mono', monospace;
}

.tecnologia-badge:hover {
    background: rgba(30, 144, 255, 0.2);
    border-color: rgba(30, 144, 255, 0.4);
    transform: translateY(-3px);
}

/* CTA del servicio */
.servicio-cta {
    margin-top: 30px;
}

.servicio-cta .boton {
    width: 100%;
    justify-content: center;
}

/* Columna de ejemplo del servicio */
.servicio-ejemplo-columna {
    display: flex;
    justify-content: center;
    align-items: center;
}

.servicio-ejemplo-tarjeta {
    max-width: 450px;
    width: 100%;
}

/* Ejemplo de pantalla web */
.ejemplo-pantalla-web {
    background: #0a0e17;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(30, 144, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.pantalla-cabecera {
    background: rgba(20, 25, 40, 0.9);
    padding: 18px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(30, 144, 255, 0.1);
}

.puntos-navegacion {
    display: flex;
    gap: 8px;
}

.puntos-navegacion span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.url-ejemplo {
    color: #b0b0b0;
    font-size: 0.9rem;
    font-family: 'Roboto Mono', monospace;
}

.pantalla-contenido-web {
    padding: 30px;
}

.contenido-web-ejemplo {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.cabecera-web-ejemplo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(30, 144, 255, 0.1);
}

.logo-ejemplo {
    width: 50px;
    height: 20px;
    background: rgba(30, 144, 255, 0.2);
    border-radius: 5px;
}

.menu-ejemplo {
    display: flex;
    gap: 20px;
}

.menu-ejemplo span {
    width: 40px;
    height: 6px;
    background: rgba(30, 144, 255, 0.1);
    border-radius: 3px;
}

.hero-web-ejemplo {
    background: rgba(30, 144, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.titulo-hero-ejemplo {
    width: 70%;
    height: 20px;
    background: rgba(30, 144, 255, 0.2);
    border-radius: 10px;
}

.subtitulo-hero-ejemplo {
    width: 90%;
    height: 12px;
    background: rgba(30, 144, 255, 0.1);
    border-radius: 6px;
}

.secciones-web-ejemplo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.seccion-ejemplo {
    height: 100px;
    background: rgba(30, 144, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(30, 144, 255, 0.1);
}

/* Ejemplo de pantalla de software */
.ejemplo-pantalla-software {
    background: #0a0e17;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(30, 144, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.pantalla-contenido-software {
    padding: 25px;
}

.contenido-software-ejemplo {
    display: flex;
    gap: 25px;
    height: 300px;
}

.sidebar-software {
    width: 30%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.item-menu-software {
    height: 45px;
    background: rgba(30, 144, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(30, 144, 255, 0.1);
}

.main-software {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.dashboard-software {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.grafico-dashboard {
    flex: 2;
    background: rgba(30, 144, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(30, 144, 255, 0.1);
}

.estadisticas-dashboard {
    flex: 1;
    display: flex;
    gap: 20px;
}

.estadistica-item {
    flex: 1;
    background: rgba(30, 144, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(30, 144, 255, 0.1);
}

/* Ejemplo de pantalla móvil */
.ejemplo-pantalla-movil {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.dispositivo-movil {
    width: 250px;
    height: 500px;
    background: rgba(20, 25, 40, 0.9);
    border-radius: 40px;
    padding: 20px;
    border: 2px solid rgba(30, 144, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    position: relative;
}

.dispositivo-movil::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 20px;
    background: rgba(20, 25, 40, 0.9);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    z-index: 2;
}

.pantalla-movil {
    width: 100%;
    height: 100%;
    background: #0a0e17;
    border-radius: 25px;
    padding: 25px;
    overflow: hidden;
}

.contenido-app-ejemplo {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.cabecera-app {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(30, 144, 255, 0.1);
}

.avatar-usuario {
    width: 50px;
    height: 50px;
    background: rgba(30, 144, 255, 0.2);
    border-radius: 25px;
}

.info-usuario {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nombre-usuario {
    width: 70%;
    height: 15px;
    background: rgba(30, 144, 255, 0.2);
    border-radius: 8px;
}

.estado-usuario {
    width: 50%;
    height: 10px;
    background: rgba(30, 144, 255, 0.1);
    border-radius: 5px;
}

.contenido-principal-app {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.card-app {
    flex: 1;
    background: rgba(30, 144, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(30, 144, 255, 0.1);
}

.navegacion-app {
    display: flex;
    justify-content: space-around;
    padding-top: 15px;
    border-top: 1px solid rgba(30, 144, 255, 0.1);
}

.icono-nav {
    width: 30px;
    height: 30px;
    background: rgba(30, 144, 255, 0.1);
    border-radius: 8px;
}

/* Etiqueta de ejemplo */
.ejemplo-etiqueta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 25px;
    padding: 15px 25px;
    background: rgba(30, 144, 255, 0.05);
    border-radius: 12px;
    color: #b0b0b0;
    font-size: 0.95rem;
    border: 1px solid rgba(30, 144, 255, 0.1);
}

.ejemplo-etiqueta i {
    color: #1e90ff;
    font-size: 18px;
}

/* =========================================== */
/* SECCIÓN: POR QUÉ ELEGIRNOS */
/* =========================================== */

.seccion-porque-elegirnos {
    padding: 120px 0;
    background-color: #0f1525;
    position: relative;
}

.seccion-porque-elegirnos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 10%, rgba(30, 144, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 90% 90%, rgba(0, 191, 255, 0.05) 0%, transparent 50%);
}

.grid-ventajas {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.tarjeta-ventaja {
    background: rgba(20, 25, 40, 0.8);
    border-radius: 20px;
    padding: 40px 30px;
    border: 1px solid rgba(30, 144, 255, 0.1);
    transition: all 0.5s ease;
    text-align: center;
}

.tarjeta-ventaja:hover {
    transform: translateY(-10px);
    border-color: rgba(30, 144, 255, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.icono-ventaja-contenedor {
    position: relative;
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
}

.icono-ventaja {
    width: 80px;
    height: 80px;
    background: rgba(30, 144, 255, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #1e90ff;
    border: 2px solid rgba(30, 144, 255, 0.2);
    z-index: 2;
}

.efecto-onda-ventaja {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border: 2px solid rgba(30, 144, 255, 0.1);
    border-radius: 50%;
    animation: onda-ventaja 3s linear infinite;
    opacity: 0;
}

.tarjeta-ventaja:hover .efecto-onda-ventaja {
    opacity: 1;
}

.titulo-ventaja {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.descripcion-ventaja {
    color: #b0b0b0;
    line-height: 1.6;
}

/* =========================================== */
/* SECCIÓN: PREGUNTAS FRECUENTES */
/* =========================================== */

.seccion-faq-servicios {
    padding: 120px 0;
    background-color: #0f1525;
    position: relative;
}

.contenedor-faq {
    max-width: 900px;
    margin: 0 auto 50px;
    position: relative;
    z-index: 2;
}

.item-faq {
    background: rgba(20, 25, 40, 0.8);
    border-radius: 15px;
    border: 1px solid rgba(30, 144, 255, 0.1);
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.item-faq:hover {
    border-color: rgba(30, 144, 255, 0.2);
}

.item-faq.activo {
    border-color: rgba(30, 144, 255, 0.3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.pregunta-faq {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    background: transparent;
    border: none;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pregunta-faq:hover {
    background: rgba(30, 144, 255, 0.05);
}

.texto-pregunta {
    flex: 1;
    padding-right: 20px;
}

.icono-pregunta {
    color: #1e90ff;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.icono-pregunta.rotado {
    transform: rotate(180deg);
}

.respuesta-faq {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.item-faq.activo .respuesta-faq {
    padding: 0 30px 25px;
    max-height: 500px;
}

.respuesta-faq p {
    color: #b0b0b0;
    line-height: 1.7;
    padding-bottom: 25px;
    font-size: 1.05rem;
}

/* CTA de FAQ */
.cta-faq {
    text-align: center;
    position: relative;
    z-index: 2;
}

.texto-cta-faq {
    color: #b0b0b0;
    font-size: 1.1rem;
}

.enlace-cta-faq {
    color: #1e90ff;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.enlace-cta-faq:hover {
    text-decoration: underline;
}

.enlace-cta-faq::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #1e90ff;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.enlace-cta-faq:hover::after {
    transform: scaleX(1);
}

/* =========================================== */
/* ANIMACIONES ESPECÍFICAS PARA SERVICIOS */
/* =========================================== */

@keyframes flotar-servicios {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(5deg);
    }
    50% {
        transform: translateY(-10px) rotate(-3deg);
    }
    75% {
        transform: translateY(-20px) rotate(2deg);
    }
}

@keyframes rotar-hexagono {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes onda-ventaja {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.7;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

@keyframes onda-flotante {
    0% {
        width: 0;
        height: 0;
        opacity: 0.7;
    }
    100% {
        width: 100px;
        height: 100px;
        opacity: 0;
    }
}

@keyframes latido {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
}

@keyframes subirBajar {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

@keyframes aparecer {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* =========================================== */
/* RESPONSIVE DESIGN PARA SERVICIOS */
/* =========================================== */

@media (max-width: 1200px) {
    .grid-pie-pagina {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .grid-ventajas {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contenido-hero {
        gap: 60px;
    }
    
    .contenedor-ilustracion-hero {
        width: 400px;
        height: 400px;
    }
}

@media (max-width: 992px) {
    .contenido-hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }
    
    .contenido-textual-hero {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .estadisticas-hero {
        justify-content: center;
    }
    
    .tarjeta-estadistica {
        align-items: center;
        text-align: center;
    }
    
    .contenedor-botones-hero {
        justify-content: center;
    }
    
    .servicio-detalle-contenedor {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }
    
    .servicio-info-columna {
        max-width: 100%;
    }
    
    .caracteristicas-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .caracteristica-item-detalle {
        text-align: left;
    }
    
    .linea-tiempo-proceso-servicios::before {
        left: 30px;
    }
    
    .numero-paso-servicios {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .contenedor-cta-proceso-servicios {
        padding: 50px 30px;
    }
    
    .titulo-cta-final {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .navegacion-servicios {
        flex-direction: column;
        align-items: stretch;
    }
    
    .boton-navegacion-servicio {
        justify-content: center;
    }
    
    .elemento-flotante-servicio {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
    
    .texto-elemento-flotante {
        font-size: 11px;
    }
    
    .tarjeta-centro-hero-servicios {
        width: 220px;
        height: 220px;
    }
    
    .animacion-hexagonal-servicios {
        width: 100px;
        height: 100px;
    }
    
    .hexagono-externo {
        width: 100px;
        height: 100px;
    }
    
    .hexagono-medio {
        width: 70px;
        height: 70px;
    }
    
    .hexagono-interno {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .servicio-detalle-contenedor {
        padding: 40px 25px;
    }
    
    .servicio-titulo-detalle {
        font-size: 2rem;
    }
    
    .servicio-icono-grande {
        font-size: 60px;
    }
    
    .grid-ventajas {
        grid-template-columns: 1fr;
    }
    
    .linea-tiempo-proceso-servicios::before {
        display: none;
    }
    
    .paso-proceso-servicios {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .icono-paso-servicios {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        margin-top: 15px;
    }
    
    .botones-cta-proceso-servicios {
        flex-direction: column;
        align-items: center;
    }
    
    .botones-cta-proceso-servicios .boton {
        width: 100%;
        max-width: 300px;
    }
    
    .titulo-cta-final {
        font-size: 2rem;
    }
    
    .botones-cta-final {
        flex-direction: column;
        align-items: center;
    }
    
    .botones-cta-final .boton {
        width: 100%;
        max-width: 300px;
    }
    
    .grid-pie-pagina {
        grid-template-columns: 1fr;
    }
    
    .pie-inferior {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .enlaces-legales {
        flex-wrap: wrap;
        justify-content: center;
    }
    
}