/* -------------------------
   RESET BÁSICO
------------------------- */
@import url(//codepen.io/chrisdothtml/pen/ojLzJK.css);
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f8fafc;
  line-height: 1.6;
  user-select: none; /* Evita que se seleccione el texto */
  background: #fafafa;
  color: #333;
}

/* -------------------------
   HEADER Y NAV
------------------------- */

p {
  user-select: none;
}

header h1 {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 700;
  font-family: "Georgia", serif; /* serif = más institucional */
  color: #003366; /* azul serio */
  letter-spacing: 0.5px;
  user-select: none;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}
nav ul li {
  margin: 0 20px;
}

nav ul li a {
  color: #1e293b;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #f59e0b;
}

/* -------------------------
   HEADER Y NAV
------------------------- */
header {
  background-color: #fbf2dd; /* color representativo */
  color: #1e293b;
  padding: 15px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  border-bottom: 4px solid #003366; /* franja azul institucional */
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  background: linear-gradient(135deg, #fef3d3, #fde68a);  
  text-align: center;
  user-select: none;  /* No se puede seleccionar */
}




.eliminar {
  display: inline-block;
  background-color: #c0392b;   /* rojo */
  font-size: 0.9rem;           /* más pequeño */
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  border: none;
  margin: 4px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 0 15px 0 rgba(0,0,0,.25);
  transition: all 0.25s cubic-bezier(0.310, -0.105, 0.430, 1.400);
  position: relative;
  width: 140px;       /* un poco más estrecho */
  height: 30px;       /* más bajo */
  line-height: 30px;  /* centra texto */
}

/* Texto */
.eliminar span {
  display: block;
  width: 72%;
  line-height: inherit;
  font-size: 0.9rem;   /* ajustado */
  text-transform: uppercase;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.25s cubic-bezier(0.310, -0.105, 0.430, 1.400);
}

.eliminar span:after {
  content: '';
  background-color: #a53125;
  width: 2px;
  height: 70%;
  position: absolute;
  top: 15%;
  right: -1px;
}

/* Icono */
.eliminar .icon {
  width: 28%;
  height: 100%;
  position: absolute;
  top: -10px;
  right: 0;
  text-align: center;
  transition: all 0.25s cubic-bezier(0.310, -0.105, 0.430, 1.400);
}

.eliminar .icon .fa {
  font-size: 20px;      /* ícono más pequeño */
  line-height: 50px;
  transition: all 0.25s cubic-bezier(0.310, -0.105, 0.430, 1.400),
              height 0.25s ease;
}

.eliminar .icon .fa-remove {
  height: 28px;
}

.eliminar .icon .fa-check {
  display: none;
}

/* Hover + success */
.eliminar.success span,
.eliminar:hover span {
  left: -72%;
  opacity: 0;
}

.eliminar.success .icon,
.eliminar:hover .icon {
  width: 100%;
}

.eliminar.success .icon .fa,
.eliminar:hover .icon .fa {
  font-size: 24px;
}

.eliminar.success {
  background-color: #27ae60;
}

.eliminar.success .icon .fa-remove {
  display: none;
}

.eliminar.success .icon .fa-check {
  display: inline-block;
}

/* Hover: ahora más oscuro en vez de aclarar */
.eliminar:hover {
  background-color: #a53125; /* tono más oscuro */
}

.eliminar:hover .icon .fa-remove {
  height: 36px;
}

.eliminar:active {
  opacity: 1;
}

/*                                        Boton de ocultar                                        */
.ocultar {
  display: inline-block;
  background-color: #7f8c8d;   /* gris base */
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  border: none;
  margin: 4px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 0 15px 0 rgba(0,0,0,.25);
  transition: all 0.25s cubic-bezier(0.310, -0.105, 0.430, 1.400);
  position: relative;
  width: 140px;
  height: 30px;
  line-height: 30px;
}

/* Texto */
.ocultar span {
  display: block;
  width: 72%;
  line-height: inherit;
  font-size: 0.9rem;
  text-transform: uppercase;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.25s cubic-bezier(0.310, -0.105, 0.430, 1.400);
}

.ocultar span:after {
  content: '';
  background-color: #6c7a7a; /* gris más oscuro */
  width: 2px;
  height: 70%;
  position: absolute;
  top: 15%;
  right: -1px;
}

/* Icono */
.ocultar .icon {
  width: 28%;
  height: 100%;
  position: absolute;
  top: 0px;
  right: 0;
  text-align: center;
  transition: all 0.25s cubic-bezier(0.310, -0.105, 0.430, 1.400);
}

.ocultar .icon .fa {
  font-size: 20px;
  line-height: 50px;
  transition: all 0.25s cubic-bezier(0.310, -0.105, 0.430, 1.400),
              height 0.25s ease;
}

.ocultar .icon .fa-eye-slash { /* ícono ocultar */
  height: 28px;
}

.ocultar .icon .fa-check {
  display: none;
}

/* Hover + success */
.ocultar.success span,
.ocultar:hover span {
  left: -72%;
  opacity: 0;
}

.ocultar.success .icon,
.ocultar:hover .icon {
  width: 100%;
}

.ocultar.success .icon .fa,
.ocultar:hover .icon .fa {
  font-size: 24px;
}

.ocultar.success {
  background-color: #27ae60; /* verde al confirmar */
}

.ocultar.success .icon .fa-eye-slash {
  display: none;
}

.ocultar.success .icon .fa-check {
  display: inline-block;
}

/* Hover: más oscuro */
.ocultar:hover {
  background-color: #6c7a7a;
}

.ocultar:hover .icon .fa-eye-slash {
  height: 36px;
}

.ocultar:active {
  opacity: 1;
}

/*                                                             boton de editar                                      */


/*                                        Boton de editar                                        */
.editar {
  display: inline-block;
  background-color: #2980b9;   /* azul base */
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  border: none;
  margin: 4px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 0 15px 0 rgba(0,0,0,.25);
  transition: all 0.25s cubic-bezier(0.310, -0.105, 0.430, 1.400);
  position: relative;
  width: 140px;
  height: 30px;
  line-height: 30px;
}

/* Texto */
.editar span {
  display: block;
  width: 72%;
  line-height: inherit;
  font-size: 0.9rem;
  text-transform: uppercase;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.25s cubic-bezier(0.310, -0.105, 0.430, 1.400);
}

.editar span:after {
  content: '';
  background-color: #21618c; /* azul más oscuro */
  width: 2px;
  height: 70%;
  position: absolute;
  top: 15%;
  right: -1px;
}

/* Icono */
.editar .icon {
  width: 28%;
  height: 100%;
  position: absolute;
  top: 0px;
  right: 0;
  text-align: center;
  transition: all 0.25s cubic-bezier(0.310, -0.105, 0.430, 1.400);
}

.editar .icon .fa {
  font-size: 20px;
  line-height: 50px;
  transition: all 0.25s cubic-bezier(0.310, -0.105, 0.430, 1.400),
              height 0.25s ease;
}

.editar .icon .fa-pen-to-square { /* ícono editar */
  height: 28px;
}

.editar .icon .fa-check {
  display: none;
}

/* Hover + success */
.editar.success span,
.editar:hover span {
  left: -72%;
  opacity: 0;
}

.editar.success .icon,
.editar:hover .icon {
  width: 100%;
}

.editar.success .icon .fa,
.editar:hover .icon .fa {
  font-size: 24px;
}

.editar.success {
  background-color: #27ae60; /* verde al confirmar */
}

.editar.success .icon .fa-pen-to-square {
  display: none;
}

.editar.success .icon .fa-check {
  display: inline-block;
}

/* Hover: más oscuro */
.editar:hover {
  background-color: #21618c;
}

.editar:hover .icon .fa-pen-to-square {
  height: 36px;
}

.editar:active {
  opacity: 1;
}
/*                                                        Botón de publica                                          */
.publicar {
  display: inline-block;
  background-color: #16a085;   /* verde azulado base */
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  border: none;
  margin: 4px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 0 15px 0 rgba(0,0,0,.25);
  transition: all 0.25s cubic-bezier(0.310, -0.105, 0.430, 1.400);
  position: relative;
  width: 140px;
  height: 30px;
  line-height: 30px;
}

/* Texto */
.publicar span {
  display: block;
  width: 72%;
  line-height: inherit;
  font-size: 0.9rem;
  text-transform: uppercase;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.25s cubic-bezier(0.310, -0.105, 0.430, 1.400);
}

.publicar span:after {
  content: '';
  background-color: #138d75; /* verde azulado más oscuro */
  width: 2px;
  height: 70%;
  position: absolute;
  top: 15%;
  right: -1px;
}

/* Icono */
.publicar .icon {
  width: 28%;
  height: 100%;
  position: absolute;
  top: 0px;
  right: 0;
  text-align: center;
  transition: all 0.25s cubic-bezier(0.310, -0.105, 0.430, 1.400);
}

.publicar .icon .fa {
  font-size: 20px;
  line-height: 50px;
  transition: all 0.25s cubic-bezier(0.310, -0.105, 0.430, 1.400),
              height 0.25s ease;
}

.publicar .icon .fa-paper-plane { /* ícono publicar */
  height: 28px;
}

.publicar .icon .fa-check {
  display: none;
}

/* Hover + success */
.publicar.success span,
.publicar:hover span {
  left: -72%;
  opacity: 0;
}

.publicar.success .icon,
.publicar:hover .icon {
  width: 100%;
}

.publicar.success .icon .fa,
.publicar:hover .icon .fa {
  font-size: 24px;
}

.publicar.success {
  background-color: #27ae60; /* verde al confirmar */
}

.publicar.success .icon .fa-paper-plane {
  display: none;
}

.publicar.success .icon .fa-check {
  display: inline-block;
}

/* Hover: más oscuro */
.publicar:hover {
  background-color: #138d75;
}

.publicar:hover .icon .fa-paper-plane {
  height: 36px;
}

.publicar:active {
  opacity: 1;
}
/*                                                   Botón de rechazar                                                */
.rechazar {
  display: inline-block;
  background-color: #c0392b;   /* rojo base */
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  border: none;
  margin: 4px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 0 15px 0 rgba(0,0,0,.25);
  transition: all 0.25s cubic-bezier(0.310, -0.105, 0.430, 1.400);
  position: relative;
  width: 140px;
  height: 30px;
  line-height: 30px;
}

/* Texto */
.rechazar span {
  display: block;
  width: 72%;
  line-height: inherit;
  font-size: 0.9rem;
  text-transform: uppercase;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.25s cubic-bezier(0.310, -0.105, 0.430, 1.400);
}

.rechazar span:after {
  content: '';
  background-color: #922b21; /* rojo más oscuro */
  width: 2px;
  height: 70%;
  position: absolute;
  top: 15%;
  right: -1px;
}

/* Icono */
.rechazar .icon {
  width: 28%;
  height: 100%;
  position: absolute;
  top: 0px;
  right: 0;
  text-align: center;
  transition: all 0.25s cubic-bezier(0.310, -0.105, 0.430, 1.400);
}

.rechazar .icon .fa {
  font-size: 20px;
  line-height: 50px;
  transition: all 0.25s cubic-bezier(0.310, -0.105, 0.430, 1.400),
              height 0.25s ease;
}

.rechazar .icon .fa-ban { /* ícono rechazar */
  height: 28px;
}

.rechazar .icon .fa-check {
  display: none;
}

/* Hover + success */
.rechazar.success span,
.rechazar:hover span {
  left: -72%;
  opacity: 0;
}

.rechazar.success .icon,
.rechazar:hover .icon {
  width: 100%;
}

.rechazar.success .icon .fa,
.rechazar:hover .icon .fa {
  font-size: 24px;
}

.rechazar.success {
  background-color: #27ae60; /* verde al confirmar */
}

.rechazar.success .icon .fa-ban {
  display: none;
}

.rechazar.success .icon .fa-check {
  display: inline-block;
}

/* Hover: más oscuro */
.rechazar:hover {
  background-color: #922b21;
}

.rechazar:hover .icon .fa-ban {
  height: 36px;
}

.rechazar:active {
  opacity: 1;
}
/* Menú de navegación */


nav ul li a {
  font-family: "Poppins", sans-serif; /* sans serif moderna */
  color: #1e293b; /* gris oscuro sobrio */
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s ease, border-bottom 0.3s ease;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

nav ul li a:hover {
  color: #003366; /* azul institucional en hover */
  border-bottom: 2px solid #003366;
}

/* -------------------------
   SECCIONES GENERALES
------------------------- */
section {
  padding: 20px;
  margin: 20px auto;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  max-width: 1000px;
}



section h2{
      user-select: none;  /* No se puede seleccionar */
    pointer-events: none; /* Ignora clics */
}
section h3 {
  margin-top: 0;
  color: #334155;
}
.titulo {
  text-align: center;         
  font-family: 'Segoe UI', sans-serif;  
  font-size: 2.5rem;          
  font-weight: bold;          
  text-transform: uppercase;  
  letter-spacing: 3px;        

  /* Gradiente azul institucional */
  background: linear-gradient(90deg, #1e293b, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  /* Sombra ligera para resaltar */
 

  /* Opcional: no seleccionable ni clickeable */
  user-select: none;  
  pointer-events: none;  
}

.subtitulo {
  text-align: center;             /* Centrado debajo del h2 */
  font-family: 'Georgia', serif;  /* Fuente más formal para contraste */
  font-size: 1.2rem;              /* Un poco más grande que lo normal */
  color: #555;                    /* Gris suave */
  max-width: 700px;               /* Para que no ocupe todo el ancho */
  margin: 15px auto;              /* Centrado con espacio arriba y abajo */
  line-height: 1.6;               /* Mejor lectura */
  font-style: italic;             /* Toque distintivo */
  opacity: 0.9;                   /* Suave en comparación al título */

  /* Opcional: evitar selección/clicks como el h2 */
  user-select: none;  
  pointer-events: none;  
}
/* ----- SECCIÓN CONTACTO ----- */
#contacto {
  max-width: 700px;
  margin: 3rem auto;
  padding: 2rem;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

#contacto h2 {
  text-align: center;
  color: #2c3e50;
  margin-bottom: 1rem;
}

#contacto .intro {
  text-align: center;
  margin-bottom: 2rem;
  color: #555;
  font-size: 1.1rem;
}

/* -------------------------
   ARTÍCULOS (LISTA + PAGINACIÓN)
------------------------- */
#articles-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

#articles-list article {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}

#articles-list article:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

#articles-list h3 {
  margin-top: 0;
  margin-bottom: 10px;
  color: #1e293b;
  font-size: 1.2rem;
}

