/* titulo una experiencia */
.title-container-una-experiencia {
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
    padding: 40px 20px;
    
    /* Mejoras responsive */
    box-sizing: border-box;
    background-color: #f5f5f5;
}

.main-title-una-experiencia {
    font-size: 54px;
    font-weight: 600;
    color: #002C51;
    line-height: 1.3;
    margin-bottom: 0;
    
    /* Responsive font size */
    /* font-size: clamp(2rem, 5vw, 3.6rem); */
}

.feature-cards-section{
    background-color: #f5f5f5;
}

.title-underline {
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #1a56db, #f59e0b);
    margin: 20px auto 0;
    border-radius: 2px;
    
    /* Responsive adjustments */
    width: min(120px, 25vw);
}

/* Sección "Qué esperar" */
.que-esperar-unik {
    padding: 0px 20px 20px;
    background: #f8f9fa;
    position: relative;
    overflow: visible;
    padding-bottom: 60px;
    
    /* Mejoras responsive */
    box-sizing: border-box;
}

.adorno-imagen-q-e {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 140px;
    background-image: url('ruta/a/tu-imagen.png');
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 10;
    
    /* Ocultar en móvil */
}

.que-esperar-header {
    padding-top: 40px;
    position: relative;
    text-align: center;
    margin-bottom: 60px;
}

.titulo-centrado {
    font-size: 54px;
    padding-top: 40px;
    color: #002d52;
    margin: 0;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.titulo-linea1 {
    font-size: 54px;
    display: block;
    line-height: 50px;
}

.titulo-linea2 {
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.5;
    
    /* Responsive para móvil */
    flex-wrap: wrap;
    justify-content: center;
}

.unik-logo-texto {
    height: 66px;
    display: inline-block;
    vertical-align: middle;
    padding-bottom: 15px;
}

.que-esperar-filas {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.que-esperar-fila {
    display: flex;
    gap: 40px;
    align-items: stretch;
    
    /* Responsive gap */
    gap: clamp(20px, 3vw, 40px);
}

.que-esperar-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    flex: 1;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-height: 195px;
    height: 100%;
    box-sizing: border-box;
    
    /* Responsive padding */
    padding: clamp(20px, 3vw, 30px);
}

/* Estados normal y hover se mantienen igual */
.que-esperar-item {
    color: #002C51;
}

.que-esperar-item h2 {
    color: #002C51;
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 1.3rem;
    font-weight: 600;
    
    /* Responsive font size */
    font-size: clamp(1.1rem, 2vw, 1.3rem);
}

.que-esperar-item p {
    color: #002C51;
    line-height: 1.5;
    margin: 0;
    
    /* Responsive font size */
    font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.que-esperar-item:hover {
    background: #002C51;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 44, 81, 0.3);
}

.que-esperar-item:hover h2,
.que-esperar-item:hover p {
    color: white;
}

.que-esperar-item:hover .que-esperar-icono img {
    filter: brightness(0) invert(1);
}

.que-esperar-icono {
    min-width: 50px;
    flex-shrink: 0;
    
    /* Responsive sizing */
    min-width: clamp(40px, 8vw, 50px);
}

.que-esperar-icono img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    transition: all 0.3s ease;
    
    /* Responsive sizing */
    width: clamp(30px, 6vw, 40px);
    height: clamp(30px, 6vw, 40px);
}

.que-esperar-contenido {
    line-height: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%;
}

/* Carrusel Pantalla Completa */
.two-column-section {
    display: flex;
    width: 100%;
    height: 100vh;
    background: #f8fafc;
}

/* PRIMERA IMAGEN - Superior Central */
.adorno-imagen-c-a1 {
    position: absolute;
    top: 20px;           /* Desde la parte superior */
    left: 50%;           /* Centrado horizontal */
    transform: translateX(-50%); /* Centrado preciso */
    width: 150px;        /* Ajusta según necesites */
    height: auto;        /* Mantiene proporción */
    z-index: 10;
    pointer-events: none; /* No interfiere con clicks */
}

/* SEGUNDA IMAGEN - Inferior Derecha */
.adorno-imagen-c-a2 {
    position: absolute;
    bottom: 0px;        /* Desde la parte inferior */
    right: 0px;         /* Desde la derecha */
    width: 320px;        /* Ajusta según necesites */
    height: auto;        /* Mantiene proporción */
    z-index: 1999;
    pointer-events: none; /* No interfiere con clicks */
}


/* LADO IZQUIERDO - 50% fijo */
.left-side {
  height: 100%;
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    background: #002C51;
}

.left-image-container {
    height: 80vh;
    /* flex: 50% 0 40%; */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: #002C51;
    margin-bottom: 0;
}


.fixed-image {
  height: 80%;
    max-width: 100%;
    max-height: 100%;
    /* object-fit: contain; */
}

.text-content {
    height: 15%;
    flex: 1;
    padding-top: 0px;
    padding-bottom: 40px;
    padding-left: 40px;
    padding-right: 40px;
    display: flex;
    margin-top: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* LADO DERECHO - 50% fijo */
.right-side {
    flex: 0 0 50%;
    position: relative;
}

.carrusel-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    background: #000;
}

.carrusel-fs-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    /* transition: opacity 0.5s ease; */
}

