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

body {
   font-family: 'Open Sans', Arial, sans-serif;
    color: #333;
    background: #111 url('../img/texturas/mujeres-background.jpg') repeat fixed center;
    background-size: cover;
    line-height: 1.6;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

/* -------------------------
   HERO
------------------------- */
.mujeres-hero {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.mujeres-hero .overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translateY(20%);
}

.hero-title-img {
    width: 500px;
    margin-bottom: 30px;
}

.hero-content p {
    font-size: 1.8rem;
    text-shadow: 0 0 15px rgba(0,0,0,0.8);
}

.btn-primary {
    background: linear-gradient(45deg, #b90b36, #7d0625);
    color: #fff;
    padding: 16px 50px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.3rem;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
    transition: 0.3s;
    margin: 30px 0;
}

.btn-primary:hover {
    transform: scale(1.05);
}

/* -------------------------
   SECCIONES GLASS
------------------------- */
.section-glass {
    border-radius: 20px;
    padding: 80px 40px;
    max-width: 100%;
    margin: 0 auto 80px auto;
    text-align: center;
    color: #fff;
}

.section-glass h2 {
    color: #ffe27a;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.9);
    font-size: 3rem;
    margin-bottom: 30px;
}

.section-glass p {
    font-size: 1.4rem;
    max-width: 900px;
    margin: auto;
    line-height: 1.8;
}

/* -------------------------
   SECCIONES BLANCAS
------------------------- */
.section-white {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.3);
    padding: 80px 40px;
    max-width: 100%;
    margin: 80px auto;
    text-align: center;
    color: #222;
}

.section-white h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    color: #222;
}

/* -------------------------
   SINOPSIS
------------------------- */
.mujeres-sinopsis {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: center;
    align-items: center;
}

.mujeres-sinopsis .text {
    flex: 1 1 500px;
    text-align: left;
    font-size: 1.3rem;
}

.mujeres-sinopsis .image img {
    width: 400px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* -------------------------
   FICHA TÉCNICA
------------------------- */
.mujeres-ficha ul {
    text-align: left;
    max-width: 700px;
    margin: auto;
    font-size: 1.3rem;
    line-height: 1.8;
}

.mujeres-ficha strong {
    color: #b90b36;
}

/* -------------------------
   RECURSOS
------------------------- */
.mujeres-recursos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 50px;
    padding: 20px 0;
}

.mujeres-recursos a {
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    padding: 40px 30px;
    border-radius: 20px;
    text-decoration: none;
    color: #000000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.mujeres-recursos a:hover {
    transform: translateY(-8px) scale(1.05);
}

.mujeres-recursos h3 {
    font-size: 1.6rem;
    font-weight: 600;
}

/* -------------------------
   Propuesta Educativa
------------------------- */
.educativa-section {
    padding: 80px 40px;
    max-width: 1200px;
    margin: 80px auto;
    text-align: center;
    color: #fff;
}

.educativa-section h2 {
    color: #ffe27a;
    font-size: 3rem;
    margin-bottom: 50px;
}

.educativa-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.educativa-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.4);
    width: 100%;
    max-width: 500px;
    text-align: left;
    backdrop-filter: blur(8px);
}

.educativa-card h3 {
    color: #ffe27a;
    font-size: 2rem;
    margin-bottom: 20px;
}

.educativa-card ul {
    padding-left: 20px;
    font-size: 1.3rem;
    line-height: 1.8;
}

/* -------------------------
   GALERÍA
------------------------- */
.mujeres-galeria-container {
    position: relative;
    max-width: 90%;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.mujeres-galeria-track {
    display: flex;
    transition: transform 0.5s ease;
}

.mujeres-galeria-track img {
    flex: 0 0 33.333%;
    height: 400px;
    object-fit: cover;
    padding: 10px;
    cursor: pointer;
}

.carrusel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0,0,0,0.5);
    border: none;
    color: white;
    font-size: 2rem;
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
}

.carrusel-btn:hover {
    background-color: rgba(0,0,0,0.8);
}

.carrusel-btn.prev { left: 20px; }
.carrusel-btn.next { right: 20px; }

/* POPUP GALERÍA */
.popup {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100% - 80px);
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    padding: 20px;
}

.popup-content {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 80vh;
    border-radius: 10px;
}

.close {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 50px;
    color: white;
    cursor: pointer;
}
/* -------------------------
   OPINIONES
------------------------- */
.opiniones-section {
    padding: 80px 40px;
    color: #fff;
}

.opiniones-section h2 {
    color: #ffe27a;
    font-size: 3rem;
    margin-bottom: 40px;
}

.opinion-card {
    font-size: 1.3rem;
    margin-bottom: 20px;
    display: none;
}

.opinion-card.active {
    display: block;
}

.opiniones-controles button {
    font-size: 2rem;
    background: none;
    border: none;
    color: #fff;
    margin: 0 10px;
    cursor: pointer;
}

.opiniones-controles button:hover {
    color: #ffe27a;
}

/* -------------------------
   RESERVA FINAL
------------------------- */
.mujeres-reserva {
    background: linear-gradient(135deg, #b90b36, #7d0625);
    color: #fff;
    padding: 100px 30px;
    text-align: center;
}

.reserva-contenido {
    max-width: 900px;
    margin: 0 auto;
}

.btn-reserva {
    background: #fff;
    color: #b90b36;
    padding: 20px 60px;
    font-size: 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
}

.btn-reserva:hover {
    transform: scale(1.05);
    background: #f9f9f9;
}/* ---------------------------------
   RESERVA - AJUSTE LISTA ESTÉTICA
--------------------------------- */

.reserva-beneficios {
  margin: 40px auto;
  text-align: left;
}

.reserva-beneficios ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.reserva-beneficios li {
  position: relative;
  font-size: 1.4rem;
  margin: 10px 0;
  padding-left: 30px;
}

.reserva-beneficios li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #ffe27a;
  font-weight: bold;
  font-size: 1.6rem;
}


/* -------------------------
   RESPONSIVE
------------------------- */
@media (max-width: 768px) {
    .mujeres-sinopsis {
        flex-direction: column;
    }

    .mujeres-sinopsis .image img {
        width: 100%;
    }

    .mujeres-galeria-track img {
        flex: 0 0 100%;
    }
}