#articles-list p {
  color: #475569;
  font-size: 0.95rem;
  margin-bottom: 12px;
}

#articles-list img {
  border-radius: 8px;
  max-width: 100%;
  margin-bottom: 12px;
  object-fit: cover;
}





/* Paginación */
#pagination {
  display: flex;
  justify-content: center;
  margin: 20px 0;
  gap: 8px;
  flex-wrap: wrap;
}

#pagination .page-btn {
  padding: 8px 12px;
  border: 1px solid #ccc;
  background: #f8fafc;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
}

#pagination .page-btn:hover {
  background: #e2e8f0;
}

#pagination .page-btn.active {
  background: #2563eb;
  color: #fff;
  border-color: #2563eb;
}

/* -------------------------
   FORMULARIOS
------------------------- */
form {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

form label {
  margin-bottom: 5px;
  font-weight: 600;
}

form input,
form textarea {
  margin-bottom: 12px;
  padding: 10px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  font-size: 1rem;
}

form input:focus,
form textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 2px rgba(37,99,235,0.2);
}

form button {
  padding: 10px;
  background: #2563eb;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s;
}

form button:hover {
  background: #1d4ed8;
}

/* -------------------------
   BOTONES EN ARTÍCULOS
------------------------- */
article button {
  margin: 5px;
  padding: 6px 12px;
  border: none;
  border-radius: 6px;
  background: #e2e8f0;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background 0.3s;
}