.carrusel-fs-slide.active {
    opacity: 1;
}

.carrusel-fs-imagen {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
}

/* Tiles container */
.tiles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    z-index: 3;
    pointer-events: none;
}

.tile {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
    transform: scale(1);
    /* transition: all 0.4s ease; */
}

/* Dots navigation */
.carrusel-fs-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 4;
}

.carrusel-fs-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    /* transition: all 0.3s ease; */
}

.carrusel-fs-dot.active {
    background: white;
    transform: scale(1.2);
}

/* Estilos del texto */
.logo {
    font-size: 2.2rem;
    font-weight: bold;
    color: #1a56db;
    margin-bottom: 15px;
}

.subtitle {
    color: #64748b;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.subtitle strong {
    color: #1a56db;
}

.variable-title {
    font-size: 2rem;
    color: white;
    margin-bottom: 30px;
    font-weight: 600;
    line-height: 1.2;
}

.cta-button {
    background: #3d73fc;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 1.4rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    width: fit-content;
}

.cta-button:hover {
    background: white;
    color: #3d73fc;
}

/* ESTILOS PARA LA SECTION DE CURSOS Y OFERTAS */
.cursos-ofertas-section {
    padding: 40px 0px 0px 0px;
    background: #e5e5ef;
    min-height: 90vh;
}

.cursos-ofertas-container {
    max-width: 1372px;
    margin: 0 auto;
    padding: 0 clamp(15px, 3vw, 20px);
    box-sizing: border-box;
}

.cursos-ofertas-header {
    text-align: center;
    /* margin-bottom: 60px; */
}

.cursos-ofertas-header h1 {
    /* font-size: 2.8rem; */
    color: #002c51;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    padding-bottom: 25px;
    display: inline-block;
    
    /* Responsive font size */
    font-size: 54px;
    margin-bottom: 9px;
    padding-bottom: clamp(15px, 3vw, 25px);
}

.cursos-ofertas-header h1::after {
    content: '';
    position: absolute;
    bottom: 13px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 1px;
    background: #002C51;
    border-radius: 2px;
    
    /* Responsive width */
    width: clamp(80px, 15vw, 120px);
}

.cursos-ofertas-subtitle {
    font-size: 1.2rem;
    color: #002c51;
    line-height: 1.6;
    max-width: 2074px;
    margin: 0 auto;
    
    /* Responsive font size */
    font-size: clamp(1rem, 2vw, 1.2rem);
    padding: 0 clamp(15px, 3vw, 0px);
}

.cursos-ofertas-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
    min-width: 800px;
    
    /* Responsive gap */
    gap: clamp(10px, 2vw, 20px);
}

.cursos-ofertas-carousel-container {
    width: 100%;
    max-width: 1100px;
    overflow: hidden;
}

.cursos-ofertas-carousel {
    display: flex;
    gap: 25px;
    padding: 20px 10px;
    scroll-behavior: smooth;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    justify-content: flex-start;
    min-height: 550px; /* Asegurar espacio suficiente */
    align-items: stretch; /* Alinear arriba para evitar compresión */
    
    /* Responsive gap y padding */
    /* gap: clamp(15px, 3vw, 25px);
    padding: clamp(15px, 2vw, 20px) clamp(5px, 1vw, 10px); */
}

.cursos-ofertas-carousel::-webkit-scrollbar {
    display: none;
}

/* TARJETA BASE - VISTA COMPACTA SIN FONDO */
.curso-oferta-card {
    width: 350px;
    height: 480px;
    background: transparent;
    transition: all 0.3s ease;
    flex-shrink: 0;
    overflow: visible;
    position: relative;
    
    /* Responsive sizing */
    width: clamp(280px, 80vw, 350px);
    height: clamp(300px, 80vw, 350px);
}

/* TARJETA EXPANDIDA - CON FONDO BLANCO Y MÁS ALTA */
.curso-oferta-card[data-card-state="expanded"] {
    width: 370px;
    height: 580px;
    background: white;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transform: translateY(-10px);
    z-index: 10;
    
    /* Responsive sizing */
    width: clamp(300px, 85vw, 370px);
    height: clamp(500px, 120vw, 580px);
}

