/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: url('assets/img/background.jpg') no-repeat center center fixed;
  background-size: cover;
  color: #1a1a1a;
  line-height: 1.6;
  padding-bottom: 100px;
}

header {
	
  background-color: #2c3e50;
  color: white;
  padding: 2rem 1rem;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
}

header h1 {
  margin-bottom: 0.5rem;
}

nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  gap: 1rem;
}

nav a {
  color: #c9aa71;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

nav a:hover {
  color: #f8d377;
}

main {
  padding: 2rem;
  max-width: 1000px;
  margin: auto;
}

section {
  margin-bottom: 3rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.5), rgba(240, 240, 240, 0.3));
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.06),
    inset 0 1px 1px rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}


h2 {
  margin-bottom: 1rem;
  color: #2c3e50;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.cards .card {
  background: white;
  border: 1px solid #ddd;
  border-radius: 14px;
  padding: 1rem;
  width: 250px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cards .card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 0.5rem;
}

ul {
  padding-left: 1.2rem;
}



input[type="text"],
textarea {
  width: 100%;
  padding: 0.75rem;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 1rem;
}

button {
  padding: 0.6rem 1.2rem;
  background-color: #2c3e50;
  color: white;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #1a242f;
}

/* Estilo para botones de eventos (sí siguen posicionados en la esquina) */
.tarjeta-evento .borrar-btn {
  position: absolute;
  top: 10px;
  right: 12px;
}

/* Estilo normal para otras listas como maleta */
.borrar-btn {
  background: none;
  border: none;
  color: #cc0000;
  font-size: 1.2rem;
  cursor: pointer;
  margin-left: 0.5rem;
}

.eventos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.2rem;
}

.evento-card {
  position: relative;
  height: 140px;
  border-radius: 14px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-decoration: none;
  color: white;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.2s ease;
}

.evento-card span {
  background: rgba(0, 0, 0, 0.5);
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1rem;
  z-index: 2;
  text-align: center;
  text-shadow: 1px 1px 2px black;
}

.evento-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
  z-index: 1;
}

.evento-card:hover {
  transform: scale(1.03);
}


.galeria {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}

.galeria img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

footer {
  text-align: center;
  background: #e0e0e0;
  padding: 1rem;
  position: fixed;
  width: 100%;
  bottom: 0;
  font-size: 0.9rem;
  color: #555;
}

.docs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}
.doc-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background-size: cover;
  background-position: center;
  height: 160px;
  border-radius: 14px;
  color: white;
  text-decoration: none;
  font-weight: bold;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.doc-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
  z-index: 1;
}

.doc-card span {
  position: relative;
  z-index: 2;
  background: rgba(0,0,0,0.4);
  padding: 0.4rem 1rem;
  border-radius: 8px;
  font-size: 1.1rem;
}

.doc-card:hover {
  transform: scale(1.03);
}
.doc-mini-grid {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center; /* ✅ ESTA LÍNEA */
}

.doc-mini {
  display: inline-block;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
  width: 150px;
}

.doc-mini:hover {
  transform: scale(1.05);
}

.doc-mini img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}
.doc-overlay-card {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
  width: 180px;
  height: 120px;
}

.btn-toggle {
  margin-top: 1rem;
  background-color: #2c3e50;
  color: white;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-toggle:hover {
  background-color: #1a242f;
}

.sim-explicacion {
  background: linear-gradient(135deg, #ffffffcc, #f5f5f5cc);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(200, 200, 200, 0.4);
  text-align: left;
  line-height: 1.7;
  font-size: 1.05rem;
  max-width: 800px;
  margin: 2rem auto 0;
  animation: fadeInSim 0.6s ease;
}

.sim-explicacion ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.sim-explicacion li {
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 0.5rem;
}

.sim-explicacion li::marker {
  color: #c9aa71;
  font-weight: bold;
}

.sim-explicacion p {
  margin-top: 1rem;
  font-weight: 500;
  color: #2c3e50;
  background: rgba(255, 255, 255, 0.3);
  padding: 0.8rem 1rem;
  border-left: 4px solid #c9aa71;
  border-radius: 10px;
}

@keyframes fadeInSim {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Estilo para el botón de eliminar */
.btn-eliminar {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: rgba(255, 0, 0, 0.8);
  color: white;
  border: none;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
}

.btn-eliminar:hover {
  background-color: red;
}
.eventos-separados {
  margin-bottom: 5rem; /* o el valor que tú veas mejor */
}
.box-contenedor {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  margin-bottom: 3rem;
  border: 1px solid rgba(255,255,255,0.2);
}
.subnav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  background: rgba(255,255,255,0.8);
  padding: 1rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  position: sticky;
  top: 70px;
  z-index: 999;
}

.subnav a {
  text-decoration: none;
  color: #2c3e50;
  font-weight: bold;
  background: #f8f8f8;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.subnav a:hover {
  background-color: #2c3e50;
  color: white;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 200px; /* igual o un poco más que la altura del header */
}
.miembros-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
}

.miembro-card {
  position: relative;
  height: 300px;
  border-radius: 14px;
  background-size: cover;
  background-position: center;
  text-decoration: none;
  color: white;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
}



.miembro-card span {
  position: relative;
  z-index: 2;
  background: rgba(0,0,0,0.4);
  padding: 0.5rem 1rem;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 2px black;
}

.miembro-card:hover {
  transform: scale(1.05);
}



.seccion-elegante {
  padding: 3rem 2rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.07);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-align: center;
}