article button:hover {
  background: #cbd5e1;
}

/* -------------------------
   LISTA DE ARTÍCULOS Y ENTREVISTAS (ÁREA PRIVADA)
------------------------- */
#my-articles-list article,
#my-interview-list article {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 15px;
  background: #f9fafb;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

#my-articles-list h3,
#my-interview-list h3 {
  margin-top: 0;
  font-size: 1.1rem;
  color: #1e293b;
}

/* -------------------------
   CARRUSEL
------------------------- */


.carrusel-item {
  position: relative;
}

.carrusel-item img {
  display: block;
  width: 100%;
  border-radius: 8px;
}


.carrusel {
  position: relative;
  max-width: 600px;
  max-height: 600px;
  margin: 20px auto;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.carrusel-inner {
  display: flex;
  transition: transform 0.5s ease;
}

.carrusel-item {
  min-width: 100%;
  text-align: center;
}

.carrusel-item img {
  width: 100%;
  height: 600px;
  border-radius: 8px;
}

.carrusel input {
  display: none;
}

.carrusel-control {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: #333;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  cursor: pointer;
}

#slide1:checked ~ .carrusel-inner { transform: translateX(0); }
#slide2:checked ~ .carrusel-inner { transform: translateX(-100%); }
#slide3:checked ~ .carrusel-inner { transform: translateX(-200%); }

.carrusel-control:nth-of-type(1) { left: calc(50% - 30px); }
.carrusel-control:nth-of-type(2) { left: 50%; }
.carrusel-control:nth-of-type(3) { left: calc(50% + 30px); }
.carrusel-item iframe {
  width: 100%;
  height: 600px; /* ajustable según tu diseño */
  border: 0;
  border-radius: 8px;
}
/* -------------------------
   FOOTER
------------------------- */
footer {
  background-color: #1e293b;   /* Azul oscuro elegante */
  color: #fff;
  text-align: center;
  padding: 20px 10px;
  margin-top: 40px;
  border-top: 4px solid #f59e0b;  /* Naranja cálido */
  font-size: 0.95rem;
  user-select: none;   /* Solo evita selección de texto */
}

footer p {
  margin: 5px 0;
  opacity: 0.9;
}

footer .social {
  margin-top: 10px;
}

footer .social a {
  margin: 0 10px;
  color: #f59e0b;
  font-size: 1.2rem;
  text-decoration: none;
  transition: color 0.2s;
}

footer .social a:hover {
  color: #fff; /* efecto hover */
}

/* -------------------------
   OTROS
------------------------- */
.hidden {
  display: none !important;
}

.miembro {
  text-align: center;
  margin: 20px;
  display: inline-block;
  width: 200px;
}

/* -------------------------
   RESPONSIVE
------------------------- */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    margin-top: 10px;
  }
  section {
    margin: 10px;
  }
}
/* -------------------------
   LINKS EN ENTREVISTAS
------------------------- */
#interview-list a {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 14px;
  background: #2563eb;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.9rem;
  transition: background 0.3s;
}