/* CONTENIDO COMPACTO */
.curso-oferta-card-compact {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* CONTENEDOR DE IMAGEN CON TÍTULO */
.curso-oferta-image-container {
    width: 100%;
    height: 220px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    
    /* Responsive height */
    height: clamp(160px, 45vw, 220px);
}

.curso-oferta-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* OVERLAY AZUL PARA EL TÍTULO */
.curso-oferta-title-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #002C51;
    padding: 10px 20px 15px 20px;
    
    /* Responsive padding */
    padding: clamp(8px, 1.5vw, 10px) clamp(15px, 2vw, 20px) clamp(12px, 2vw, 15px) clamp(15px, 2vw, 20px);
}

.curso-oferta-title-compact {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin: 0;
    line-height: 1.3;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    
    /* Responsive font size */
    font-size: clamp(0.85rem, 2vw, 1rem);
}

.curso-oferta-title-compact-4 {
    font-size: 0.8rem;
    font-weight: 700;
    color: white;
    margin: 0;
    line-height: 1.3;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    
    /* Responsive font size */
    font-size: clamp(0.7rem, 1.8vw, 0.8rem);
}

/* INFORMACIÓN COMPACTA */
.curso-oferta-info-compact {
    padding: 20px;
    display: flex;
    flex-direction: column;
    height: 200px;
    min-height: 200px;
    max-height: 200px;
    gap: 12px;
    overflow-y: auto;
    
    /* Responsive padding */
    padding: clamp(15px, 3vw, 20px);
    gap: clamp(8px, 1.5vw, 12px);
}

.curso-oferta-desc-compact {
    font-size: 0.9rem;
    color: #718096;
    line-height: 1.4;
    margin: 0;
    flex: 1;
    min-height: 0;
    overflow-y: auto;

    scrollbar-width: thin;
    scrollbar-color: #cbd5e0 #f7fafc;
    
    /* Responsive font size */
    /* font-size: clamp(0.8rem, 1.8vw, 0.9rem); */
}

/* CONTENEDOR DEL BOTÓN CENTRADO */
.curso-oferta-btn-container {
    display: flex;
    justify-content: center;
    margin-top: auto;
    flex-shrink: 0;
}

.curso-oferta-btn-toggle {
    background: transparent;
    color: #002C51;
    border: #002C51 2px solid;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 9999;
    
    /* Responsive padding y font */
    padding: clamp(10px, 2vw, 12px) clamp(20px, 3vw, 25px);
    font-size: clamp(0.8rem, 1.8vw, 0.9rem);
}

.curso-oferta-btn-toggle:hover {
    background: #002C51;
    color: white;
    border: 2px solid #002C51;
    transform: translateY(-2px);
}

/* CONTENIDO EXPANDIDO */
.curso-oferta-card-expanded {
    width: 100%;
    height: 100%;
    display: none;
    flex-direction: column;
}

.curso-oferta-card[data-card-state="expanded"] .curso-oferta-card-compact {
    display: none;
}

.curso-oferta-card[data-card-state="expanded"] .curso-oferta-card-expanded {
    display: flex;
}

.curso-oferta-expanded-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

/* ENCABEZADO DEL INSTRUCTOR */
.curso-oferta-instructor-header {
    background: #002C51;
    color: white;
    padding: 25px;
    flex-shrink: 0;
    
    /* Responsive padding */
    padding: clamp(20px, 3vw, 25px);
}

.curso-oferta-instructor-profile {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    
    /* Responsive gap y margin */
    gap: clamp(12px, 2vw, 15px);
    margin-bottom: clamp(15px, 2.5vw, 20px);
}

.curso-oferta-image-circular {
    height: 100%;
    width: 100%;
    border-radius: 50%;
}

.curso-oferta-instructor-photo-container {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
    
    /* Responsive sizing */
    width: clamp(50px, 8vw, 60px);
    height: clamp(50px, 8vw, 60px);
    font-size: clamp(0.9rem, 2vw, 1.1rem);
}

.curso-oferta-instructor-info {
    flex: 1;
    min-width: 0;
}

.curso-oferta-instructor-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0px;
    line-height: 1.2;
    
    /* Responsive font size */
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    margin-bottom: clamp(6px, 1vw, 8px);
}

.curso-oferta-instructor-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 10px;
    
    /* Responsive gap */
    gap: clamp(6px, 1vw, 8px);
}

.curso-oferta-tag {
    background: #3d73fc;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    height: 25px;
    
    /* Responsive padding y font */
    padding: clamp(3px, 0.8vw, 4px) clamp(8px, 1.5vw, 10px);
    font-size: clamp(0.65rem, 1.5vw, 0.75rem);
}