.seccion-elegante h2 {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 2rem;
  color: #1a1a1a;
  letter-spacing: 0.5px;
}

.documentos-elegantes {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.doc-elegante {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  width: 120px;
  transition: transform 0.2s ease;
}

.doc-elegante img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  transition: box-shadow 0.3s ease;
}

.doc-elegante span {
  margin-top: 0.8rem;
  font-size: 0.95rem;
  color: #2c3e50;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.doc-elegante:hover {
  transform: scale(1.04);
}

.doc-elegante:hover img {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}



.galeria {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  padding: 1rem;
}

.foto-container {
  position: relative;
  width: 100%;
  max-width: 300px;
}

.foto-container img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  border-radius: 12px;
  display: block;
}

.checkbox-foto {
  position: absolute;
  top: 12px;
  left: 12px;
  transform: scale(3.5); /* ✅ Más grande */
  z-index: 10;
}

.acciones-botones {
  text-align: center;
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.acciones-botones button {
  padding: 16px 26px;
  font-size: 1.4rem;
  font-weight: bold;
  border-radius: 10px;
  border: none;
  cursor: pointer;
}

.acciones-botones button[name="eliminar"] {
  background-color: #e53935;
  color: white;
}

.acciones-botones button[name="descargar"] {
  background-color: #43a047;
  color: white;
}

@media (max-width: 600px) {
  .foto-container {
    width: 100%; /* En móviles una por línea */
  }

  .acciones-botones button {
    width: 100%;
  }
}



form input[type="file"] {
  display: block;
  margin: 2rem auto 1rem;
  padding: 2rem;
  font-size: 1.4rem;
  border: 3px dashed #666;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  width: 95%;
  max-width: 500px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

form input[type="file"]:hover {
  background-color: #f0f0f0;
  border-color: #333;
}

form button[type="submit"] {
  display: block;
  margin: 1.5rem auto 2rem;
  padding: 1.6rem 3rem;
  font-size: 1.6rem;
  font-weight: bold;
  border-radius: 14px;
  background: linear-gradient(145deg, #42a5f5, #1976d2);
  color: white;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

form button[type="submit"]:hover {
  transform: scale(1.05);
  background: linear-gradient(145deg, #1976d2, #1565c0);
}


.acciones-botones button[name="eliminar"] {
  background: linear-gradient(135deg, #ff5252, #c62828);
  color: white;
  border: none;
  padding: 16px 28px;
  font-size: 1.6rem;
  font-weight: bold;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.acciones-botones button[name="eliminar"]:hover {
  background: linear-gradient(135deg, #e53935, #b71c1c);
  transform: scale(1.05);
}




.panel-recordatorios {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.recordatorio-bloque {
  background: #fff;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  border: 1px solid #ccc;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.recordatorio-bloque.vencido {
  background: #ffe5e5;
  border-color: #f44336;
}

.recordatorio-bloque span {
  font-weight: bold;
}

.recordatorio-bloque small {
  color: #555;
  margin-left: 1rem;
}

.recordatorio-bloque button {
  background: transparent;
  border: none;
  color: #f44336;
  font-size: 1.2rem;
  cursor: pointer;
}


.btn-imagen-recuerdos img {
  width: 130px;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  cursor: pointer;
  margin-top: 1.5rem;
}

.btn-imagen-recuerdos img:hover {
  transform: scale(1.07);
}

.cuenta-regresiva-sexy {
  background: linear-gradient(135deg, #000428, #004e92);
  color: white;
  padding: 1.2rem 1rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  margin: 1.5rem auto 2rem;
  max-width: 480px;
  animation: fadeIn 1.2s ease;
}

.cuenta-regresiva-sexy h2 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 700;
  background: linear-gradient(90deg, #f5deb3, #d4af37, #f5deb3);
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: dorado-suave 6s linear infinite;
  text-shadow: 0 0 2px rgba(255, 255, 255, 0.2);
}

.reloj-sexy {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.reloj-sexy div {
  background: rgba(255, 255, 255, 0.08);
  padding: 0.6rem 0.8rem;
  border-radius: 12px;
  min-width: 70px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.reloj-sexy span {
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  text-shadow: 0 0 5px #00ffff;
}

.reloj-sexy p {
  margin-top: 0.2rem;
  font-size: 0.8rem;
  color: #f0f0f0;
  font-weight: 500;
}

@media (max-width: 600px) {
  .cuenta-regresiva-sexy {
    padding: 1rem;
    margin: 1.5rem auto;
  }

  .reloj-sexy div {
    min-width: 60px;
    padding: 0.5rem;
  }

  .reloj-sexy span {
    font-size: 1.6rem;
  }

  .reloj-sexy p {
    font-size: 0.75rem;
  }
}

@keyframes dorado-suave {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}
form .acciones-botones button[name="accion"][value="eliminar"] {
  background: linear-gradient(135deg, #ff5252, #b71c1c);
  color: white;
  font-weight: bold;
  font-size: 1.4rem;
  padding: 1rem 2rem;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, background 0.3s ease;
}

form .acciones-botones button[name="accion"][value="eliminar"]:hover {
  background: linear-gradient(135deg, #e53935, #880e4f);
  transform: scale(1.05);
}

.carrusel-playlists {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  padding: 1rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.vinilo {
  min-width: 160px;
  flex: 0 0 auto;
  text-align: center;
  scroll-snap-align: start;
  transition: transform 0.3s ease;
  text-decoration: none;
}

.vinilo img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  /* Elimina esta línea */
  /* box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4); */
  transition: transform 0.3s ease;
}

.vinilo:hover img {
  transform: scale(1.1) rotate(5deg);
}

.vinilo p {
  margin-top: 0.5rem;
  color: white;
  font-weight: bold;
}

.sin-fondo {
  background: none;
  box-shadow: none;
  padding: 0;
}

.titulo-playlists {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 1rem;
  background: linear-gradient(to right, #FFD700, #FF8C00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
  animation: brillar-titulo 6s linear infinite;
}

@keyframes brillar-titulo {
  0% { background-position: 0% }
  100% { background-position: 200% }
}



/* Estilo específico para playlists */
.playlists-disco {
  padding: 1rem;
  margin: 1.5rem 0;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
  text-align: center;
}

/* Título llamativo en dorado animado */
.titulo-playlists {
  font-size: 1.8rem;
  background: linear-gradient(to right, #FFD700, #FF8C00);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-weight: 700;
  animation: brillo-playlist 6s linear infinite;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
}

@keyframes brillo-playlist {
  0% { background-position: 0% }
  100% { background-position: 200% }
}

/* Carrusel horizontal de vinilos */
.carrusel-playlists {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding: 1rem 0.5rem;
  justify-content: center;
  scroll-snap-type: x mandatory;
}

.carrusel-playlists .vinilo {
  flex: 0 0 auto;
  scroll-snap-align: center;
  text-decoration: none;
  color: white;
  text-align: center;
}

.carrusel-playlists .vinilo img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: none;
  transition: transform 0.3s ease;
}

.carrusel-playlists .vinilo img:hover {
  transform: scale(1.05);
}

.carrusel-playlists .vinilo p {
  margin-top: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
}



.carrusel-eventos {
  overflow-x: auto;
  white-space: nowrap;
  padding: 1rem 0;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

#lista-eventos {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 1rem 0;
}

.tarjeta-evento {
  font-family: 'Outfit', sans-serif;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: #fff;
  border-radius: 18px;
  padding: 1.4rem;
  min-width: 300px;
  max-width: 300px;
  height: auto; /* ✅ crece dinámicamente */
  min-height: 200px;
  scroll-snap-align: start;
  flex-shrink: 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* 🔁 empieza desde arriba */
  overflow: visible; /* ✅ muy importante */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 6px solid #4fc3f7;
}


.tarjeta-evento:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
}

.tarjeta-evento.evento-hoy {
  background: linear-gradient(135deg, #2e7d32, #66bb6a);
  border-left-color: #ffffff;
}

.tarjeta-evento h3 {
  margin: 0 0 0.8rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tarjeta-evento p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  color: #e0f7fa;
  max-height: none;
  overflow: visible;
  word-break: break-word;
}

.tarjeta-evento small,
.tarjeta-evento .icono-fecha {
  font-size: 0.9rem;
  color: #b2ebf2;
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}



/* Para que vibre el evento de hoy */
.evento-hoy {
  animation: vibrar 0.5s infinite alternate;
  border: 3px solid #00e676;
  box-shadow: 0 0 10px #00e676;
}

@keyframes vibrar {
  0% { transform: translateX(0px); }
  100% { transform: translateX(3px); }
}

.borrar-maleta {
  background: none;
  border: none;
  font-size: 1.2rem;
  color: #cc0000;
  cursor: pointer;
  margin-left: 1rem;
  position: static; /* 🔒 evita que se posicione fuera */
}



.checklist-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: white;
  padding: 0.6rem 1rem;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  margin-bottom: 0.5rem;
}

.checklist-item label {
  flex-grow: 1;
  margin-left: 0.5rem;
}

.checklist-item .borrar-btn {
  background: none;
  border: none;
  color: #cc0000;
  font-size: 1.2rem;
  cursor: pointer;
}

.checklist li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(145deg, #ffffff, #f3f3f3);
  border-left: 6px solid #c9aa71; /* Toque dorado */
  border-radius: 12px;
  padding: 0.9rem 1.2rem;
  margin-bottom: 0.6rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  font-size: 1.05rem;
  position: relative;
}

.checklist li:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.checklist li span {
  flex-grow: 1;
  font-weight: 500;
  color: #2c3e50;
  text-align: left;
}

.checklist li input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #c9aa71; /* Dorado elegante */
  cursor: pointer;
  margin-left: 1rem;
}

.checklist li .borrar-btn {
  background: none;
  border: none;
  font-size: 1.2rem;
  color: #c0392b;
  cursor: pointer;
  margin-left: 1rem;
  transition: color 0.3s ease, transform 0.2s ease;
}

.checklist li .borrar-btn:hover {
  color: #e74c3c;
  transform: scale(1.3);
}

.ubicacion-btn {
  display: inline-block;
  margin-top: 0.8rem;
  padding: 0.4rem 0.8rem;
  background: linear-gradient(135deg, #c9aa71, #b58e4c);
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95rem;
  border-radius: 8px;
  transition: background 0.3s ease, transform 0.2s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.ubicacion-btn:hover {
  background: linear-gradient(135deg, #d4af37, #8d6e3f);
  transform: scale(1.05);
}



.doc-elegante {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  width: 120px;
  transition: transform 0.2s ease;
}

.doc-elegante img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.doc-elegante span {
  margin-top: 0.8rem;
  font-size: 0.95rem;
  color: #2c3e50;
  font-weight: 500;
  text-align: center;
}


.carrusel-documentos {
  overflow-x: auto;
  white-space: nowrap;
  padding: 1rem 0;
  scroll-snap-type: x mandatory;
}

#lista-documentos {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 1rem;
  padding: 1rem 0;
}
/*
.tarjeta-evento {
  min-width: 250px;
  min-height: 190px; 
  height: auto;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  background-color: #333;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}
*/
.tarjeta-documento .doc-link {
  text-decoration: none;
  color: white;
  font-weight: bold;
  font-size: 1.1rem;
  background: rgba(0,0,0,0.4);
  padding: 0.5rem;
  border-radius: 6px;
  display: inline-block;
}

.tarjeta-documento .borrar-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  padding: 6px 10px;
  cursor: pointer;
  border-radius: 6px;
  font-size: 1rem;
}


/* Contenedor del carrusel de QR eventos */
#lista-qr-eventos {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 1rem;
}

/* Tarjeta QR elegante 
.tarjeta-evento {
  position: relative;
  width: 260px;
  min-height: 190px; 
  height: auto;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: flex-end;
}
*/
.tarjeta-evento:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

/* Enlace interior */
.tarjeta-evento a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: white;
}
/*
.tarjeta-evento p {
  max-height: none;
  overflow-y: visible;
}
*/
/* Nombre + fecha/hora */
.tarjeta-evento h3 {
  margin: 0;
  padding: 0.6rem 1rem 0.3rem;
  font-size: 1.1rem;
  background: rgba(0, 0, 0, 0.5);
  font-weight: bold;
}

.tarjeta-evento small {
  display: block;
  padding: 0 1rem 0.8rem;
  font-size: 0.9rem;
  background: rgba(0, 0, 0, 0.4);
}

/* Botón de eliminar */
.tarjeta-evento .borrar-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s ease;
}




.btn-toggle {
  background-color: #2c3e50;
  color: white;
  padding: 10px 16px;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-toggle:hover {
  background-color: #34495e;
}


.evento-hoy {
  animation: parpadeoVerde 1s infinite alternate;
  border: 2px solid limegreen;
}

@keyframes parpadeoVerde {
  from { background-color: #e6ffe6; }
  to { background-color: #ccffcc; }
}


.btn-nuevo-miembro {
  display: inline-block;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #FFD700, #FF8C00);
  color: #1a1a1a;
  font-weight: 600;
  font-size: 1.1rem;
  border: none;
  border-radius: 14px;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  text-align: center;
  animation: brilloBotonNuevo 6s linear infinite;
}

.btn-nuevo-miembro:hover {
  transform: scale(1.06);
  background: linear-gradient(135deg, #f5c542, #e69500);
  color: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

@keyframes brilloBotonNuevo {
  0% { filter: brightness(1); }
  50% { filter: brightness(1.2); }
  100% { filter: brightness(1); }
}