#interview-list a:hover {
  background: #1d4ed8;
}.inscripcion-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 18px 36px;
  font-size: 1.2rem;
  font-weight: 700;
  background: #f59e0b;       /* naranja cálido base */
  color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 1000;
  cursor: pointer;
  transition: background 0.3s, transform 0.1s;
}

.inscripcion-btn:hover {
  background: #d97706;       /* naranja más oscuro en hover */
  transform: scale(1.05);
}

.inscripcion-btn:active {
  background: #f59e0b;       /* mismo color base para el clic */
  transform: scale(0.97);    /* pequeño feedback de presión */
}

/* Botón de Cerrar Sesión */
.logout-btn {
  display: inline-block;
  margin: 10px 0;
  padding: 10px 16px;
  background: #dc2626; /* rojo */
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.logout-btn:hover {
  background: #b91c1c; /* rojo más oscuro al pasar el mouse */
  transform: scale(1.05);
}

.logout-btn:active {
  background: #991b1b; /* rojo más intenso al hacer clic */
  transform: scale(0.97);
}


/* Texto dentro del carrusel */
.carrusel-item p {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(30, 41, 59, 0.7); /* gris azulado oscuro semitransparente */
  color: #fff;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 500;
  user-select: none;
  pointer-events: none;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.carrusel-prev,
.carrusel-next {
  position: absolute;
  top: 50%;  
  transform: translateY(-50%);
  background: rgba(30, 41, 59, 0.6); /* gris azulado semitransparente */
  color: #fff;
  border: none;
  font-size: 1.8rem;
  padding: 6px 10px;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.3s, box-shadow 0.3s; /* quitamos transform */
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.carrusel-prev:hover,
.carrusel-next:hover {
  background: rgba(30, 41, 59, 0.85); /* más oscuro en hover */
  box-shadow: 0 3px 8px rgba(0,0,0,0.3); /* leve sombra extra */
}

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


#interview-list h2 {
  font-family: "Georgia", serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #222; /* gris oscuro neutro, más formal que el azul brillante */
  text-align: left; /* alineado a la izquierda: aspecto editorial */
  margin: 0.5rem 0 1rem 0;
  line-height: 1.4;
  border-bottom: 1px solid #ccc; /* sutil separación */
  padding-bottom: 0.4rem;
}


#interview-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

#interview-list article {
  background: #fff;
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.2s ease-in-out;
}

#interview-list article:hover {
  transform: translateY(-5px);
}
/* Contenedor responsivo para el iframe */
.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* relación 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 8px; /* opcional, esquinas redondeadas */
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

#articles-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

#articles-list article {
  background: #fff;
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  text-align: center;
  align-items: center;
  transition: transform 0.2s ease-in-out;
}

#articles-list article:hover {
  transform: translateY(-5px);
}

#articles-list img {
  max-width: 80%;
  margin: 0 auto;
  object-fit: cover;
}




#articles-list img.article-img {
  width: 100%;          /* ocupa todo el ancho disponible */
  max-height: 250px;    /* límite de alto */
  object-fit: cover;    /* recorta si sobrepasa */
  border-radius: 8px;
  margin-bottom: 12px;
}
/* -------- Estructura general -------- */


/* Contenedor general para textos */
.container {
  width: 100%;
  max-width: 1200px; /* ancho máximo para no ser incómodo en pantallas grandes */
  margin: 0 auto;    /* centra */
  padding: 0 20px;   /* márgenes laterales */
}

/* Botones "Leer más" armonizados */
.LeerMas {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 14px;
  background: #3b82f6;        /* azul armonioso con tu gradiente */
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.3s, transform 0.2s;
}

.LeerMas:hover {
  background: #1e40af;        /* azul más intenso al pasar el mouse */
  transform: scale(1.05);
}

.LeerMas:active {
  background: #1e3a8a;        /* azul aún más oscuro al hacer clic */
  transform: scale(0.97);
}







/* -------------------------
   SECCIÓN QUIÉNES SOMOS
------------------------- */
#quienessomos {
  padding: 40px 20px;
  max-width: 1000px;
  margin: 0 auto;
  background-color: #fff; /* fondo blanco */
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-align: center;
}

/* Contenedor de miembros */
.miembro {
  display: inline-block;
  width: 250px;
  margin: 20px;
  vertical-align: top;
  background-color: #f8fafc; /* fondo ligeramente gris */
  border-radius: 12px;
  padding: 20px;
    text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}

.miembro:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.12);
}

.miembro img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid #3b82f6; /* borde azul institucional */
}

.miembro h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;       /* tamaño destacado pero equilibrado */
  font-weight: 600;          /* un poco más de peso para resaltar */
  color: #1e293b;            /* azul/negro sólido */
  margin-bottom: 8px;
  text-align: center;
  transition: color 0.3s, transform 0.2s;
}