.curso-oferta-credentiales {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 20px;
    
    /* Responsive font size y margin */
    font-size: clamp(0.7rem, 1.8vw, 0.8rem);
    margin-bottom: clamp(15px, 2.5vw, 20px);
}

.curso-oferta-credentiales li {
    padding: 5px 0;
    padding-left: 12px;
    position: relative;
    
    /* Responsive padding */
    padding: clamp(4px, 0.8vw, 5px) 0;
    padding-left: clamp(10px, 1.5vw, 12px);
}

.curso-oferta-credentiales li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.8);
}

/* CONTENEDOR DEL TÍTULO EN LA PARTE DEL INSTRUCTOR */
.curso-oferta-title-expanded-container {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    
    /* Responsive margin y padding */
    margin-top: clamp(15px, 2.5vw, 20px);
    padding-top: clamp(15px, 2.5vw, 20px);
}

.curso-oferta-title-expanded {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin: 0;
    line-height: 1.3;
    
    /* Responsive font size */
    font-size: clamp(0.85rem, 2vw, 1rem);
}

/* CONTENEDOR DEL TÍTULO CON ICONO */
.curso-oferta-title-content {
    display: flex;
    align-items: center;
    gap: 10px;
    
    /* Responsive gap */
    gap: clamp(8px, 1.5vw, 10px);
}

.curso-oferta-title-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    filter: brightness(0) invert(1);
    
    /* Responsive sizing */
    width: clamp(20px, 3vw, 24px);
    height: clamp(20px, 3vw, 24px);
}

/* SEPARADOR ENTRE SECCIONES */
.curso-oferta-separator {
    height: 20px;
    background: #f8f9fa;
    flex-shrink: 0;
    display: none;
    
    /* Responsive height */
    height: clamp(15px, 2.5vw, 20px);
}

/* CONTENIDO EXPANDIDO INFERIOR */
.curso-oferta-content-expanded {
    padding: 25px;
    display: flex;
    align-items: center;
    flex-direction: column;
    min-height: 0;
    overflow-y: auto;
    padding-top: 7px;
    padding-top: 7px;
    
    /* Responsive padding */
    padding: clamp(20px, 3vw, 25px);
}

.curso-oferta-description-expanded {
    font-size: 0.85rem;
    color: #718096;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
    
    /* Responsive font size y margin */
    font-size: clamp(0.75rem, 1.8vw, 0.85rem);
    margin-bottom: clamp(15px, 2.5vw, 20px);
}

.curso-oferta-buttons-expanded {
    display: flex;
    width: 220px;
    gap: 12px;
    margin-top: auto;
    flex-shrink: 0;
    
    /* Responsive gap */
    gap: clamp(8px, 1.5vw, 12px);
}

.curso-oferta-btn-expanded {
    background: #002C51;
    color: white;
    border: none;
    padding-left: 25px;
    padding-right: 25px;
    padding-top: 5px;
    padding-bottom: 5px;
    border-radius: 25px;
    font-size: 1.7rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    box-sizing: border-box;
    font-family: inherit;
}

.curso-oferta-btn-expanded:hover {
    background: white;
    color: #002C51;
    border: 2px solid #002C51;
    transform: translateY(-2px);
}

.curso-oferta-buttons-expanded .curso-oferta-btn-toggle {
    background: #002C51;
    color: white;
    padding: 10px 20px;
    flex: 0;
    
    /* Responsive padding */
    padding: clamp(8px, 1.5vw, 10px) clamp(15px, 2.5vw, 20px);
}

.curso-oferta-buttons-expanded .curso-oferta-btn-toggle:hover {
    background: white;
    color: #002C51;
    border: 2px solid #002C51;
}

/* BOTONES CARROUSEL */
.cursos-ofertas-carousel-btn {
    background: gray;
    border: 2px solid #e2e8f0;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-size: 24px;
    font-weight: bold;
    color: white;
    flex-shrink: 0;
    
    /* Responsive sizing */
    width: clamp(40px, 8vw, 50px);
    height: clamp(40px, 8vw, 50px);
    font-size: clamp(18px, 4vw, 24px);
}

.cursos-ofertas-carousel-btn:hover {
    background: #002C51;
    color: white;
    transform: scale(1.1);
}

.cursos-ofertas-carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* PUNTOS DE PAGINACIÓN - VERSIÓN MEJORADA */
.cursos-ofertas-pagination {
    display: flex;
    justify-content: center;
    margin-top: 0;
    padding: 1rem 0;
}

/* CONTENEDOR DE PUNTOS - OCULTO POR DEFECTO */
.cursos-ofertas-pagination {
    display: none;
}

/* PUNTOS - OCULTOS POR DEFECTO */
.cursos-ofertas-dots {
    display: none;
}

