/* Estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-fondo: #121212;
    --color-texto: #f1f1f1;
    --color-acento: #c053d3;
    --color-secundario: #2e8bc0;
    --fuente-principal: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    font-family: var(--fuente-principal);
    background-color: var(--color-fondo);
    color: var(--color-texto);
    overflow-x: hidden;
}

/* Navegación superior */
.topNavigator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 7%;
    position: absolute;
    width: 100%;
    z-index: 10;
}

.logoWrapper {
    flex: 1;
}

.empresaNombre {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    background: linear-gradient(120deg, var(--color-acento), var(--color-secundario));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.menuNavegacion {
    flex: 2;
}

.enlacesMenu {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 40px;
}

.enlacesMenu a {
    text-decoration: none;
    color: var(--color-texto);
    font-size: 1.05rem;
    font-weight: 500;
    position: relative;
    transition: color 0.3s;
}

.enlacesMenu a:hover {
    color: var(--color-acento);
}

.enlaceActivo {
    color: var(--color-acento) !important;
}

.enlaceActivo::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40%;
    height: 3px;
    background-color: var(--color-acento);
    border-radius: 8px;
}

.contactoRapido {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.botonConsulta {
    text-decoration: none;
    color: var(--color-fondo);
    background-color: var(--color-texto);
    padding: 12px 24px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.botonConsulta:hover {
    background-color: var(--color-acento);
    color: var(--color-texto);
    transform: translateY(-3px);
}

/* Pantalla inicial */
.pantallaInicial {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 150px 7% 50px;
}

.contenidoPrincipal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    height: calc(100vh - 230px);
    min-height: 550px;
}

.textoImpactante {
    max-width: 600px;
}

.tituloDestacado {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 800;
}

.resaltadoTexto {
    color: var(--color-acento);
    position: relative;
    display: inline-block;
}

.resaltadoTexto::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 12px;
    background-color: var(--color-acento);
    opacity: 0.15;
    left: 0;
    bottom: 5px;
    z-index: -1;
}

.descripcionCurso {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 35px;
    color: rgba(241, 241, 241, 0.8);
}

.detallesClave {
    margin-bottom: 40px;
}

.tablaDatos {
    width: 100%;
    border-collapse: separate;
    border-spacing: 8px;
}

.datoResaltado {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-acento);
    padding-bottom: 10px;
}

.textoExplicativo {
    font-size: 0.9rem;
    color: rgba(241, 241, 241, 0.7);
}

.opcionesCurso {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.botonPrimario {
    text-decoration: none;
    background-color: var(--color-acento);
    color: var(--color-texto);
    padding: 16px 32px;
    font-weight: 600;
    transition: all 0.3s;
}

.botonPrimario:hover {
    transform: translateY(-5px);
    background-color: #a845b9;
}

.botonSecundario {
    text-decoration: none;
    background-color: transparent;
    color: var(--color-texto);
    padding: 16px 32px;
    font-weight: 600;
    position: relative;
    transition: all 0.3s;
}

.botonSecundario::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(241, 241, 241, 0.3);
    left: 0;
    top: 0;
    transition: all 0.3s;
}

.botonSecundario:hover {
    color: var(--color-acento);
}

.botonSecundario:hover::before {
    border-color: var(--color-acento);
    transform: scale(1.05);
}

.visualContenido {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.imagenPrincipal {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    transform: perspective(900px) rotateY(-8deg);
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.5));
    transition: transform 0.5s ease;
}

.visualContenido:hover .imagenPrincipal {
    transform: perspective(900px) rotateY(-2deg);
}

.indicadoresConfianza {
    margin-top: auto;
    width: 100%;
}

.marcasColaboradoras {
    display: flex;
    justify-content: space-between;
    list-style: none;
    padding: 40px 0;
    flex-wrap: wrap;
}

.marcaItem {
    font-size: 1rem;
    color: rgba(241, 241, 241, 0.6);
    position: relative;
    transition: color 0.3s;
}

.marcaItem:hover {
    color: var(--color-texto);
}

/* Responsive */
@media (max-width: 1200px) {
    .tituloDestacado {
        font-size: 3.5rem;
    }
    
    .datoResaltado {
        font-size: 2.2rem;
    }
}

@media (max-width: 992px) {
    .topNavigator {
        padding: 25px 5%;
    }
    
    .contenidoPrincipal {
        gap: 30px;
    }
    
    .tituloDestacado {
        font-size: 3rem;
    }
    
    .enlacesMenu {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .topNavigator {
        padding: 20px 5%;
    }
    
    .menuNavegacion {
        display: none;
    }
    
    .contenidoPrincipal {
        grid-template-columns: 1fr;
        min-height: auto;
        height: auto;
    }
    
    .visualContenido {
        order: -1;
        margin-bottom: 40px;
    }
    
    .pantallaInicial {
        padding-top: 100px;
        min-height: auto;
    }
    
    .textoImpactante {
        text-align: center;
        margin: 0 auto;
    }
    
    .opcionesCurso {
        justify-content: center;
    }
    
    .marcasColaboradoras {
        justify-content: center;
        gap: 30px;
    }
    
    .marcaItem {
        flex-basis: 40%;
        text-align: center;
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .tituloDestacado {
        font-size: 2.5rem;
    }
    
    .datoResaltado {
        font-size: 1.8rem;
    }
    
    .opcionesCurso {
        flex-direction: column;
        gap: 15px;
    }
    
    .botonPrimario, .botonSecundario {
        width: 100%;
        text-align: center;
    }
    
    .marcaItem {
        flex-basis: 100%;
    }
    
    .contactoRapido {
        display: none;
    }
}










/* Sección de Objetivos del curso */
.objetivosClave {
    padding: 120px 7% 100px;
    background-color: var(--color-fondo);
    position: relative;
    overflow: hidden;
}

.objetivosClave::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(192, 83, 211, 0.08) 0%, rgba(46, 139, 192, 0.05) 50%, rgba(18, 18, 18, 0) 70%);
    top: -400px;
    right: -200px;
    border-radius: 50%;
    z-index: 0;
}

.introduccionMetas {
    max-width: 800px;
    margin: 0 auto 80px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.tituloSeccion {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 800;
}

.textoResaltado {
    color: var(--color-acento);
    position: relative;
    display: inline-block;
}

.textoResaltado::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 12px;
    background-color: var(--color-acento);
    opacity: 0.15;
    left: 0;
    bottom: 5px;
    z-index: -1;
}

.descripcionSeccion {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(241, 241, 241, 0.8);
    max-width: 700px;
    margin: 0 auto;
}

.contenedorCompetencias {
    display: flex;
    flex-direction: column;
    gap: 80px;
    position: relative;
    z-index: 1;
    margin-bottom: 100px;
}

.competenciaItem {
    display: flex;
    gap: 30px;
    max-width: 1000px;
    position: relative;
}

.competenciaItem.izquierda {
    align-self: flex-start;
}