.miembro p {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.4;
}

.miembro:hover h3 {
  color: #3b82f6;           /* azul institucional al pasar el mouse */
  transform: translateY(-2px); /* leve elevación para efecto hover */
}



/* -------------------------
   RESPONSIVE
------------------------- */
@media (max-width: 900px) {
  .miembro {
    width: 45%;
    margin: 15px 2.5%;
  }
}

@media (max-width: 600px) {
  .miembro {
    width: 90%;
    margin: 15px auto;
  }
}
/* ------------------------- BOTÓN CREAR (FONDO Y ESQUINA INFERIOR DERECHA) ------------------------- */
.crear-btn {
  display: inline-block;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  background: #2563eb;      /* azul institucional */
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  position: fixed;
  bottom: 20px; /* Espacio desde la parte inferior */
  right: 20px;  /* Espacio desde la parte derecha */
  z-index: 1000; /* Asegura que el botón quede encima de otros elementos */
  font-family: 'Roboto', sans-serif; /* Fuente consistente */
}

.crear-btn:hover {
  background: #1d4ed8;      /* azul más oscuro */
  transform: translateY(-2px);
  box-shadow: 0 5px 12px rgba(0,0,0,0.15);
}

.crear-btn:active {
  background: #1e40af;      /* azul intenso al hacer clic */
  transform: scale(0.97);
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}

.crear-btn:focus {
  outline: 2px solid #1e40af; /* Resalta el botón al recibir foco */
  outline-offset: 2px;
}

/* ------------------------- BOTÓN ENTREVISTA ------------------------- */
.entrevista-btn {
  display: inline-block;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  background: #2563eb;      /* azul institucional */
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  position: fixed;
  bottom: 70px; /* Espacio desde la parte inferior */
  right: 20px;  /* Espacio desde la parte derecha */
  z-index: 1000; /* Asegura que el botón quede encima de otros elementos */
  font-family: 'Roboto', sans-serif; /* Fuente consistente */
   text-decoration: none; 
}

.entrevista-btn:hover {
  background: #1d4ed8;      /* azul más oscuro */
  transform: translateY(-2px);
  box-shadow: 0 5px 12px rgba(0,0,0,0.15);
}

.entrevista-btn:active {
  background: #1e40af;      /* azul intenso al hacer clic */
  transform: scale(0.97);
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}

.entrevista-btn:focus {
  outline: 2px solid #1e40af; /* Resalta el botón al recibir foco */
  outline-offset: 2px;
}

.logo-link {
  text-decoration: none;  /* quita subrayado */
  color: inherit;         /* hereda el color del h1 */
}
.logo-link:hover {
  text-decoration: none;  /* evita subrayado en hover */
  color: inherit;         /* evita que cambie de color en hover */
}
.social-icons {
  margin-top: 10px;
}

.social-icons a {
  margin: 0 10px;
  font-size: 28px; /* tamaño de los iconos */
  color: #f59e0b;     /* color base */
  text-decoration: none;
  transition: color 0.3s ease;
}




.social-icons a:hover {
  color: #0077b5; /* color al pasar el ratón (puedes poner diferente por red si quieres) */
  cursor: pointer;
}

.social-icons a.telegram:hover {
  color: #0088cc;

  cursor: pointer;
}
.social-icons a.instagram:hover {
  color: #E4405F;
  cursor: pointer;
}
.social-icons a.whatsapp:hover {
  color: #25D366;
  cursor: pointer;
}
.social-icons a.x:hover {
  color: #000000;
   -webkit-text-stroke: 1px #ffffff; 
  cursor: pointer;

}.social-icons a.tiktok:hover {
  color: #EE1D52  ;

  cursor: pointer;
}
nav ul {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
  }
  nav ul li {
    margin: 5px 0;
  }
}
@media (max-width: 768px) {
  section {
    padding: 15px;
    margin: 10px;
  }
}
@media (max-width: 600px) {
  .carrusel-item p {
    font-size: 0.85rem;
    padding: 4px 8px;
  }
}
@media (max-width: 600px) {
  .inscripcion-btn, .crear-btn, .entrevista-btn {
    padding: 12px 20px;
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  .social-icons a {
    font-size: 24px;
    margin: 0 5px;
  }
}
/* Botón hamburguesa */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  cursor: pointer;
  margin-right: 20px;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: #003366;
  border-radius: 2px;
  transition: all 0.3s;
}

/* Menú oculto en móviles */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    gap: 15px;
    display: none; /* oculto por defecto */
    width: 100%;
    text-align: center;
    background-color: #fbf2dd;
    padding: 10px 0;
    position: absolute;
    top: 60px; /* debajo del header */
    left: 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border-top: 1px solid #003366;
  }

  nav ul.show {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  header {
    position: relative;
    justify-content: space-between;
  }
}

/* Animación cuando se activa el menú */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
@media (max-width: 600px) {
    #my-articles-list article div button,
    #my-interview-list article div button,
    #my-articles-list article div a.doc-btn {
        flex: 1 1 100%; /* Ocupa todo el ancho en móviles */
    }

    #my-interview-list article iframe {
        width: 100% !important;
        height: auto !important;
    }
}
  .form-container {
    max-width: 400px;
    margin: 20px auto;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  }
  #estilo,#categoria {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  font-size: 16px;   /* tamaño de letra del select */
  font-family: "Segoe UI", sans-serif; /* tipo de letra */
  color: #333333;       /* color del texto */
  background: #f9f9f9;
  border: 1px solid #4a90e2;
}




/* Agregar al final de tu styles.css */
.envelope {
    width: 60px;
    height: 40px;
    border: 2px solid #f5f3ce;
    border-radius: 6px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -30px;
    margin-top: -20px;
    display: none;
    background-color: #1f2937;
    z-index: 10;
}

.envelope::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 20px solid #f5f3ce;
    top: -20px;
    left: 0;
}

.send-animation {
    display: block;
    animation: fly 1.5s forwards;
}