/* 📱 SOLO SE MUESTRA EN MÓVILES (max-width: 767px) */
@media (max-width: 767px) {
    .cursos-ofertas-pagination {
        display: flex;
        justify-content: center;
        margin-top: 2rem;
        padding: 1rem 0;
    }
    
    .cursos-ofertas-dots {
        display: flex;
        /* gap: 0.7rem; */
        align-items: center;
        background: none;
        padding: 0.75rem 1.5rem;
        border-radius: 50px;
        backdrop-filter: blur(10px);
    }
    
    .cursos-oferta-dot {
        width: 1px;
        height: 1px;
        border-radius: 50%;
        background: #002C51;
        border: 1px solid transparent;
        cursor: pointer;
        transition: all 0.4s ease;
        padding: 0;
        position: relative;
    }
    
    .cursos-oferta-dot:hover {
        background: #9ca3af;
        transform: scale(1.3);
        border-color: var(--uniajc-blue);
    }
    
    .cursos-oferta-dot.active {
        background: var(--uniajc-blue);
        border: 2px solid gray;
        transform: scale(1.5);
        box-shadow: 0 0 0 3px rgba(0, 82, 155, 0.3);
    }
    
    .cursos-oferta-dot.active::after {
        content: '';
        position: absolute;
        top: -4px;
        left: -4px;
        right: -4px;
        bottom: -4px;
        border: 2px solid var(--uniajc-blue);
        border-radius: 50%;
        animation: pulse 2s infinite;
    }
    
    /* Animación de pulso */
    @keyframes pulse {
        0% { transform: scale(1); opacity: 1; }
        50% { transform: scale(1.3); opacity: 0.5; }
        100% { transform: scale(1); opacity: 0; }
    }
}

/* SECCIÓN PREGUNTAS FRECUENTES - TARJETAS COMPACTAS */
.adorno-imagen-p-f {
    position: absolute;
    bottom: 0px;
    right: 0px;
    height: 175px;
    background-image: url('ruta/a/tu-imagen.png');
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 10;
    
    /* Ocultar en móvil */
}

.pfaq-section {
    position: relative;
    background: #dcdde8;
    min-height: 80vh;
    box-sizing: border-box;
    padding: 20px 20px;
    
    /* Responsive padding */
    /* min-height: clamp(80vh, 100vw, 79vh); */
}

.pfaq-container {
    padding-top: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Título principal */
.pfaq-main-title {
    font-size: 54px;
    font-weight: 700;
    color: #002C51;
    margin: 0 0 60px 0;
    text-align: center;
}

/* Grid de 2 columnas */
.pfaq-grid {
    display: flex;
    gap: 40px;
    justify-content: space-between;
    
    /* Responsive gap y dirección */
    gap: clamp(20px, 4vw, 40px);
    flex-direction: row;
}

.pfaq-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    
}

/* Tarjetas - Tamaño inicial compacto */
.pfaq-card {
    background: #d3d6e0;
    border-radius: 12px;
    padding: 25px 30px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    min-height: 97px;
    height: auto;
    
    /* Responsive padding */
    padding: clamp(20px, 3vw, 25px) clamp(25px, 3vw, 30px);
    border-radius: clamp(8px, 1.5vw, 12px);
}

.pfaq-card:hover {
    background: #eeeeee;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Contenido de la tarjeta */
.pfaq-card-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 0;
    padding: 0;
    cursor: pointer;
    
    /* Mejor alineación en móvil */
    align-items: center;
}

/* Pregunta */
.pfaq-question {
    font-size: 1.1rem;
    font-weight: 700;
    color: #002d52;
    margin: 0;
    line-height: 1.4;
    flex: 1;
    padding-right: 20px;
    
    /* Responsive font size y padding */
    font-size: clamp(1rem, 2vw, 1.1rem);
    padding-right: clamp(15px, 2.5vw, 20px);
    line-height: 1.3;
}

/* Botón + */
.pfaq-toggle {
    color: #002C51;
    border: none;
    width: 30px;
    height: 30px;
    font-size: 1.5rem;
    font-weight: 300;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    background: none;
    padding: 0;
    margin: 0;
    
    /* Responsive sizing */
    width: clamp(25px, 4vw, 30px);
    height: clamp(25px, 4vw, 30px);
    font-size: clamp(1.3rem, 3vw, 1.5rem);
}

/* Respuesta (inicialmente oculta) */
.pfaq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    opacity: 0;
}

.pfaq-answer p {
    font-size: 1rem;
    color: #000000;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    text-align: left;
    
    /* Responsive font size */
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    line-height: 1.5;
}

/* Estado activo - Tarjeta expandida */
.pfaq-card.active {
    background: #eeeeee;
}