.competenciaItem.derecha {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.numeracionCompetencia {
    font-size: 8rem;
    font-weight: 900;
    color: rgba(241, 241, 241, 0.05);
    line-height: 1;
    align-self: flex-start;
    transition: color 0.4s ease;
}

.competenciaItem:hover .numeracionCompetencia {
    color: rgba(192, 83, 211, 0.12);
}

.detalleCompetencia {
    flex: 1;
    max-width: 600px;
}

.tituloCompetencia {
    font-size: 1.8rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.competenciaItem.izquierda .tituloCompetencia::after,
.competenciaItem.derecha .tituloCompetencia::after {
    content: '';
    position: absolute;
    height: 3px;
    background-color: var(--color-acento);
    bottom: -8px;
    border-radius: 3px;
}

.competenciaItem.izquierda .tituloCompetencia::after {
    left: 0;
    width: 40%;
}

.competenciaItem.derecha .tituloCompetencia::after {
    right: 0;
    width: 40%;
}

.explicacionCompetencia {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(241, 241, 241, 0.75);
    margin-bottom: 25px;
}

.tecnologiasMencionadas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tecnologiaEtiqueta {
    font-size: 0.85rem;
    color: rgba(241, 241, 241, 0.9);
    padding: 5px 12px;
    background-color: rgba(241, 241, 241, 0.08);
    border-radius: 4px;
    transition: all 0.3s;
}

.tecnologiaEtiqueta:hover {
    background-color: rgba(192, 83, 211, 0.2);
    color: var(--color-acento);
    transform: translateY(-2px);
}

.metodologiaAprendizaje {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 80px;
    position: relative;
    z-index: 1;
}

.casosPracticos, .proyectoFinal, .mentorias {
    padding: 35px;
    background-color: rgba(241, 241, 241, 0.03);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.casosPracticos:hover, .proyectoFinal:hover, .mentorias:hover {
    transform: translateY(-10px);
    background-color: rgba(241, 241, 241, 0.05);
}

.estadisticaAprendizaje {
    font-size: 1.3rem;
    line-height: 1.5;
    font-weight: 500;
    text-align: center;
}

.numeroDestacado {
    color: var(--color-acento);
    font-size: 1.8rem;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 1200px) {
    .tituloSeccion {
        font-size: 3rem;
    }
    
    .numeracionCompetencia {
        font-size: 7rem;
    }
}

@media (max-width: 992px) {
    .objetivosClave {
        padding: 100px 5% 80px;
    }
    
    .numeracionCompetencia {
        font-size: 6rem;
    }
    
    .tituloCompetencia {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .introduccionMetas {
        margin-bottom: 60px;
    }
    
    .tituloSeccion {
        font-size: 2.5rem;
    }
    
    .competenciaItem {
        flex-direction: column;
        gap: 10px;
        align-self: center !important;
    }
    
    .competenciaItem.izquierda, 
    .competenciaItem.derecha {
        align-self: center;
    }
    
    .competenciaItem.derecha {
        flex-direction: column;
    }
    
    .numeracionCompetencia {
        font-size: 5rem;
    }
    
    .metodologiaAprendizaje {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .competenciaItem.izquierda .tituloCompetencia::after,
    .competenciaItem.derecha .tituloCompetencia::after {
        left: 0;
        right: auto;
    }
}

@media (max-width: 576px) {
    .objetivosClave {
        padding: 80px 5% 60px;
    }
    
    .tituloSeccion {
        font-size: 2.2rem;
    }
    
    .descripcionSeccion {
        font-size: 1.1rem;
    }
    
    .numeracionCompetencia {
        font-size: 4rem;
    }
    
    .tituloCompetencia {
        font-size: 1.4rem;
    }
    
    .contenedorCompetencias {
        gap: 60px;
        margin-bottom: 60px;
    }
    
    .estadisticaAprendizaje {
        font-size: 1.1rem;
    }
    
    .numeroDestacado {
        font-size: 1.5rem;
    }
}











/* Sección de Perfiles Ideales */
.perfilesIdeal {
    padding: 120px 7% 100px;
    background-color: var(--color-fondo);
    position: relative;
    overflow: hidden;
}

.perfilesIdeal::after {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(46, 139, 192, 0.08) 0%, rgba(192, 83, 211, 0.05) 50%, rgba(18, 18, 18, 0) 70%);
    bottom: -400px;
    left: -200px;
    border-radius: 50%;
    z-index: 0;
}

.encabezadoPerfiles {
    max-width: 800px;
    margin: 0 auto 80px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.tituloPerfil {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 800;
}

.textoElevado {
    color: var(--color-acento);
    position: relative;
    display: inline-block;
}

.textoElevado::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 12px;
    background-color: var(--color-acento);
    opacity: 0.15;
    left: 0;
    bottom: 5px;
    z-index: -1;
}

.descripcionPerfiles {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(241, 241, 241, 0.8);
    max-width: 700px;
    margin: 0 auto;
}

.galeríaPerfiles {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contenedorSeleccion {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.indicadorSeleccion {
    padding: 14px 28px;
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(241, 241, 241, 0.7);
    background-color: rgba(241, 241, 241, 0.03);
    position: relative;
    cursor: pointer;
    transition: all 0.3s;
}

.indicadorSeleccion:hover {
    color: rgba(241, 241, 241, 0.9);
    background-color: rgba(241, 241, 241, 0.05);
}

.indicadorSeleccion.activo {
    color: var(--color-texto);
    background-color: rgba(192, 83, 211, 0.15);
}

.indicadorSeleccion.activo::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background-color: var(--color-acento);
    clip-path: polygon(50% 100%, 0 0, 100% 0);
}

.visualizadorPerfiles {
    position: relative;
    min-height: 500px;
}

.perfilDetalles {
    display: none;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    position: relative;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.perfilDetalles.visible {
    display: grid;
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.perfilIlustracion {
    position: relative;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.formaGeometrica {
    position: absolute;
    opacity: 0.8;
    transition: all 0.5s ease;
}

/* Formas para Analistas */
.formaGeometrica.uno {
    width: 180px;
    height: 180px;
    background-color: rgba(192, 83, 211, 0.1);
    border-radius: 50%;
    top: 20%;
    left: 30%;
}

.formaGeometrica.dos {
    width: 150px;
    height: 150px;
    background-color: rgba(46, 139, 192, 0.1);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    top: 40%;
    left: 20%;
}

.formaGeometrica.tres {
    width: 100px;
    height: 100px;
    background-color: rgba(192, 83, 211, 0.15);
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
    top: 35%;
    left: 50%;
}

/* Formas para Gerentes */
.formaGeometrica.cuatro {
    width: 160px;
    height: 160px;
    background-color: rgba(46, 139, 192, 0.15);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    top: 30%;
    left: 25%;
}

.formaGeometrica.cinco {
    width: 140px;
    height: 140px;
    background-color: rgba(192, 83, 211, 0.12);
    clip-path: polygon(0% 0%, 100% 0%, 100% 75%, 75% 100%, 0% 100%);
    top: 45%;
    left: 45%;
}

.formaGeometrica.seis {
    width: 90px;
    height: 90px;
    background-color: rgba(46, 139, 192, 0.2);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: 20%;
    left: 60%;
}

/* Formas para Emprendedores */
.formaGeometrica.siete {
    width: 200px;
    height: 120px;
    background-color: rgba(192, 83, 211, 0.12);
    border-radius: 30% 70% 70% 30% / 30% 50% 50% 70%;
    top: 30%;
    left: 20%;
}

.formaGeometrica.ocho {
    width: 100px;
    height: 100px;
    background-color: rgba(46, 139, 192, 0.15);
    clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
    top: 45%;
    left: 50%;
}

.formaGeometrica.nueve {
    width: 120px;
    height: 120px;
    background-color: rgba(192, 83, 211, 0.1);
    clip-path: polygon(0% 20%, 30% 0%, 70% 0%, 100% 20%, 100% 80%, 70% 100%, 30% 100%, 0% 80%);
    top: 20%;
    left: 40%;
}

.perfilDescripcion {
    padding: 20px 0;
}

.nombrePerfil {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--color-texto);
    font-weight: 700;
}

.explicacionPerfil {
    font-size: 1.15rem;
    line-height: 1.6;
    color: rgba(241, 241, 241, 0.8);
    margin-bottom: 30px;
}

.caracteristicasPerfil {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.caracteristica {
    background-color: rgba(241, 241, 241, 0.03);
    padding: 25px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.caracteristica:hover {
    transform: translateY(-5px);
    background-color: rgba(241, 241, 241, 0.05);
}

.caracteristicaTitulo {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--color-acento);
}

.caracteristicaDetalle {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(241, 241, 241, 0.75);
}

.testimonioPerfil {
    grid-column: span 2;
    padding: 30px;
    background-color: rgba(192, 83, 211, 0.08);
    margin-top: 10px;
}

.citaTestimonio {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(241, 241, 241, 0.9);
    font-style: italic;
    margin-bottom: 15px;
}

.autorTestimonio {
    font-size: 0.9rem;
    color: var(--color-acento);
    font-weight: 600;
}

.indicadoresCompatibilidad {
    max-width: 800px;
    margin: 80px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.indicadorNivel {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.medidorNivel {
    height: 8px;
    background-color: rgba(241, 241, 241, 0.1);
    position: relative;
    overflow: hidden;
}

.nivelRelleno {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--color-acento) 0%, var(--color-secundario) 100%);
}

.textoNivel {
    font-size: 0.95rem;
    color: rgba(241, 241, 241, 0.8);
    text-align: center;
}

/* Responsive */
@media (max-width: 1200px) {
    .tituloPerfil {
        font-size: 3rem;
    }
    
    .nombrePerfil {
        font-size: 2rem;
    }
}

@media (max-width: 992px) {
    .perfilesIdeal {
        padding: 100px 5% 80px;
    }
    
    .contenedorSeleccion {
        flex-wrap: wrap;
    }
    
    .indicadorSeleccion {
        flex: 1;
        min-width: 180px;
        text-align: center;
    }
    
    .perfilDetalles {
        grid-template-columns: 1fr;
    }
    
    .perfilIlustracion {
        display: none;
    }
    
    .indicadoresCompatibilidad {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .encabezadoPerfiles {
        margin-bottom: 60px;
    }
    
    .tituloPerfil {
        font-size: 2.5rem;
    }
    
    .indicadorSeleccion {
        width: 100%;
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    .nombrePerfil {
        font-size: 1.8rem;
    }
    
    .caracteristicasPerfil {
        grid-template-columns: 1fr;
    }
    
    .testimonioPerfil {
        grid-column: span 1;
    }
}

@media (max-width: 576px) {
    .perfilesIdeal {
        padding: 80px 5% 60px;
    }
    
    .tituloPerfil {
        font-size: 2.2rem;
    }
    
    .descripcionPerfiles {
        font-size: 1.1rem;
    }
    
    .nombrePerfil {
        font-size: 1.6rem;
    }
    
    .explicacionPerfil {
        font-size: 1rem;
    }
    
    .citaTestimonio {
        font-size: 1rem;
    }
}











/* Sección del Programa Formativo */
.programaFormativo {
    padding: 120px 7% 100px;
    background-color: var(--color-fondo);
    position: relative;
    overflow: hidden;
}

.programaFormativo::before {
    content: '';
    position: absolute;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(192, 83, 211, 0.06) 0%, rgba(46, 139, 192, 0.04) 40%, rgba(18, 18, 18, 0) 70%);
    top: -300px;
    left: -200px;
    border-radius: 50%;
    z-index: 0;
}

.encabezadoPrograma {
    max-width: 850px;
    margin: 0 auto 80px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.tituloPrograma {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 800;
}

.textoDestacadoPrograma {
    color: var(--color-acento);
    position: relative;
    display: inline-block;
}

.textoDestacadoPrograma::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 12px;
    background-color: var(--color-acento);
    opacity: 0.15;
    left: 0;
    bottom: 5px;
    z-index: -1;
}

.descripcionPrograma {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(241, 241, 241, 0.8);
    max-width: 750px;
    margin: 0 auto;
}

.contenedorModulos {
    max-width: 1000px;
    margin: 0 auto 80px;
    position: relative;
    z-index: 1;
}

.moduloDetalle {
    margin-bottom: 25px;
    background-color: rgba(241, 241, 241, 0.03);
    transition: background-color 0.3s ease;
}

.moduloDetalle:hover {
    background-color: rgba(241, 241, 241, 0.05);
}

.moduloDetalle[open] {
    margin-bottom: 40px;
    background-color: rgba(241, 241, 241, 0.05);
}

.tituloModulo {
    list-style: none;
    cursor: pointer;
    padding: 25px 30px;
    position: relative;
}

.tituloModulo::-webkit-details-marker {
    display: none;
}

.encabezadoModulo {
    display: grid;
    grid-template-columns: 120px 1fr 150px;
    align-items: center;
    gap: 20px;
}

.identificadorModulo {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-acento);
    letter-spacing: 1px;
}

.nombreModulo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-texto);
}

.duracionModulo {
    font-size: 0.95rem;
    text-align: right;
    color: rgba(241, 241, 241, 0.7);
}

.tituloModulo::after {
    content: '+';
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: var(--color-acento);
    transition: transform 0.3s ease;
}

.moduloDetalle[open] .tituloModulo::after {
    content: '−';
    transform: translateY(-50%);
}

.contenidoModulo {
    padding: 0 30px 30px;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.descripcionModulo {
    margin-bottom: 30px;
}

.parrafoModulo {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(241, 241, 241, 0.8);
}

.tablaContenidos {
    margin-bottom: 30px;
    overflow-x: auto;
}

.filaTabla {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.encabezadoTabla {
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--color-acento);
    font-size: 1.05rem;
}

.celdaTabla {
    padding: 10px 0;
}

.listaContenido {
    list-style: none;
}

.listaContenido li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: rgba(241, 241, 241, 0.75);
    line-height: 1.5;
}

.listaContenido li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background-color: var(--color-acento);
    opacity: 0.7;
    border-radius: 50%;
}

.resultadosAprendizaje {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background-color: rgba(192, 83, 211, 0.08);
}

.iconoResultado {
    flex-shrink: 0;
}

.circuloIcono {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--color-acento) 0%, var(--color-secundario) 100%);
    border-radius: 50%;
    position: relative;
}

.circuloIcono::before {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    border-top: 2px solid var(--color-texto);
    border-right: 2px solid var(--color-texto);
    top: 50%;
    left: 50%;
    transform: translate(-60%, -50%) rotate(45deg);
}

.textoResultado {
    font-size: 1.05rem;
    line-height: 1.6;
    color: rgba(241, 241, 241, 0.9);
}

.infoAdicionalPrograma {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.formatoCurso, .evaluacionProgreso, .recursosDisponibles {
    padding: 30px;
    background-color: rgba(241, 241, 241, 0.03);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.formatoCurso:hover, .evaluacionProgreso:hover, .recursosDisponibles:hover {
    transform: translateY(-10px);
    background-color: rgba(241, 241, 241, 0.05);
}

.tituloInfoAdicional {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--color-texto);
    font-weight: 600;
}

.listaInfoAdicional {
    list-style: none;
}

.itemInfoAdicional {
    position: relative;
    padding-left: 20px;
    margin-bottom: 15px;
    font-size: 1rem;
    color: rgba(241, 241, 241, 0.8);
    line-height: 1.4;
}

.itemInfoAdicional::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background-color: var(--color-secundario);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

/* Responsive */
@media (max-width: 1200px) {
    .tituloPrograma {
        font-size: 3rem;
    }
    
    .encabezadoModulo {
        grid-template-columns: 100px 1fr 120px;
    }
    
    .filaTabla {
        gap: 15px;
    }
}

@media (max-width: 992px) {
    .programaFormativo {
        padding: 100px 5% 80px;
    }
    
    .nombreModulo {
        font-size: 1.3rem;
    }
    
    .infoAdicionalPrograma {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .filaTabla {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .encabezadoTabla {
        display: none;
    }
    
    .celdaTabla {
        position: relative;
    }
    
    .celdaTabla:nth-child(1)::before {
        content: 'Temas principales';
        display: block;
        font-weight: 600;
        color: var(--color-acento);
        margin-bottom: 15px;
    }
    
    .celdaTabla:nth-child(2)::before {
        content: 'Competencias desarrolladas';
        display: block;
        font-weight: 600;
        color: var(--color-acento);
        margin-bottom: 15px;
    }
    
    .celdaTabla:nth-child(3)::before {
        content: 'Herramientas';
        display: block;
        font-weight: 600;
        color: var(--color-acento);
        margin-bottom: 15px;
    }
}

@media (max-width: 768px) {
    .encabezadoPrograma {
        margin-bottom: 60px;
    }
    
    .tituloPrograma {
        font-size: 2.5rem;
    }
    
    .encabezadoModulo {
        grid-template-columns: 1fr;
        gap: 5px;
    }
    
    .nombreModulo {
        font-size: 1.2rem;
    }
    
    .duracionModulo {
        text-align: left;
    }
    
    .tituloModulo {
        padding: 20px;
    }
    
    .tituloModulo::after {
        right: 20px;
    }
    
    .contenidoModulo {
        padding: 0 20px 20px;
    }
    
    .resultadosAprendizaje {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .programaFormativo {
        padding: 80px 5% 60px;
    }
    
    .tituloPrograma {
        font-size: 2.2rem;
    }
    
    .descripcionPrograma {
        font-size: 1.1rem;
    }
    
    .parrafoModulo {
        font-size: 1rem;
    }
    
    .textoResultado {
        font-size: 1rem;
    }
}











/* Sección de Ventajas Exclusivas */
.ventajasExclusivas {
    padding: 120px 7% 100px;
    background-color: var(--color-fondo);
    position: relative;
    overflow: hidden;
}

.ventajasExclusivas::after {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(192, 83, 211, 0.07) 0%, rgba(46, 139, 192, 0.05) 40%, rgba(18, 18, 18, 0) 70%);
    bottom: -200px;
    right: -200px;
    border-radius: 50%;
    z-index: 0;
}

.encabezadoVentajas {
    max-width: 800px;
    margin: 0 auto 80px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.tituloVentajas {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 800;
}

.textoResaltadoVentajas {
    color: var(--color-acento);
    position: relative;
    display: inline-block;
}

.textoResaltadoVentajas::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 12px;
    background-color: var(--color-acento);
    opacity: 0.15;
    left: 0;
    bottom: 5px;
    z-index: -1;
}

.descripcionVentajas {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(241, 241, 241, 0.8);
    max-width: 700px;
    margin: 0 auto;
}

.contenedorBeneficios {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 70px;
    position: relative;
    z-index: 1;
}

.tarjetaVentaja {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 30px;
    position: relative;
}

.tarjetaVentaja::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-acento), rgba(192, 83, 211, 0));
    top: -25px;
    left: 0;
}

.tarjetaVentaja.primaria::before {
    background: linear-gradient(90deg, var(--color-acento), rgba(192, 83, 211, 0));
}

.tarjetaVentaja.secundaria::before {
    background: linear-gradient(90deg, var(--color-secundario), rgba(46, 139, 192, 0));
    width: 150px;
}

.tarjetaVentaja.terciaria::before {
    background: linear-gradient(90deg, var(--color-acento), var(--color-secundario), rgba(18, 18, 18, 0));
    width: 250px;
}

.marcadorNumerico {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    color: rgba(241, 241, 241, 0.05);
    grid-row: span 2;
    place-self: start;
}

.tarjetaVentaja.primaria .marcadorNumerico {
    color: rgba(192, 83, 211, 0.15);
}

.tarjetaVentaja.secundaria .marcadorNumerico {
    color: rgba(46, 139, 192, 0.15);
}

.tarjetaVentaja.terciaria .marcadorNumerico {
    background: linear-gradient(135deg, rgba(192, 83, 211, 0.15), rgba(46, 139, 192, 0.15));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.contenidoVentaja {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.encabezadoVentaja {
    margin-bottom: 10px;
}

.tituloCaracteristica {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-texto);
}

.tarjetaVentaja.primaria .tituloCaracteristica {
    color: var(--color-acento);
}

.tarjetaVentaja.secundaria .tituloCaracteristica {
    color: var(--color-secundario);
}

.detallesVentaja {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.descripcionCaracteristica {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(241, 241, 241, 0.85);
}

.especificacionesVentaja {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.especificacion {
    padding: 20px;
    background-color: rgba(241, 241, 241, 0.03);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.especificacion:hover {
    transform: translateY(-5px);
    background-color: rgba(241, 241, 241, 0.05);
}

.tarjetaVentaja.primaria .especificacion:hover {
    background-color: rgba(192, 83, 211, 0.08);
}

.tarjetaVentaja.secundaria .especificacion:hover {
    background-color: rgba(46, 139, 192, 0.08);
}

.tarjetaVentaja.terciaria .especificacion:hover {
    background-color: rgba(241, 241, 241, 0.08);
}

.etiquetaEspecificacion {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--color-acento);
}

.tarjetaVentaja.secundaria .etiquetaEspecificacion {
    color: var(--color-secundario);
}

.valorEspecificacion {
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(241, 241, 241, 0.8);
}

.testimonioVentaja {
    margin-top: 10px;
    padding: 25px;
    background-color: rgba(192, 83, 211, 0.05);
}

.tarjetaVentaja.secundaria .testimonioVentaja {
    background-color: rgba(46, 139, 192, 0.05);
}

.tarjetaVentaja.terciaria .testimonioVentaja {
    background: linear-gradient(135deg, rgba(192, 83, 211, 0.05), rgba(46, 139, 192, 0.05));
}

.citaVentaja {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(241, 241, 241, 0.9);
    font-style: italic;
    margin-bottom: 15px;
}

.autorVentaja {
    font-size: 0.9rem;
    color: var(--color-acento);
    font-weight: 600;
}

.tarjetaVentaja.secundaria .autorVentaja {
    color: var(--color-secundario);
}

.perfilesExpertos {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.perfilCurador {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background-color: rgba(46, 139, 192, 0.08);
    transition: transform 0.3s ease;
}

.perfilCurador:hover {
    transform: translateX(10px);
}

.inicialesCurador {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(46, 139, 192, 0.2);
    color: var(--color-texto);
    font-size: 1.1rem;
    font-weight: 600;
}

.infoCurador {
    display: flex;
    flex-direction: column;
}

.nombreCurador {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-texto);
}

.cargoCurador {
    font-size: 0.85rem;
    color: rgba(241, 241, 241, 0.7);
}

.estadisticasImpacto {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.datoClave {
    padding: 20px;
    background-color: rgba(241, 241, 241, 0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
}

.datoClave:hover {
    transform: translateY(-8px);
}

.valorDato {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--color-acento), var(--color-secundario));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.explicacionDato {
    font-size: 0.9rem;
    line-height: 1.4;
    color: rgba(241, 241, 241, 0.8);
}

.convocatoria {
    max-width: 1000px;
    margin: 80px auto 0;
    padding: 40px;
    background-color: rgba(241, 241, 241, 0.03);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.detallesConvocatoria {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.fechaInicio, .plazasDisponibles, .procesoAdmision {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.etiquetaFecha, .etiquetaPlazas, .etiquetaProceso {
    font-size: 0.9rem;
    color: var(--color-acento);
    font-weight: 600;
}

.valorFecha, .valorPlazas, .valorProceso {
    font-size: 1.1rem;
    color: var(--color-texto);
    font-weight: 500;
}

.botonContacto {
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--color-acento), var(--color-secundario));
    color: var(--color-texto);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.botonContacto:hover {
    transform: translateY(-5px);
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 1200px) {
    .tituloVentajas {
        font-size: 3rem;
    }
    
    .tituloCaracteristica {
        font-size: 1.8rem;
    }
    
    .especificacionesVentaja {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .estadisticasImpacto {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .ventajasExclusivas {
        padding: 100px 5% 80px;
    }
    
    .marcadorNumerico {
        font-size: 4rem;
    }
    
    .especificacionesVentaja {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .estadisticasImpacto {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .convocatoria {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .encabezadoVentajas {
        margin-bottom: 60px;
    }
    
    .tituloVentajas {
        font-size: 2.5rem;
    }
    
    .tarjetaVentaja {
        grid-template-columns: 1fr;
    }
    
    .marcadorNumerico {
        font-size: 3.5rem;
        margin-bottom: 10px;
    }
    
    .especificacionesVentaja {
        grid-template-columns: 1fr;
    }
    
    .estadisticasImpacto {
        grid-template-columns: 1fr;
    }
    
    .detallesConvocatoria {
        flex-direction: column;
        gap: 20px;
    }
    
    .accionesConvocatoria {
        width: 100%;
    }
    
    .botonContacto {
        display: block;
        text-align: center;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .ventajasExclusivas {
        padding: 80px 5% 60px;
    }
    
    .tituloVentajas {
        font-size: 2.2rem;
    }
    
    .descripcionVentajas {
        font-size: 1.1rem;
    }
    
    .tituloCaracteristica {
        font-size: 1.6rem;
    }
    
    .descripcionCaracteristica {
        font-size: 1rem;
    }
    
    .citaVentaja {
        font-size: 1rem;
    }
}











/* Pie de página */
.piePagina {
    background-color: var(--color-fondo);
    position: relative;
    padding: 80px 7% 40px;
    overflow: hidden;
}

.piePagina::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(192, 83, 211, 0.04) 0%, rgba(46, 139, 192, 0.03) 40%, rgba(18, 18, 18, 0) 70%);
    top: -300px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    z-index: 0;
}

.contenedorPie {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.seccionContacto {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 50px;
}

.identidadMarca {
    max-width: 400px;
}

.nombreEmpresa {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(120deg, var(--color-acento), var(--color-secundario));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.descripcionEmpresa {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(241, 241, 241, 0.7);
}

.datosContacto {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.correoElectronico {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.etiquetaCorreo {
    font-size: 0.9rem;
    color: var(--color-acento);
    font-weight: 600;
}

.enlaceCorreo {
    font-size: 1.2rem;
    color: var(--color-texto);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.enlaceCorreo:hover {
    color: var(--color-acento);
}

.enlacesPoliticas {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.enlacePolitica {
    font-size: 0.95rem;
    color: rgba(241, 241, 241, 0.7);
    text-decoration: none;
    padding-bottom: 5px;
    position: relative;
    transition: color 0.3s;
}

.enlacePolitica::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: var(--color-acento);
    transition: width 0.3s ease;
}

.enlacePolitica:hover {
    color: var(--color-acento);
}

.enlacePolitica:hover::after {
    width: 100%;
}

.separadorPie {
    height: 1px;
    background: linear-gradient(90deg, rgba(192, 83, 211, 0.3), rgba(46, 139, 192, 0.3), rgba(18, 18, 18, 0));
    margin-bottom: 30px;
}

.derechosPie {
    text-align: center;
}

.textoDerechos {
    font-size: 0.9rem;
    color: rgba(241, 241, 241, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .piePagina {
        padding: 60px 5% 30px;
    }
    
    .seccionContacto {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .identidadMarca {
        max-width: 100%;
    }
    
    .nombreEmpresa {
        font-size: 2rem;
    }
    
    .enlacesPoliticas {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .piePagina {
        padding: 50px 5% 25px;
    }
    
    .nombreEmpresa {
        font-size: 1.8rem;
    }
    
    .enlaceCorreo {
        font-size: 1.1rem;
    }
}











/* Menú Superior */
.cabeceraPrincipal {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 30px 7%;
    background-color: transparent;
}

.contenedorCabecera {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.identidadSitio {
    flex: 1;
}

.enlaceLogo {
    text-decoration: none;
}

.nombreSitio {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    background: linear-gradient(120deg, var(--color-acento), var(--color-secundario));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin: 0;
}

.navegacionPrincipal {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.botonContactar {
    text-decoration: none;
    color: var(--color-fondo);
    background-color: var(--color-texto);
    padding: 12px 24px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.botonContactar:hover {
    background-color: var(--color-acento);
    color: var(--color-texto);
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .cabeceraPrincipal {
        padding: 20px 5%;
    }
    
    .nombreSitio {
        font-size: 1.5rem;
    }
    
    .botonContactar {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .cabeceraPrincipal {
        padding: 15px 5%;
    }
    
    .nombreSitio {
        font-size: 1.3rem;
    }
}










/* Sección de Equipo Docente */
.equipoDocente {
    padding: 150px 7% 100px;
    background-color: var(--color-fondo);
    position: relative;
    overflow: hidden;
}

.equipoDocente::before {
    content: '';
    position: absolute;
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(46, 139, 192, 0.07) 0%, rgba(192, 83, 211, 0.05) 40%, rgba(18, 18, 18, 0) 70%);
    top: -300px;
    right: -300px;
    border-radius: 50%;
    z-index: 0;
}

.equipoDocente::after {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(192, 83, 211, 0.06) 0%, rgba(46, 139, 192, 0.04) 50%, rgba(18, 18, 18, 0) 70%);
    bottom: -200px;
    left: -200px;
    border-radius: 50%;
    z-index: 0;
}

.encabezadoEquipo {
    max-width: 850px;
    margin: 0 auto 80px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.tituloEquipo {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 800;
}

.textoDestacadoEquipo {
    color: var(--color-acento);
    position: relative;
    display: inline-block;
}

.textoDestacadoEquipo::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 12px;
    background-color: var(--color-acento);
    opacity: 0.15;
    left: 0;
    bottom: 5px;
    z-index: -1;
}

.descripcionEquipo {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(241, 241, 241, 0.8);
    max-width: 750px;
    margin: 0 auto;
}

.galeriaExpertos {
    max-width: 1100px;
    margin: 0 auto 100px;
    display: flex;
    flex-direction: column;
    gap: 100px;
    position: relative;
    z-index: 1;
}

.tarjetaProfesor {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    position: relative;
}

.tarjetaProfesor::before {
    content: '';
    position: absolute;
    width: 70%;
    height: 1px;
    background: linear-gradient(90deg, rgba(192, 83, 211, 0.5), rgba(46, 139, 192, 0.3), rgba(18, 18, 18, 0));
    bottom: -50px;
    left: 15%;
}

.tarjetaProfesor:last-child::before {
    display: none;
}

.fotoProfesor {
    position: relative;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contenedorImagen {
    width: 100%;
    height: 100%;
    position: relative;
}

.geometriaDecorativa {
    position: absolute;
    transition: all 0.5s ease;
}

/* Formas decorativas para profesores */
.geometriaDecorativa.uno {
    width: 180px;
    height: 180px;
    background-color: rgba(192, 83, 211, 0.15);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: 40px;
    left: 30px;
}

.geometriaDecorativa.dos {
    width: 140px;
    height: 140px;
    background-color: rgba(46, 139, 192, 0.1);
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
    bottom: 60px;
    right: 40px;
}

.geometriaDecorativa.tres {
    width: 160px;
    height: 160px;
    background-color: rgba(46, 139, 192, 0.15);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    top: 50px;
    right: 30px;
}

.geometriaDecorativa.cuatro {
    width: 130px;
    height: 130px;
    background-color: rgba(192, 83, 211, 0.12);
    border-radius: 60% 40% 40% 60% / 60% 30% 70% 40%;
    bottom: 40px;
    left: 50px;
}

.geometriaDecorativa.cinco {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(192, 83, 211, 0.12), rgba(46, 139, 192, 0.08));
    clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
    top: 30px;
    left: 40px;
}

.geometriaDecorativa.seis {
    width: 120px;
    height: 120px;
    background-color: rgba(46, 139, 192, 0.1);
    clip-path: circle(50% at 50% 50%);
    bottom: 50px;
    right: 50px;
}

.tarjetaProfesor:hover .geometriaDecorativa {
    filter: hue-rotate(15deg);
    transform: scale(1.05) translateY(-5px);
}

.inicialesProfesor {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--color-acento), var(--color-secundario));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-texto);
    font-size: 2.5rem;
    font-weight: 700;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.tarjetaProfesor:hover .inicialesProfesor {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.infoProfesor {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.nombreProfesor {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-texto);
    margin-bottom: 5px;
}

.especialidadProfesor {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-acento);
    margin-bottom: 25px;
}

.trayectoriaProfesor {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 20px;
}

.subtituloTrayectoria {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(241, 241, 241, 0.9);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.subtituloTrayectoria::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 2px;
    background-color: var(--color-secundario);
    left: 0;
    bottom: -5px;
    border-radius: 2px;
}

.listaExperiencia {
    list-style: none;
}

.listaExperiencia li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: rgba(241, 241, 241, 0.75);
    line-height: 1.4;
}

.listaExperiencia li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background-color: var(--color-acento);
    opacity: 0.7;
    border-radius: 50%;
}

.enfoquePedagogico {
    padding: 25px;
    background-color: rgba(241, 241, 241, 0.03);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.enfoquePedagogico:hover {
    transform: translateY(-5px);
    background-color: rgba(241, 241, 241, 0.05);
}

.citaProfesor {
    font-size: 1.05rem;
    line-height: 1.6;
    color: rgba(241, 241, 241, 0.85);
    font-style: italic;
}

.fotoProfesor.invertida .geometriaDecorativa {
    filter: hue-rotate(-30deg);
}

/* Sección de Valoraciones de Estudiantes */
.valoracionesEstudiantes {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 0;
    position: relative;
    z-index: 1;
}

.encabezadoValoraciones {
    text-align: center;
    margin-bottom: 50px;
}

.tituloValoraciones {
    font-size: 2.2rem;
    line-height: 1.3;
    font-weight: 700;
}

.textoDestacadoValoraciones {
    color: var(--color-secundario);
    position: relative;
    display: inline-block;
}

.textoDestacadoValoraciones::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 10px;
    background-color: var(--color-secundario);
    opacity: 0.15;
    left: 0;
    bottom: 5px;
    z-index: -1;
}

.contenedorTestimonios {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonioEstudiante {
    padding: 30px;
    background-color: rgba(241, 241, 241, 0.03);
    transition: transform 0.3s ease, background-color 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonioEstudiante:hover {
    transform: translateY(-10px);
    background-color: rgba(241, 241, 241, 0.05);
}

.testimonioEstudiante:nth-child(1):hover {
    background-color: rgba(192, 83, 211, 0.08);
}

.testimonioEstudiante:nth-child(2):hover {
    background-color: rgba(46, 139, 192, 0.08);
}

.testimonioEstudiante:nth-child(3):hover {
    background: linear-gradient(135deg, rgba(192, 83, 211, 0.05), rgba(46, 139, 192, 0.05));
}

.textoTestimonio {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(241, 241, 241, 0.9);
    margin-bottom: 20px;
    flex-grow: 1;
}

.autorTestimonio {
    font-size: 0.9rem;
    color: var(--color-acento);
    font-weight: 600;
    align-self: flex-end;
}

.testimonioEstudiante:nth-child(2) .autorTestimonio {
    color: var(--color-secundario);
}

.testimonioEstudiante:nth-child(3) .autorTestimonio {
    background: linear-gradient(90deg, var(--color-acento), var(--color-secundario));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .tituloEquipo {
        font-size: 3rem;
    }
    
    .tarjetaProfesor {
        grid-template-columns: 250px 1fr;
    }
    
    .nombreProfesor {
        font-size: 2rem;
    }
}

@media (max-width: 992px) {
    .equipoDocente {
        padding: 120px 5% 80px;
    }
    
    .tarjetaProfesor {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .fotoProfesor {
        height: 300px;
    }
    
    .trayectoriaProfesor {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contenedorTestimonios {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .encabezadoEquipo {
        margin-bottom: 60px;
    }
    
    .tituloEquipo {
        font-size: 2.5rem;
    }
    
    .nombreProfesor {
        font-size: 1.8rem;
    }
    
    .especialidadProfesor {
        font-size: 1rem;
    }
    
    .galeriaExpertos {
        gap: 80px;
    }
    
    .tarjetaProfesor::before {
        width: 90%;
        left: 5%;
        bottom: -40px;
    }
    
    .tituloValoraciones {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .equipoDocente {
        padding: 100px 5% 60px;
    }
    
    .tituloEquipo {
        font-size: 2.2rem;
    }
    
    .descripcionEquipo {
        font-size: 1.1rem;
    }
    
    .fotoProfesor {
        height: 250px;
    }
    
    .geometriaDecorativa {
        transform: scale(0.9);
    }
    
    .inicialesProfesor {
        width: 100px;
        height: 100px;
        font-size: 2rem;
    }
    
    .nombreProfesor {
        font-size: 1.6rem;
    }
    
    .citaProfesor {
        font-size: 1rem;
    }
}







/* Sección de Contacto */
.seccionContacto {
    padding: 150px 7% 100px;
    background-color: var(--color-fondo);
    position: relative;
    overflow: hidden;
}

.seccionContacto::before {
    content: '';
    position: absolute;
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(46, 139, 192, 0.07) 0%, rgba(192, 83, 211, 0.05) 40%, rgba(18, 18, 18, 0) 70%);
    top: -300px;
    right: -300px;
    border-radius: 50%;
    z-index: 0;
}

.seccionContacto::after {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(192, 83, 211, 0.06) 0%, rgba(46, 139, 192, 0.04) 50%, rgba(18, 18, 18, 0) 70%);
    bottom: -200px;
    left: -200px;
    border-radius: 50%;
    z-index: 0;
}

.encabezadoContacto {
    max-width: 850px;
    margin: 0 auto 80px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.tituloContacto {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 800;
}

.textoDestacadoContacto {
    color: var(--color-acento);
    position: relative;
    display: inline-block;
}

.textoDestacadoContacto::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 12px;
    background-color: var(--color-acento);
    opacity: 0.15;
    left: 0;
    bottom: 5px;
    z-index: -1;
}

.descripcionContacto {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(241, 241, 241, 0.8);
    max-width: 750px;
    margin: 0 auto;
}

/* Tarjetas de información de contacto */
.datosContactoPrincipal {
    max-width: 1100px;
    margin: 0 auto 80px;
    position: relative;
    z-index: 1;
}

.tarjetasContacto {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.tarjetaInfo {
    padding: 30px;
    background-color: rgba(241, 241, 241, 0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.tarjetaInfo:hover {
    transform: translateY(-10px);
    background-color: rgba(241, 241, 241, 0.05);
}

.tarjetaInfo.ubicacion:hover {
    background-color: rgba(192, 83, 211, 0.08);
}

.tarjetaInfo.telefono:hover {
    background-color: rgba(46, 139, 192, 0.08);
}

.tarjetaInfo.email:hover {
    background: linear-gradient(135deg, rgba(192, 83, 211, 0.05), rgba(46, 139, 192, 0.05));
}

.iconoContacto {
    margin-bottom: 20px;
}

.circuloIcono {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    position: relative;
}

.tarjetaInfo.ubicacion .circuloIcono {
    background-color: rgba(192, 83, 211, 0.2);
}

.tarjetaInfo.telefono .circuloIcono {
    background-color: rgba(46, 139, 192, 0.2);
}

.tarjetaInfo.email .circuloIcono {
    background: linear-gradient(135deg, rgba(192, 83, 211, 0.15), rgba(46, 139, 192, 0.15));
}

.circuloIcono::before,
.circuloIcono::after {
    content: '';
    position: absolute;
}

/* Icono de ubicación */
.tarjetaInfo.ubicacion .circuloIcono::before {
    width: 16px;
    height: 16px;
    background-color: var(--color-acento);
    border-radius: 50%;
    top: 18px;
}

.tarjetaInfo.ubicacion .circuloIcono::after {
    width: 16px;
    height: 16px;
    border: 3px solid var(--color-acento);
    border-radius: 50%;
    border-bottom-left-radius: 0;
    transform: rotate(45deg) translateY(8px);
}

/* Icono de teléfono */
.tarjetaInfo.telefono .circuloIcono::before {
    width: 20px;
    height: 20px;
    border: 3px solid var(--color-secundario);
    border-radius: 4px;
    transform: rotate(-45deg);
}

.tarjetaInfo.telefono .circuloIcono::after {
    width: 10px;
    height: 10px;
    background-color: transparent;
    border: 3px solid var(--color-secundario);
    border-radius: 50%;
    top: 15px;
    left: 25px;
}

/* Icono de email */
.tarjetaInfo.email .circuloIcono::before {
    width: 30px;
    height: 20px;
    border: 3px solid var(--color-acento);
    border-radius: 4px;
}

.tarjetaInfo.email .circuloIcono::after {
    width: 24px;
    height: 10px;
    border-left: 3px solid var(--color-acento);
    border-bottom: 3px solid var(--color-acento);
    border-right: 3px solid var(--color-acento);
    clip-path: polygon(0 0, 50% 100%, 100% 0);
    top: 25px;
    left: 18px;
}

.infoContactoDetalle {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.tituloInfoContacto {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--color-texto);
}

.detalleInfoContacto {
    font-size: 1rem;
    line-height: 1.5;
    color: rgba(241, 241, 241, 0.75);
}

/* Mapa */
.mapaUbicacion {
    width: 100%;
    height: 450px;
    overflow: hidden;
    border-radius: 8px;
    position: relative;
}

.mapaUbicacion iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Formulario de contacto */
.formularioContacto {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.encabezadoFormulario {
    margin-bottom: 40px;
    text-align: center;
}

.tituloFormulario {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.textoDestacadoFormulario {
    color: var(--color-secundario);
    position: relative;
    display: inline-block;
}

.textoDestacadoFormulario::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 10px;
    background-color: var(--color-secundario);
    opacity: 0.15;
    left: 0;
    bottom: 5px;
    z-index: -1;
}

.descripcionFormulario {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(241, 241, 241, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.formulario {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.campoFormulario {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.campoFormulario.nombreCompleto {
    grid-column: 1;
}

.campoFormulario.telefono {
    grid-column: 2;
}

.campoFormulario.email {
    grid-column: span 2;
}

.campoFormulario.mensaje {
    grid-column: span 2;
}

.campoFormulario.privacidad {
    grid-column: span 2;
}

.etiquetaCampo {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(241, 241, 241, 0.9);
}

.entradaTexto, .areaTexto {
    background-color: rgba(241, 241, 241, 0.05);
    border: 1px solid rgba(241, 241, 241, 0.1);
    color: var(--color-texto);
    padding: 15px;
    font-size: 1rem;
    font-family: var(--fuente-principal);
    border-radius: 4px;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.entradaTexto:focus, .areaTexto:focus {
    outline: none;
    border-color: var(--color-acento);
    background-color: rgba(241, 241, 241, 0.08);
}

.areaTexto {
    resize: vertical;
    min-height: 150px;
}

.contenedorCheckbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    accent-color: var(--color-acento);
}

.etiquetaCheckbox {
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(241, 241, 241, 0.7);
}

.enlacePrivacidad {
    color: var(--color-acento);
    text-decoration: none;
    position: relative;
}

.enlacePrivacidad::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -1px;
    left: 0;
    background-color: var(--color-acento);
    transition: width 0.3s ease;
}

.enlacePrivacidad:hover::after {
    width: 100%;
}

.accionesFormulario {
    grid-column: span 2;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.botonEnviar {
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--color-acento), var(--color-secundario));
    color: var(--color-texto);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.botonEnviar:hover {
    transform: translateY(-5px);
    opacity: 0.9;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .tituloContacto {
        font-size: 3rem;
    }
    
    .tituloFormulario {
        font-size: 2.2rem;
    }
}

@media (max-width: 992px) {
    .seccionContacto {
        padding: 120px 5% 80px;
    }
    
    .tarjetasContacto {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .formulario {
        grid-template-columns: 1fr;
    }
    
    .campoFormulario.nombreCompleto,
    .campoFormulario.telefono,
    .campoFormulario.email,
    .campoFormulario.mensaje,
    .campoFormulario.privacidad,
    .accionesFormulario {
        grid-column: 1;
    }
}

@media (max-width: 768px) {
    .encabezadoContacto {
        margin-bottom: 60px;
    }
    
    .tituloContacto {
        font-size: 2.5rem;
    }
    
    .descripcionContacto {
        font-size: 1.1rem;
    }
    
    .tituloFormulario {
        font-size: 2rem;
    }
    
    .mapaUbicacion {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .seccionContacto {
        padding: 100px 5% 60px;
    }
    
    .tituloContacto {
        font-size: 2.2rem;
    }
    
    .tituloFormulario {
        font-size: 1.8rem;
    }
    
    .mapaUbicacion {
        height: 300px;
    }
    
    .botonEnviar {
        width: 100%;
    }
}








/* Sección de Política de Cookies */
.politicaCookies {
    padding: 150px 7% 100px;
    background-color: var(--color-fondo);
    position: relative;
    overflow: hidden;
}

.politicaCookies::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(46, 139, 192, 0.07) 0%, rgba(192, 83, 211, 0.05) 40%, rgba(18, 18, 18, 0) 70%);
    top: -400px;
    right: -200px;
    border-radius: 50%;
    z-index: 0;
}

.encabezadoPolitica {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.tituloPolitica {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 800;
}

.textoDestacadoPolitica {
    color: var(--color-acento);
    position: relative;
    display: inline-block;
}

.textoDestacadoPolitica::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 12px;
    background-color: var(--color-acento);
    opacity: 0.15;
    left: 0;
    bottom: 5px;
    z-index: -1;
}

.descripcionPolitica {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(241, 241, 241, 0.8);
    max-width: 700px;
    margin: 0 auto;
}

.contenidoPolitica {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 50px;
}

.seccionInformativa {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.tituloSeccionPolitica {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-texto);
    margin-bottom: 15px;
}

.subtituloPolitica {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-texto);
    margin-bottom: 10px;
}

.parrafoPolitica {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(241, 241, 241, 0.8);
}

.separadorSeccion {
    height: 1px;
    background: linear-gradient(90deg, rgba(192, 83, 211, 0.3), rgba(46, 139, 192, 0.3), rgba(18, 18, 18, 0));
    margin: 10px 0 20px;
}

.tiposCookies {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.tipoCookie {
    padding: 25px;
    background-color: rgba(241, 241, 241, 0.03);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.tipoCookie:hover {
    transform: translateY(-5px);
    background-color: rgba(241, 241, 241, 0.05);
}

.tipoCookie:nth-child(1):hover {
    background-color: rgba(192, 83, 211, 0.08);
}

.tipoCookie:nth-child(2):hover {
    background-color: rgba(46, 139, 192, 0.08);
}

.tipoCookie:nth-child(3):hover {
    background: linear-gradient(135deg, rgba(192, 83, 211, 0.05), rgba(46, 139, 192, 0.05));
}

.tipoCookie:nth-child(4):hover {
    background: linear-gradient(135deg, rgba(46, 139, 192, 0.05), rgba(192, 83, 211, 0.05));
}

.navegadoresInfo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.navegador {
    padding: 20px;
    background-color: rgba(241, 241, 241, 0.03);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.navegador:hover {
    transform: translateY(-5px);
    background-color: rgba(241, 241, 241, 0.05);
}

.fechaActualizacion {
    margin-top: 20px;
    padding: 15px;
    background-color: rgba(241, 241, 241, 0.03);
    text-align: center;
}

.textoFechaActualizacion {
    font-size: 0.9rem;
    color: rgba(241, 241, 241, 0.6);
    font-style: italic;
}

/* Banner de cookies */
.bannerCookies {
    position: sticky;
    top: 150px;
    align-self: start;
}

.contenidoBanner {
    padding: 30px;
    background: linear-gradient(135deg, rgba(46, 139, 192, 0.1), rgba(192, 83, 211, 0.1));
    border: 1px solid rgba(241, 241, 241, 0.1);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.tituloBanner {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--color-texto);
}

.textoBanner {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(241, 241, 241, 0.8);
    margin-bottom: 20px;
}

.accionesBanner {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.botonAceptar, .botonPersonalizar {
    padding: 12px 0;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: var(--fuente-principal);
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.botonAceptar {
    background: linear-gradient(135deg, var(--color-acento), var(--color-secundario));
    color: var(--color-texto);
}

.botonAceptar:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

.botonPersonalizar {
    background-color: transparent;
    color: var(--color-texto);
    border: 1px solid rgba(241, 241, 241, 0.3);
}

.botonPersonalizar:hover {
    border-color: var(--color-acento);
    background-color: rgba(241, 241, 241, 0.05);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .tituloPolitica {
        font-size: 2.8rem;
    }
    
    .tituloSeccionPolitica {
        font-size: 1.6rem;
    }
}

@media (max-width: 992px) {
    .politicaCookies {
        padding: 120px 5% 80px;
    }
    
    .contenidoPolitica {
        grid-template-columns: 1fr;
    }
    
    .bannerCookies {
        position: static;
        order: -1;
        margin-bottom: 50px;
    }
    
    .navegadoresInfo {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .encabezadoPolitica {
        margin-bottom: 50px;
    }
    
    .tituloPolitica {
        font-size: 2.5rem;
    }
    
    .descripcionPolitica {
        font-size: 1.1rem;
    }
    
    .tituloSeccionPolitica {
        font-size: 1.5rem;
    }
    
    .subtituloPolitica {
        font-size: 1.2rem;
    }
    
    .parrafoPolitica {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .politicaCookies {
        padding: 100px 5% 60px;
    }
    
    .tituloPolitica {
        font-size: 2.2rem;
    }
    
    .tituloSeccionPolitica {
        font-size: 1.4rem;
    }
    
    .subtituloPolitica {
        font-size: 1.1rem;
    }
    
    .accionesBanner {
        flex-direction: column;
    }
}




/* Sección de Política de Privacidad */
.politicaPrivacidad {
    padding: 150px 7% 100px;
    background-color: var(--color-fondo);
    position: relative;
    overflow: hidden;
}

.politicaPrivacidad::before {
    content: '';
    position: absolute;
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(46, 139, 192, 0.07) 0%, rgba(192, 83, 211, 0.05) 40%, rgba(18, 18, 18, 0) 70%);
    top: -400px;
    left: -300px;
    border-radius: 50%;
    z-index: 0;
}

.politicaPrivacidad::after {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(192, 83, 211, 0.06) 0%, rgba(46, 139, 192, 0.04) 50%, rgba(18, 18, 18, 0) 70%);
    bottom: -300px;
    right: -200px;
    border-radius: 50%;
    z-index: 0;
}

.encabezadoPrivacidad {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.tituloPrivacidad {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 800;
}

.textoDestacadoPrivacidad {
    color: var(--color-acento);
    position: relative;
    display: inline-block;
}

.textoDestacadoPrivacidad::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 12px;
    background-color: var(--color-acento);
    opacity: 0.15;
    left: 0;
    bottom: 5px;
    z-index: -1;
}

.descripcionPrivacidad {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(241, 241, 241, 0.8);
    max-width: 700px;
    margin: 0 auto;
}

.contenidoPrivacidad {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 50px;
}

/* Navegación lateral */
.navegacionPrivacidad {
    position: sticky;
    top: 120px;
    align-self: start;
    height: fit-content;
}

.enlacesNavegacion {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 25px;
    background-color: rgba(241, 241, 241, 0.03);
    border-radius: 8px;
}

.enlaceSeccion {
    padding: 12px 15px;
    font-size: 0.95rem;
    color: rgba(241, 241, 241, 0.8);
    text-decoration: none;
    border-left: 2px solid rgba(241, 241, 241, 0.1);
    transition: all 0.3s ease;
}

.enlaceSeccion:hover {
    color: var(--color-texto);
    border-left-color: var(--color-acento);
    background-color: rgba(241, 241, 241, 0.05);
}

.enlaceSeccion.activo {
    color: var(--color-acento);
    border-left-color: var(--color-acento);
    background-color: rgba(192, 83, 211, 0.08);
}

/* Secciones de contenido */
.seccionesPrivacidad {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.seccionPrivacidad {
    padding: 20px 0;
    scroll-margin-top: 120px;
}

.tituloSeccionPrivacidad {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-texto);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.tituloSeccionPrivacidad::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-acento), rgba(192, 83, 211, 0));
    bottom: -8px;
    left: 0;
    border-radius: 3px;
}

.subtituloPrivacidad {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-texto);
    margin-bottom: 15px;
}

.parrafoPrivacidad {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(241, 241, 241, 0.8);
    margin-bottom: 15px;
}

.separadorPrivacidad {
    height: 1px;
    background: linear-gradient(90deg, rgba(192, 83, 211, 0.3), rgba(46, 139, 192, 0.3), rgba(18, 18, 18, 0));
    margin: 10px 0;
}

/* Tipos de datos */
.tiposDatos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.tipoDato {
    padding: 25px;
    background-color: rgba(241, 241, 241, 0.03);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.tipoDato:hover {
    transform: translateY(-5px);
    background-color: rgba(241, 241, 241, 0.05);
}

.tipoDato:nth-child(1):hover {
    background-color: rgba(192, 83, 211, 0.08);
}

.tipoDato:nth-child(2):hover {
    background-color: rgba(46, 139, 192, 0.08);
}

.tipoDato:nth-child(3):hover {
    background: linear-gradient(135deg, rgba(192, 83, 211, 0.05), rgba(46, 139, 192, 0.05));
}

.listaPrivacidad {
    list-style: none;
}

.listaPrivacidad li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: rgba(241, 241, 241, 0.75);
    line-height: 1.5;
}

.listaPrivacidad li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background-color: var(--color-acento);
    opacity: 0.7;
    border-radius: 50%;
}

/* Finalidades del tratamiento */
.finalidadesTratamiento {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.finalidad {
    display: flex;
    gap: 20px;
    padding: 25px;
    background-color: rgba(241, 241, 241, 0.03);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.finalidad:hover {
    transform: translateY(-5px);
    background-color: rgba(241, 241, 241, 0.05);
}

.iconoFinalidad {
    flex-shrink: 0;
}

.circuloFinalidad {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.circuloFinalidad.uno {
    background-color: rgba(192, 83, 211, 0.2);
}

.circuloFinalidad.dos {
    background-color: rgba(46, 139, 192, 0.2);
}

.circuloFinalidad.tres {
    background: linear-gradient(135deg, rgba(192, 83, 211, 0.15), rgba(46, 139, 192, 0.15));
}

.circuloFinalidad.cuatro {
    background: linear-gradient(135deg, rgba(46, 139, 192, 0.15), rgba(192, 83, 211, 0.15));
}

.textoFinalidad {
    flex: 1;
}

.textoFinalidad .parrafoPrivacidad {
    margin-bottom: 0;
}

/* Bases legales */
.basesTratamiento {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 30px;
}

.baseLegal {
    padding: 25px;
    background-color: rgba(241, 241, 241, 0.03);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.baseLegal:hover {
    transform: translateY(-5px);
    background-color: rgba(241, 241, 241, 0.05);
}

.baseLegal:nth-child(1):hover {
    background-color: rgba(192, 83, 211, 0.08);
}

.baseLegal:nth-child(2):hover {
    background-color: rgba(46, 139, 192, 0.08);
}

.baseLegal:nth-child(3):hover {
    background: linear-gradient(135deg, rgba(192, 83, 211, 0.05), rgba(46, 139, 192, 0.05));
}

.baseLegal:nth-child(4):hover {
    background: linear-gradient(135deg, rgba(46, 139, 192, 0.05), rgba(192, 83, 211, 0.05));
}

.baseLegal .parrafoPrivacidad {
    margin-bottom: 0;
}

/* Derechos */
.derechosPrivacidad {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}



.derecho:hover {
    transform: translateY(-5px);
    background-color: rgba(241, 241, 241, 0.05);
}

.derecho:nth-child(1):hover, .derecho:nth-child(4):hover {
    background-color: rgba(192, 83, 211, 0.08);
}

.derecho:nth-child(2):hover, .derecho:nth-child(5):hover {
    background-color: rgba(46, 139, 192, 0.08);
}

.derecho:nth-child(3):hover, .derecho:nth-child(6):hover {
    background: linear-gradient(135deg, rgba(192, 83, 211, 0.05), rgba(46, 139, 192, 0.05));
}

.derecho .parrafoPrivacidad {
    margin-bottom: 0;
}

/* Medidas de seguridad */
.listaMedidasSeguridad {
    margin-top: 20px;
    list-style: none;
}

.medidaSeguridad {
    position: relative;
    padding: 15px 20px 15px 50px;
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(241, 241, 241, 0.8);
    background-color: rgba(241, 241, 241, 0.03);
    border-radius: 6px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.medidaSeguridad:hover {
    transform: translateX(10px);
    background-color: rgba(241, 241, 241, 0.05);
}

.medidaSeguridad:nth-child(odd):hover {
    background-color: rgba(192, 83, 211, 0.08);
}

.medidaSeguridad:nth-child(even):hover {
    background-color: rgba(46, 139, 192, 0.08);
}

.medidaSeguridad::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--color-acento), var(--color-secundario));
    clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
}

/* Actualización de política */
.actualizacionPrivacidad {
    margin-top: 40px;
    padding: 20px;
    background-color: rgba(241, 241, 241, 0.03);
    text-align: center;
    border-radius: 6px;
}

.fechaActualizacion {
    font-size: 0.95rem;
    color: rgba(241, 241, 241, 0.6);
    font-style: italic;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .tituloPrivacidad {
        font-size: 2.8rem;
    }
    
    .tituloSeccionPrivacidad {
        font-size: 1.8rem;
    }
    
    .subtituloPrivacidad {
        font-size: 1.2rem;
    }
    
    .tiposDatos, .finalidadesTratamiento, .basesTratamiento {
        grid-template-columns: 1fr 1fr;
    }
    
    .derechosPrivacidad {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 992px) {
    .politicaPrivacidad {
        padding: 120px 5% 80px;
    }
    
    .contenidoPrivacidad {
        grid-template-columns: 1fr;
    }
    
    .navegacionPrivacidad {
        position: relative;
        top: 0;
        margin-bottom: 40px;
    }
    
    .enlacesNavegacion {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 5px;
    }
    
    .enlaceSeccion {
        padding: 8px 15px;
        font-size: 0.9rem;
        border-left: none;
        border-bottom: 2px solid rgba(241, 241, 241, 0.1);
    }
    
    .enlaceSeccion:hover, .enlaceSeccion.activo {
        border-left-color: transparent;
        border-bottom-color: var(--color-acento);
    }
    
    .tiposDatos {
        grid-template-columns: 1fr;
    }
    
    .finalidadesTratamiento {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .encabezadoPrivacidad {
        margin-bottom: 50px;
    }
    
    .tituloPrivacidad {
        font-size: 2.5rem;
    }
    
    .descripcionPrivacidad {
        font-size: 1.1rem;
    }
    
    .tituloSeccionPrivacidad {
        font-size: 1.6rem;
    }
    
    .subtituloPrivacidad {
        font-size: 1.1rem;
    }
    
    .parrafoPrivacidad {
        font-size: 1rem;
    }
    
    .basesTratamiento {
        grid-template-columns: 1fr;
    }
    
    .derechosPrivacidad {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .politicaPrivacidad {
        padding: 100px 5% 60px;
    }
    
    .tituloPrivacidad {
        font-size: 2.2rem;
    }
    
    .seccionPrivacidad {
        padding: 15px 0;
    }
    
    .tituloSeccionPrivacidad {
        font-size: 1.5rem;
    }
    
    .enlacesNavegacion {
        justify-content: center;
    }
    
    .finalidad {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }
    
    .medidaSeguridad {
        padding: 15px 15px 15px 40px;
    }
    
    .medidaSeguridad::before {
        left: 15px;
    }
}









/* Sección de Confirmación de Mensaje */
.confirmacionMensaje {
    min-height: 100vh;
    padding: 150px 7% 100px;
    background-color: var(--color-fondo);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.confirmacionMensaje::before {
    content: '';
    position: absolute;
    width: 1200px;
    height: 1200px;
    background: radial-gradient(circle, rgba(192, 83, 211, 0.08) 0%, rgba(46, 139, 192, 0.06) 30%, rgba(18, 18, 18, 0) 60%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 0;
}

.contenedorConfirmacion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
    background-color: rgba(241, 241, 241, 0.03);
    border-radius: 12px;
    padding: 60px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.iconoConfirmacion {
    position: relative;
    width: 120px;
    height: 120px;
    margin-bottom: 40px;
}

.circuloExterior {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-acento), var(--color-secundario));
    opacity: 0.3;
    animation: pulso 2s infinite;
}

@keyframes pulso {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.2;
    }
    100% {
        transform: scale(1);
        opacity: 0.3;
    }
}

.marcaVerificacion {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(192, 83, 211, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.marcaVerificacion::before {
    content: '';
    width: 30px;
    height: 15px;
    border-left: 4px solid var(--color-texto);
    border-bottom: 4px solid var(--color-texto);
    transform: rotate(-45deg) translate(3px, -5px);
}

.textoConfirmacion {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.tituloConfirmacion {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 10px;
    font-weight: 800;
}

.textoDestacadoConfirmacion {
    color: var(--color-acento);
    position: relative;
    display: inline-block;
}

.textoDestacadoConfirmacion::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 12px;
    background-color: var(--color-acento);
    opacity: 0.15;
    left: 0;
    bottom: 5px;
    z-index: -1;
}

.descripcionConfirmacion {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(241, 241, 241, 0.9);
    max-width: 600px;
    margin-bottom: 10px;
}

.detallesEnvio {
    padding: 15px 25px;
    background-color: rgba(46, 139, 192, 0.1);
    border-radius: 8px;
    margin: 15px 0;
}

.mensajePersonalizado {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-secundario);
}

.informacionAdicional {
    margin: 10px 0 25px;
}

.textoInfoAdicional {
    font-size: 1rem;
    color: rgba(241, 241, 241, 0.8);
    margin-bottom: 10px;
}

.telefonoContacto {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-texto);
}

.contadorRedireccion {
    padding: 12px 25px;
    background-color: rgba(241, 241, 241, 0.05);
    border-radius: 6px;
    margin-bottom: 30px;
}

.textoRedireccion {
    font-size: 0.9rem;
    color: rgba(241, 241, 241, 0.7);
}

#contador {
    font-weight: 700;
    color: var(--color-acento);
}

.accionesConfirmacion {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.botonPrincipal, .botonSecundario {
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.botonPrincipal {
    background: linear-gradient(135deg, var(--color-acento), var(--color-secundario));
    color: var(--color-texto);
}

.botonPrincipal:hover {
    transform: translateY(-5px);
    opacity: 0.9;
}

.botonSecundario {
    background-color: transparent;
    color: var(--color-texto);
    border: 1px solid rgba(241, 241, 241, 0.3);
}

.botonSecundario:hover {
    transform: translateY(-5px);
    border-color: var(--color-acento);
    background-color: rgba(241, 241, 241, 0.05);
}

.elementosDecorativosConfirmacion {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.elementoDecorativo {
    position: absolute;
    opacity: 0.2;
}

.elementoDecorativo.uno {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: var(--color-acento);
    top: 20%;
    left: 15%;
    animation: float1 8s infinite ease-in-out;
}

.elementoDecorativo.dos {
    width: 100px;
    height: 100px;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    background-color: var(--color-secundario);
    bottom: 25%;
    left: 10%;
    animation: float2 10s infinite ease-in-out;
}

.elementoDecorativo.tres {
    width: 120px;
    height: 120px;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    background-color: var(--color-acento);
    top: 15%;
    right: 18%;
    animation: float3 12s infinite ease-in-out;
}

.elementoDecorativo.cuatro {
    width: 80px;
    height: 80px;
    clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
    background-color: var(--color-secundario);
    bottom: 20%;
    right: 15%;
    animation: float4 9s infinite ease-in-out;
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-15px, 15px) rotate(5deg); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(20px, -10px) rotate(-8deg); }
}

@keyframes float3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-20px, -15px) rotate(10deg); }
}

@keyframes float4 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(15px, 20px) rotate(-5deg); }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .confirmacionMensaje {
        padding: 120px 5% 80px;
    }
    
    .contenedorConfirmacion {
        padding: 40px 30px;
    }
    
    .tituloConfirmacion {
        font-size: 2.8rem;
    }
    
    .descripcionConfirmacion {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .tituloConfirmacion {
        font-size: 2.5rem;
    }
    
    .iconoConfirmacion {
        width: 100px;
        height: 100px;
        margin-bottom: 30px;
    }
    
    .marcaVerificacion {
        width: 70px;
        height: 70px;
    }
    
    .marcaVerificacion::before {
        width: 25px;
        height: 12px;
    }
    
    .telefonoContacto {
        font-size: 1.2rem;
    }
    
    .accionesConfirmacion {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }
    
    .botonPrincipal, .botonSecundario {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .confirmacionMensaje {
        padding: 100px 5% 60px;
    }
    
    .contenedorConfirmacion {
        padding: 30px 20px;
    }
    
    .tituloConfirmacion {
        font-size: 2.2rem;
    }
    
    .descripcionConfirmacion {
        font-size: 1rem;
    }
    
    .iconoConfirmacion {
        width: 80px;
        height: 80px;
        margin-bottom: 25px;
    }
    
    .marcaVerificacion {
        width: 60px;
        height: 60px;
    }
    
    .marcaVerificacion::before {
        width: 20px;
        height: 10px;
        border-left: 3px solid var(--color-texto);
        border-bottom: 3px solid var(--color-texto);
    }
    
    .elementoDecorativo {
        display: none;
    }
}












/* Nuevo Diseño del Pie de Página */
.pieFinal {
    position: relative;
    background-color: rgba(7, 59, 76, 0.95);
    color: var(--color-texto);
    margin-top: 100px;
}

.ondaSuperior {
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 100px;
    color: rgba(7, 59, 76, 0.95);
    overflow: hidden;
    line-height: 0;
}

.ondaSuperior svg {
    width: 100%;
    height: 100%;
    display: block;
}

.contenidoPie {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 7% 40px;
}

.zonaSuperiorPie {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
    gap: 30px;
}

.logoContacto {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

.marcaPie {
    font-size: 1.8rem;
    font-weight: 700;
    position: relative;
    padding-right: 30px;
}

.marcaPie::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 30px;
    background-color: rgba(241, 241, 241, 0.3);
}

.correoPie {
    font-size: 1.1rem;
}

.enlaceContactoPie {
    color: var(--color-texto);
    text-decoration: none;
    position: relative;
    transition: all 0.3s;
}

.enlaceContactoPie::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: var(--color-acento);
    bottom: -4px;
    left: 0;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.enlaceContactoPie:hover {
    color: var(--color-acento);
}

.enlaceContactoPie:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.politicasPie {
    display: flex;
    align-items: center;
    gap: 15px;
}

.enlacePie {
    color: rgba(241, 241, 241, 0.8);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}

.enlacePie:hover {
    color: var(--color-acento);
}

.separadorEnlaces {
    color: rgba(241, 241, 241, 0.5);
    font-size: 0.8rem;
}

.zonaInferiorPie {
    border-top: 1px solid rgba(241, 241, 241, 0.1);
    padding-top: 30px;
    text-align: center;
}

.derechosReservados {
    font-size: 0.9rem;
    color: rgba(241, 241, 241, 0.6);
}

/* Responsive */
@media (max-width: 768px) {
    .pieFinal {
        margin-top: 80px;
    }
    
    .ondaSuperior {
        top: -80px;
        height: 80px;
    }
    
    .contenidoPie {
        padding: 40px 5% 30px;
    }
    
    .zonaSuperiorPie {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 30px;
        gap: 25px;
    }
    
    .logoContacto {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .marcaPie {
        padding-right: 0;
    }
    
    .marcaPie::after {
        display: none;
    }
}

@media (max-width: 576px) {
    .pieFinal {
        margin-top: 60px;
    }
    
    .ondaSuperior {
        top: -60px;
        height: 60px;
    }
    
    .contenidoPie {
        padding: 30px 5% 20px;
    }
    
    .politicasPie {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .separadorEnlaces {
        display: none;
    }
}