@keyframes fly {
    0% { transform: translate(0, 0) rotate(0deg); opacity: 1; }
    100% { transform: translate(200px, -200px) rotate(45deg); opacity: 0; }
}








/* Botón animado estilo CTA */
.cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 45px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    color: #f5f3ce;
    background: #0505A9;
    transition: 1s;
    box-shadow: 6px 6px 0 black;
    transform: skewX(-15deg);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.cta span {
    transform: skewX(15deg);
    display: inline-block;
    transition: 0.5s;
}

.cta:hover {
    transition: 0.5s;
    box-shadow: 10px 10px 0 #fbbf24;
}

/* Separación entre texto y icono */
.cta svg {
    margin-left: 10px;
    transition: transform 0.3s;
}

.cta:hover svg {
    transform: translateX(5px);
}



/* Posicionamiento dinámico abajo a la derecha */
.inscripcion-btn.blob-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  padding: 20px 46px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 16px;
  color: #003366;        /* color texto */
  background: transparent;
  border: 2px solid #0505A9;
  border-radius: 30px;
  cursor: pointer;
  overflow: hidden;
  transition: color 0.5s;
}

.inscripcion-btn.blob-btn:hover {
  color: #111827;
}

/* Fondo interno del botón */
.blob-btn__inner {
  z-index: -1;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  background: #fff;
}

/* Contenedor de blobs */
.blob-btn__blobs {
  position: relative;
  display: block;
  height: 100%;
  filter: url('#goo');
}

/* Cada blob individual */
.blob-btn__blob {
  position: absolute;
  top: 2px;
  width: 25%;
  height: 100%;
  background: #fbbf24;
  border-radius: 100%;
  transform: translateY(150%) scale(1.7);
  transition: transform 0.45s;
}

/* Distribución y delay de cada blob */
.blob-btn__blob:nth-child(1) { left: 0%; transition-delay: 0s; }
.blob-btn__blob:nth-child(2) { left: 25%; transition-delay: 0.08s; }
.blob-btn__blob:nth-child(3) { left: 50%; transition-delay: 0.16s; }
.blob-btn__blob:nth-child(4) { left: 75%; transition-delay: 0.24s; }

/* Animación al hover */
.blob-btn.blob-btn:hover .blob-btn__blob {
  transform: translateY(0) scale(1.7);
}

/* Oculta SVG */
.buttons svg { display: none; }







#reject-modal {
  display: none; /* oculto por defecto */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: fadeIn 0.3s;
}


/* Contenido del modal */
.modal-content {
  background: #fff;
  padding: 20px 25px;
  border-radius: 10px;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  animation: slideIn 0.3s;
}

/* Título */
.modal-content h3 {
  margin-top: 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #c0392b; /* rojo estilo botón rechazar */
}

/* Textarea */
#reject-message {
  width: 100%;
  min-height: 80px;
  margin: 10px 0 15px;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  resize: vertical;
  font-size: 0.95rem;
  font-family: Arial, sans-serif;
}

/* Botones */
.modal-buttons {
  text-align: right;
}

.btn-cancel,
.btn-send {
  padding: 6px 12px;
  border-radius: 6px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  margin-left: 8px;
}

/* Cancelar */
.btn-cancel {
  background: #7f8c8d;
  color: #fff;
}

.btn-cancel:hover {
  background: #6c7a7a;
}

/* Enviar */
.btn-send {
  background: #c0392b;
  color: #fff;
}

.btn-send:hover {
  background: #a53125;
}

/* Animaciones */
@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

@keyframes slideIn {
  from {transform: translateY(-20px); opacity:0;}
  to {transform: translateY(0); opacity:1;}
}




.modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal-content {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  max-width: 400px;
  width: 90%;
  
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.modal-buttons button {
  margin: 10px;
  padding: 8px 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
}
/*Botones de confirmacion para eliminar*/
#delete-confirm { background-color: #c0392b; color: #fff; }
#delete-cancel { background-color: #7f8c8d; color: #fff; }
#delete-confirm:hover { background-color: #a53125; }
#delete-cancel:hover { background-color: #6c7a7a; }

/*Botones de confirmacion para ocultar*/
#ocultar-confirm { background-color: #c0392b; color: #fff; }
#ocultar-cancel { background-color: #7f8c8d; color: #fff; }
#ocultar-confirm:hover { background-color: #a53125; }
#ocultar-cancel:hover { background-color: #6c7a7a; }


/*-------------------------------------------------------------------------------------------------------------------
                      El modo oscuro
------------------------------------------------------------------------------------------------------------------*/

@media (prefers-color-scheme: dark) {
  body {
    background-color: #111827;  /* fondo oscuro elegante */
    color: #f5f3ce;             /* texto claro legible */
  }

  header {
    background: linear-gradient(135deg, #1f2937, #111827);
    color: #f5f3ce;
    border-bottom: 4px solid #f59e0b;
  }

  header h1 {
    color: #f59e0b;
  }

  nav ul li a {
    color: #f5f3ce;
  }

  nav ul li a:hover {
    color: #60a5fa;             /* azul suave para hover */
    border-bottom-color: #60a5fa;
  }

  .hamburger span {
    background-color: #f5f3ce;
  }

  section, #contacto, #quienessomos,
  #articles-list article, #interview-list article,
  .miembro {
    background-color: #1f2937;  /* gris azulado oscuro */
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
    color: #f5f3ce;
  }
  
#articles-list article p,
#interview-list article p {
    color: #f5f3ce; /* el color que desees */
}
.titulo {

  background: linear-gradient(90deg, #f59e0b, #fbbf24);
  text-align: center;         
  font-family: 'Segoe UI', sans-serif;  
  font-size: 2.5rem;          
  font-weight: bold;          
  text-transform: uppercase;  
  letter-spacing: 3px;        
  /* Gradiente azul institucional */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  /* Sombra ligera para resaltar */
 

  /* Opcional: no seleccionable ni clickeable */
  user-select: none;  
  pointer-events: none;  
}


  .subtitulo {
    color: #f5f3ce;
  }

  .LeerMas, .inscripcion-btn, .crear-btn, .entrevista-btn {
    background-color: #f59e0b;
    color: #111827;             /* texto oscuro sobre botón */
  }

  .LeerMas:hover,
  .inscripcion-btn:hover,
  .crear-btn:hover,
  .entrevista-btn:hover {
    background-color: #fbbf24;  /* naranja más brillante en hover */
  }

  footer {
    background-color: #111827;
    border-top: 4px solid #f59e0b;
    color: #f5f3ce;
  }

  footer .social-icons a {
    color: #f59e0b;
  }

  footer .social-icons a:hover {
    color: #60a5fa;             /* azul suave en hover */
  }

  .carrusel-item p {
    background: rgba(30, 41, 59, 0.85);
    color: #f5f3ce;
  }

  .carrusel-prev, .carrusel-next {
    background: rgba(30, 41, 59, 0.8);
    color: #f5f3ce;
  }

  #articles-list img,
  #interview-list img,
  .miembro img {
    filter: brightness(0.85);   /* suaviza imágenes */
  }

  input, textarea, select {
    background-color: #1f2937;
    color: #f5f3ce;
    border: 1px solid #f59e0b;
  }

  input::placeholder, textarea::placeholder {
    color: #f5f3ce;
    opacity: 0.7;
  }
/* Contenido de artículos (Quill) */
#my-articles-list article p,
#my-interview-list article p,
.ql-editor {
    color: #1e293b; /* Gris oscuro para que contraste con fondo blanco */
    font-family: 'Arial', sans-serif; /* Fuente legible */
}

/* Centrado de Quill */
.ql-align-center {
    text-align: center;
}

#my-articles-list article p,
#my-interview-list article p,
.ql-editor {
    color: #1e293b !important; /* negro/oscuro garantizado */
    font-family: 'Arial', sans-serif;
}
/* Contenido de artículos y entrevistas (Quill) */
#my-articles-list article p,
#my-interview-list article p,
.ql-editor {
    color: #1e293b !important;  /* texto oscuro */
    font-family: 'Arial', sans-serif;
}

/* Contenido de artículos y entrevistas (Quill) */
#my-articles-list article p,
#my-interview-list article p,
.ql-editor,

.ql-indent-1 {
    color: #1e293b !important;  /* texto oscuro */
    font-family: 'Arial', sans-serif;
}

/* Encabezados dentro del contenido */
#my-articles-list article h1,
#my-articles-list article h2,
#my-articles-list article h3,
#my-articles-list article h4,
#my-articles-list article h5,
#my-articles-list article h6,
#my-interview-list article h1,
#my-interview-list article h2,
#my-interview-list article h3,
#my-interview-list article h4,
#my-interview-list article h5,
#my-interview-list article h6 {
    color: #1e293b !important;  /* encabezados oscuros */
    font-family: 'Arial', sans-serif;
}
#my-articles-list article li,

#my-interview-list article li {
    color: #1e293b !important;  /* texto oscuro */
    font-family: 'Arial', sans-serif;
}
#quienessomos {
    padding: 40px 20px;
    max-width: 1000px;
    margin: 0 auto;
    background-color: #1f2937; /* fondo oscuro */
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
    text-align: center;
  }

  /* Contenedor de miembros */
  .miembro {
    display: inline-block;
    width: 250px;
    margin: 20px;
    vertical-align: top;
    background-color: #273449; /* gris azulado oscuro */
    border-radius: 12px;
    padding: 20px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .miembro:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.7);
  }

  .miembro img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid #f59e0b; /* borde dorado para destacar en modo oscuro */
    filter: brightness(0.9); /* suaviza el brillo */
  }

  .miembro h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #f5f3ce; /* texto claro para modo oscuro */
    margin-bottom: 8px;
    text-align: center;
    transition: color 0.3s, transform 0.2s;
  }

  .miembro:hover h3 {
    color: #fbbf24; /* dorado brillante al pasar el mouse */
    transform: translateY(-2px);
  }

  .miembro p {
    font-size: 0.95rem;
    color: #d1d5db; /* gris claro legible */
    line-height: 1.4;
  }
     .hamburger span {
    background-color: #f5f3ce;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

#nav-menu ul {
  background-color: #1f2937; /* fondo oscuro */
}

#nav-menu ul li a {
  color: #f5f3ce; /* texto claro */
}
  
.ql-toolbar {
    background-color: #1f2937;   /* fondo oscuro */
    border: 1px solid #f59e0b;  /* borde dorado */
    color: #f5f3ce;             /* texto claro */
}

.ql-toolbar button, .ql-toolbar .ql-picker {
    color: #f5f3ce;             /* iconos claros */
}

.ql-toolbar button:hover, .ql-toolbar .ql-picker:hover {
    color: #fbbf24;             /* dorado al pasar el mouse */
    background-color: #273449;  /* ligero fondo en hover */
}

.ql-toolbar .ql-picker-label {
    color: #f5f3ce;
}
.ql-picker-item {
  background-color: #1e293b !important; /* fondo azul gris oscuro */

  border-radius: 4px;                  /* bordes redondeados opcional */
  padding: 4px 8px;                    /* espacio interno */
}
.ql-toolbar .ql-picker-options {
    background-color: #1f2937;
    color: #f5f3ce;
    border: 1px solid #f59e0b;
}
.ql-picker-options {
  background-color: #1e293b !important; /* fondo oscuro */
  border: 1px solid #475569 !important; /* borde gris */
  border-radius: 6px;
  padding: 4px 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4); /* sombra */
}
.ql-toolbar .ql-stroke {
    stroke: #f5f3ce;  /* color de los iconos de Quill */
}

.ql-toolbar .ql-fill {
    fill: #f5f3ce;
}
.ql-emoji-toolbar {
    background-color: #1f2937;
    border: 1px solid #f59e0b;
}

.ql-emoji-toolbar button {
    color: #f5f3ce;
}