.pfaq-card.active .pfaq-answer {
    max-height: 300px; /* Mayor altura para contenido responsive */
    opacity: 1;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #d0d0d0;
    
    /* Responsive spacing */
    margin-top: clamp(15px, 2.5vw, 20px);
    padding-top: clamp(15px, 2.5vw, 20px);
}

.pfaq-card.active .pfaq-toggle {
    transform: rotate(45deg);
    color: #002C51;
}

/* Mejoras de accesibilidad en touch */
@media (hover: none) and (pointer: coarse) {
    .pfaq-card:hover {
        transform: none;
        box-shadow: none;
    }
    
    .pfaq-card:active {
        background: #eeeeee;
        transform: scale(0.98);
    }
}

/* Sección descriptiva con imagen y botón */
.about-unik-section {
    background: #f5f5f5;
    padding: 4rem 1rem;
    position: relative;
    
    /* Responsive padding */
    padding: clamp(2rem, 6vw, 4rem) clamp(0.5rem, 2vw, 1rem);
}

.adorno-imagen-c-o {
    position: absolute;
    bottom: -8%;
    right: -22%;
    width: 180px;
    height: 180px;
    background-image: url('ruta/a/tu-imagen.png');
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 10;
}

.about-unik-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    
    /* Responsive gap */
    gap: clamp(1.5rem, 4vw, 3rem);
    padding: 0 clamp(0.5rem, 2vw, 1rem);
}

.about-unik-text {
    flex: 1 1 350px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    color: #002C51;
    font-size: 1.2rem;
    font-weight: 500;
    text-align: left;
    
    /* Responsive sizing y gap */
    flex: 1 1 clamp(300px, 40vw, 350px);
    gap: clamp(1rem, 2.5vw, 1.5rem);
    font-size: clamp(1rem, 2vw, 1.2rem);
}

.about-unik-block {
    margin-bottom: 0.5rem;
    font-family: 'DM Sans', sans-serif;
    
    /* Responsive margin */
    margin-bottom: clamp(0.3rem, 1vw, 0.5rem);
}

.about-unik-block1 {
    font-size: clamp(2.5rem, 5vw, 4.125rem);
    line-height: 0.9;
}

.about-unik-block2, .about-unik-block3 {
    line-height: 1.4;
    font-size: clamp(1rem, 2vw, 1.2rem);
}

.unik-regular {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
}

.aprender-bold {
    font-weight: 700;
    font-size: 76px;
    line-height: 1.05;
    display: inline-block;
}

.about-unik-block3-bold {
    font-weight: 700;
    font-family: 'DM Sans', sans-serif;
}

.unik-logo-tar {
    width: 173px;
    height: auto;
}

/* Contenedor de imagen con elementos decorativos */
.about-unik-image-container {
    position: relative;
    flex: 1 1 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    
    /* Responsive sizing */
    flex: 1 1 clamp(300px, 50vw, 500px);
}

.about-unik-image-wrapper {
    position: relative;
    display: block;
    width: 100%;
    height: 400px;
    z-index: 3;
    
    /* Responsive max-width */
    max-width: 700px;
}

.about-unik-image {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 4px 24px 0 rgba(26,35,126,0.13);
    display: block;
    z-index: 2;
    height: 400px;
    
    /* Responsive max-width y border-radius */
    max-width: 700px;
    border-radius: clamp(16px, 3vw, 24px);
}

.adorno-imagen-ab-c4 {
    position: absolute;
    top: -48px;
    right: -45px;
    width: 100px;
    height: auto;
    z-index: 1;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
    
    /* Responsive sizing */
    width: clamp(60px, 12vw, 100px);
}