.ql-emoji-toolbar button:hover {
    background-color: #273449;
    color: #fbbf24;
}
  .form-container {
    max-width: 400px;
    margin: 20px auto;
    padding: 20px;
    background: #273449;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  }
  #estilo,#categoria {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  font-size: 16px;   /* tamaño de letra del select */
  font-family: "Segoe UI", sans-serif; /* tipo de letra */
  color: #f5f3ce;       /* color del texto */
  background: #1f2937;
  border: 1px solid #333;
}
/* Agregar al final de tu styles.css */
.envelope {
    width: 60px;
    height: 40px;
    border: 2px solid #f5f3ce;
    border-radius: 6px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -30px;
    margin-top: -20px;
    display: none;
    background-color: #1f2937;
    z-index: 10;
}

.envelope::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 20px solid #f5f3ce;
    top: -20px;
    left: 0;
}

.send-animation {
    display: block;
    animation: fly 1.5s forwards;
}

@keyframes fly {
    0% { transform: translate(0, 0) rotate(0deg); opacity: 1; }
    100% { transform: translate(200px, -200px) rotate(45deg); opacity: 0; }
}
.password-wrapper {
    position: relative;
    width: 100%; /* ocupa todo el ancho del formulario */
}

.password-wrapper input {
    width: 100%; /* ocupa todo el ancho del contenedor */
    padding: 10px 40px 10px 10px; /* espacio derecho para el botón */
    border-radius: 6px;
    border: 1px solid #f5f3ce;
    font-size: 16px;
    box-sizing: border-box; /* asegura que padding no rompa el ancho */
}

.password-wrapper button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #374151;
    font-size: 18px;
    padding: 0;
}
.password-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.password-wrapper input {
    width: 100%;
    padding-right: 40px; /* espacio para el botón */
    border-radius: 6px;
    border: 1px solid #f5f3ce;
    padding: 10px;
    font-size: 16px;
}

.password-wrapper button {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%); /* centra verticalmente */
    background: none;
    border: none;
    cursor: pointer;
    color: #60a5fa; /* ajusta al color de tu tema */
    font-size: 18px;
    padding: 0;
}

/* Botón animado estilo CTA */
.cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 45px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    color: #f5f3ce;
    background: #003366;
    transition: 1s;
    box-shadow: 6px 6px 0 black;
    transform: skewX(-15deg);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.cta span {
    transform: skewX(15deg);
    display: inline-block;
    transition: 0.5s;
}

.cta:hover {
    transition: 0.5s;
    box-shadow: 10px 10px 0 #fbbf24;
}

/* Separación entre texto y icono */
.cta svg {
    margin-left: 10px;
    transition: transform 0.3s;
}

.cta:hover svg {
    transform: translateX(5px);
}



/* Posicionamiento dinámico abajo a la derecha */
.inscripcion-btn.blob-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  padding: 20px 46px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 16px;
  color: #0505A9;        /* color texto */
  background: transparent;
  border: 2px solid #0505A9;
  border-radius: 30px;
  cursor: pointer;
  overflow: hidden;
  transition: color 0.5s;
}

.inscripcion-btn.blob-btn:hover {
  color: #111827;
}

/* Fondo interno del botón */
.blob-btn__inner {
  z-index: -1;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  background: #fff;
}

/* Contenedor de blobs */
.blob-btn__blobs {
  position: relative;
  display: block;
  height: 100%;
  filter: url('#goo');
}

/* Cada blob individual */
.blob-btn__blob {
  position: absolute;
  top: 2px;
  width: 25%;
  height: 100%;
  background: #fbbf24;
  border-radius: 100%;
  transform: translateY(150%) scale(1.7);
  transition: transform 0.45s;
}

/* Distribución y delay de cada blob */
.blob-btn__blob:nth-child(1) { left: 0%; transition-delay: 0s; }
.blob-btn__blob:nth-child(2) { left: 25%; transition-delay: 0.08s; }
.blob-btn__blob:nth-child(3) { left: 50%; transition-delay: 0.16s; }
.blob-btn__blob:nth-child(4) { left: 75%; transition-delay: 0.24s; }

/* Animación al hover */
.blob-btn.blob-btn:hover .blob-btn__blob {
  transform: translateY(0) scale(1.7);
}

/* Oculta SVG */
.buttons svg { display: none; }








/*                                Prueba                                      */

/* Modal overlay */
#reject-modal {
  display: none; /* oculto por defecto */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: fadeIn 0.3s;
}


/* Contenido del modal */
.modal-content {
  background: #1f2937;
  padding: 20px 25px;
  border-radius: 10px;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  animation: slideIn 0.3s;
}

/* Título */
.modal-content h3 {
  margin-top: 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #f59e0b; /* rojo estilo botón rechazar */
}

/* Textarea */
#reject-message {
  width: 100%;
  min-height: 80px;
  margin: 10px 0 15px;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  resize: vertical;
  font-size: 0.95rem;
  font-family: Arial, sans-serif;
}

/* Botones */
.modal-buttons {
  text-align: right;
}

.btn-cancel,
.btn-send {
  padding: 6px 12px;
  border-radius: 6px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  margin-left: 8px;
}

/* Cancelar */
.btn-cancel {
  background: #7f8c8d;
  color: #fff;
}

.btn-cancel:hover {
  background: #6c7a7a;
}

/* Enviar */
.btn-send {
  background: #c0392b;
  color: #fff;
}

.btn-send:hover {
  background: #a53125;
}

/* Animaciones */
@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

@keyframes slideIn {
  from {transform: translateY(-20px); opacity:0;}
  to {transform: translateY(0); opacity:1;}
}





.modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal-content {
  background: #1f2937;
  padding: 20px;
  border-radius: 10px;
  max-width: 400px;
  width: 90%;
  
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.modal-buttons button {
  margin: 10px;
  padding: 8px 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
}

#delete-confirm { background-color: #c0392b; color: #fff; }
#delete-cancel { background-color: #7f8c8d; color: #fff; }
#delete-confirm:hover { background-color: #a53125; }
#delete-cancel:hover { background-color: #6c7a7a; }

}