.adorno-imagen-ab-ma {
    position: absolute;
    top: 75%;
    left: -48px;
    transform: translateY(-50%);
    width: 100px;
    height: auto;
    z-index: 3;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

/* Botón */
.about-unik-btn {
    position: absolute;
    right: clamp(12px, 2vw, 24px);
    bottom: clamp(12px, 2vw, 24px);
    display: inline-block;
    padding: clamp(0.6rem, 1.5vw, 0.75rem) clamp(1.5rem, 3vw, 2.2rem);
    background: #002d52;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 25px;
    text-decoration: none;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 12px 0 rgba(26,35,126,0.08);
    cursor: pointer;
    z-index: 2;
    padding-bottom: 6px;
    padding-top: 6px;
    padding-left: 20px;
    padding-right: 20px;
}

.about-unik-btn:hover {
    background: #005080;
    box-shadow: 0 4px 24px 0 rgba(26,35,126,0.13);
}

/* Mejoras de accesibilidad en touch */
@media (hover: none) and (pointer: coarse) {
    .about-unik-btn {
        min-height: 44px; /* Tamaño mínimo para touch */
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .about-unik-btn:active {
        transform: scale(0.98);
        background: #003a66;
    }
}

/* feature cards secctions */
.feature-cards-container {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    max-width: 1370px;
    margin: 0 auto;
    gap: 20px;
    
    /* Responsive padding y gap */
    padding: clamp(20px, 4vw, 40px) clamp(15px, 3vw, 20px);
    gap: clamp(15px, 2vw, 20px);
    flex-wrap: wrap;
}

.adorno-imagen-e-a {
    position: absolute;
    bottom: 10px;
    left: -267px;
    top: 177px;
    height: 230px;
    background-image: url('ruta/a/tu-imagen.png');
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 10;
    
    /* Ocultar en móvil */
}

.feature-card {
    background-color: white;
    padding: 25px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
    
    /* Tamaño responsive */
    width: calc(25% - 15px);
    flex: 1 1 calc(25% - 15px);
    min-width: 200px;
    
    /* Responsive padding */
    padding: clamp(20px, 3vw, 25px) clamp(15px, 2vw, 20px);
    border-radius: clamp(8px, 1.5vw, 12px);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.feature-card:hover h3 {
    color: #002C51;
    justify-content: left;
    align-items: left;
}

.feature-icon {
    margin-bottom: 25px;
    display: flex;
    justify-content: left;
    align-items: left;
    height: 70px;
    
    /* Responsive margin y height */
    margin-bottom: 0;
    height: clamp(60px, 8vw, 80px);
}

.feature-icon img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    transition: transform 0.3s ease;
    
    /* Responsive sizing */
    width: clamp(50px, 8vw, 70px);
    height: clamp(50px, 8vw, 70px);
}

.feature-card:hover {
    transform: scale(1.11);
}

.feature-card:hover .feature-icon img {
    transform: scale(1.1);
}

.feature-card h3 {
    font-weight: bold;
    font-size: 1.5rem;
    font-weight: 600;
    color: #828282;
    margin-bottom: 5px;
    transition: color 0.3s ease;
    
    /* Responsive font size */
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    margin-bottom: 0;
}

.feature-card p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
    text-align: left;
    margin-bottom: 0;
    
    /* Responsive font size */
    font-size: clamp(0.85rem, 1.8vw, 0.95rem);
    line-height: 1.5;
}

/* Mejoras de accesibilidad en touch */
@media (hover: none) and (pointer: coarse) {
    .feature-card:hover {
        transform: none;
    }
    
    .feature-card:active {
        transform: scale(0.98);
        background: #f8fafc;
    }
    
    .feature-card:hover .feature-icon img {
        transform: none;
    }
}

/* Transiciones suaves para todos los estados */
.feature-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-icon img {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
/* fin feature cards secctions */

/* Reset y variables CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colores principales */
    --primary-color: #27907d;
    --secondary-color: #2c3e50;
    --accent-color: #e74c3c;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-gray: #34495e;
    
    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, #27907d 0%, #2c3e50 100%);
    --gradient-secondary: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    --gradient-light: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    
    /* Tipografía */
    --font-primary: 'DM Sans', Arial, Helvetica, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    
    /* Espaciado */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* Sombras */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Transiciones */
    --transition-fast: 0.15s ease-in-out;
    --transition-normal: 0.3s ease-in-out;
    --transition-slow: 0.5s ease-in-out;
}

/* Estilos base */
body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

@media (max-width: 3840px) and (min-width: 2565px) {
    
    /*primera imagen post carusel*/
    .adorno-imagen-e-a{
        left: -740px;
    }

    /*segunda imagen post carusel*/
    .adorno-imagen-c-o{
        right: -760px;
        bottom: 12%;
    }

    .pfaq-section{
        min-height: 0;
        padding-bottom: 120px;
    }

    .cursos-ofertas-section{
        min-height: 0;
    }
        
}

@media (max-width: 2565px) and (min-width: 1921px) {
    
    /*primera imagen post carusel*/
    .adorno-imagen-e-a{
        left: -590px;
    }

    /*segunda imagen post carusel*/
    .adorno-imagen-c-o{
        right: -610px;
    }
        
}

/* RESPONSIVE — PANTALLAS MEDIANAS (tablets horizontales) */
@media (max-width: 1700px) and (min-width: 992px) {
    
    /*primera imagen post carusel*/
    .adorno-imagen-e-a{
        left: -71px;
        height: 200px;
    }

    /*segunda imagen post carusel*/
    .adorno-imagen-c-o{
        right: -4%;
        width: 160px;
        height: 160px;
    }
     
    /*tercera imagen post carusel*/
    .adorno-imagen-q-e{
        width: 115px;
    }

    /*cuarta imagen post carusel*/
    .adorno-imagen-p-f{
        display: none;
    }

    .adorno-imagen-ab-c4{
        width: 80px;
        top: -37px;
        right: -31px;
    }


   
}


/* RESPONSIVE — TABLETS Y LAPTOPS PEQUEÑAS */
@media (max-width: 991px){
    .two-column-section{
        height: 100vh;
    }

    .left-image-container{
        padding: 0;
        height: 70vh;
    }

    .adorno-imagen-c-a1{
        top: 92px;
        width: 100px;
    }

    .adorno-imagen-ab-c4{
        right: -24px;
        width: 71px;
        top: -36px;
    }

    .cursos-ofertas-section{
        padding-top: 30px;
    }

    .about-unik-image-wrapper{
        height: 300px;
    }

    .about-unik-image{
        height: 300px;
    }

    .que-esperar-unik{
        padding: 0px 40px 40px;
    }

    .que-esperar-filas{
        gap: 20px;
    }

    .que-esperar-item{
        height: 163px;
    }

    .que-esperar-contenido{
        justify-content: flex-start;
    }

    .adorno-imagen-c-o{
        width: auto;
        height: 120px;
        right: -4.4%;
    }

    .pfaq-section{
        padding: 20px 40px;
    }

    .adorno-imagen-p-f{
        display: none;
    }

    .adorno-imagen-q-e{
        width: 100px;
    }

    .adorno-imagen-ab-ma{
        width: 60px;
        left: -30px;
    }

}

/* MÓVILES */
@media (max-width: 600px) {
    .adorno-imagen-c-a1{
        display: none;
    }

    .adorno-imagen-c-a2{
        display: none;
    }

    .right-side{
        display: none;
    }
    
    .adorno-imagen-c-o{
        display: none;
    }

    .adorno-imagen-q-e{
        display: none;
    }

    .two-column-section{
        height: 100vh;
        display: block;
    }

    .cursos-ofertas-carousel-container{
        max-width: 380px;
    }

    .cursos-ofertas-wrapper{
        min-width: 0;
    }

    .feature-cards-container{
        flex-direction: column;
        align-items: center;
    }

    .feature-card{
        width: 325px;
    }

    .title-container-una-experiencia{
        padding-top: 40px;
        padding-bottom: 0px;
    }

    .about-unik-block1{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .fon-size{
        font-size: 35px;
    }
    .aprender-bold{
        line-height: 0.7;
        font-size: 70px;
    }

    .unik-logo-tar{
        width: 275px;
    }

    .about-unik-text{
        gap:1.6rem;
        align-items: center;
    }

    .about-unik-block2{
        text-align: center;
    }

    .about-unik-block3{
        text-align: center;
    }

    .adorno-imagen-ab-c4{
        display: none;
    }

    .adorno-imagen-ab-ma{
        display: none;
    }

    .about-unik-image-wrapper{
        width: 340px;
        height: 230px;
    }

    .about-unik-image{
        height: 230px;
    }

    .cursos-ofertas-header h1 {
        line-height: 50px;
        font-size: 48px;
    }

    .cursos-ofertas-header h1::after{
        bottom: 5px;
    }

    .cursos-ofertas-section{
        padding-bottom: 0px;
    }

    .titulo-centrado{
        font-size: 40px;
    }

    .que-esperar-header{
        margin-bottom: 15px;
    }

    .que-esperar-fila{
        flex-direction: column;
    }

    .que-esperar-item {
        width: 325px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 5px;
    }

    .que-esperar-filas{
        align-items: center;
    }

    .pfaq-main-title{
        line-height: 44px;
        margin-bottom: 0px;
        padding-bottom: 25px;
        font-size: 43px;
    }

    .pfaq-grid{
        flex-direction: column;
    }

    .left-side{
        display: block;
    }

    .fixed-image{
        height: 45%;
    }

    .cta-button{
        font-size: 1rem;
    }

    .cursos-ofertas-carousel-btn{
        display: none;
    }

    .variable-title{
        text-align: center;
    }

    .about-unik-btn{
        font-size: 18px;
    }

    .cursos-ofertas-subtitle{
        font-size: 14px;
    }

    .curso-oferta-card{
        width: 287px;
    }

    .titulo-linea1{
        line-height: 40px;
    }

    .main-title-una-experiencia{
        font-weight: 700;
    }

    .feature-icon{
        justify-content: center;
    }

    .feature-card h3{
        text-align: center;
    }

    .feature-card p{
        text-align: center;
    }

    .que-esperar-icono img{
        width: 50px;
        height: 50px;
    }

    .que-esperar-item h2{
        font-size: 25px;
    }

}

