@import url('https://fonts.googleapis.com/css2?family=Playfair+Display&family=Inter:wght@400;700&display=swap');

:root {
  --bg-dark: #1a0e00;           /* Fondo profundo tipo madera quemada */
  --text-light: #fff3e0;        /* Texto claro cálido */
  --accent-soft: #ffb84d;       /* Naranja suave para detalles */
  --accent-warm: #ff9900;       /* Naranja vibrante para botones y enlaces */
  --accent-pink: #ffcc80;       /* Naranja pastel para fondos suaves */
  --section-bg: #2a1a00;        /* Fondo de secciones con profundidad ritualista */
}



body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-light);
  background-image: radial-gradient(circle at 20% 20%, #1a1a1a 0%, #0f0f0f 100%);
  animation: fondoOscuro 20s ease-in-out infinite alternate;
}

@keyframes fondoOscuro {
  0% { background-position: 0% 0%; }
  100% { background-position: 100% 100%; }
}

h1, h2 {
  font-family: 'Playfair Display', serif;
  color: var(--accent-warm);
}

header {
  background-color: var(--section-bg);
  padding: 1rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

nav a {
  color: var(--accent-soft);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--accent-warm);
}

section {
  padding: 2rem;
  border-bottom: 1px solid var(--accent-soft);
  transition: background-color 0.5s ease, border-left 0.5s ease;
}

#inicio {
  background-color: #1a1a1a;
}

#cursos {
  background-color: #202020;
  border-left: 4px solid var(--accent-soft);
}

#vivos {
  background-color: #181818;
  border-left: 4px solid var(--accent-warm);
}

#login {
  background-color: #151515;
  border-left: 4px solid var(--accent-pink);
}

.curso-card, .video-container {
  background-color: #222;
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

form input, form button {
  display: block;
  margin: 0.5rem auto;
  padding: 0.5rem;
  width: 80%;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

form button {
  background-color: var(--accent-warm);
  color: #000;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

form button:hover {
  background-color: #1b305b;
  box-shadow: 0 0 10px var(--accent-warm);
}

footer {
  text-align: center;
  padding: 1rem;
  background-color: var(--section-bg);
  font-size: 0.9rem;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.4);
}

.nav-lateral {
  position: fixed;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
  background: linear-gradient(145deg, #1c1c1c, #0f0f0f);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 1rem;
  z-index: 1000;
  transition: background 0.3s ease;
}

.nav-lateral ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-lateral li {
  margin: 1rem 0;
  text-align: center;
}

.nav-lateral a {
  font-size: 1.6rem;
  color: var(--accent-soft);
  text-decoration: none;
  transition: transform 0.3s ease, color 0.3s ease;
}

.nav-lateral a:hover {
  transform: scale(1.3);
  color: var(--accent-warm);
  text-shadow: 0 0 8px var(--accent-warm);
}
section {
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem;
}

header, footer {
  max-width: 960px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-lateral {
    left: auto;
    right: 1rem;
    top: auto;
    bottom: 1rem;
    transform: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 0.5rem;
  }

  .nav-lateral li {
    margin: 0 0.5rem;
  }

  form input, form button {
    width: 100%;
  }
}
.curso-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
button, input {
  transition: all 0.3s ease;
}

.curso-card:hover {
  transform: scale(1.02);
  box-shadow: 0 0 12px rgba(255, 183, 3, 0.3);
}
.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: fadeOut 2s ease 3s forwards;
}

.llama {
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, #ffb703 0%, #ffafcc 60%, transparent 70%);
  border-radius: 50%;
  animation: flameCombo 2s infinite ease-in-out;
  box-shadow: 0 0 20px rgba(255, 183, 3, 0.5), 0 0 40px rgba(255, 175, 204, 0.3);
  transition: transform 0.3s ease;
  position: relative;
}

.mensaje-ritual {
  margin-top: 1rem;
  color: var(--accent-soft);
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  text-align: center;
  opacity: 0.8;
}

@keyframes flameCombo {
  0% {
    transform: scale(1) translateY(0) rotate(0deg);
    opacity: 0.8;
    box-shadow: 0 0 20px rgba(255, 183, 3, 0.5), 0 0 40px rgba(255, 175, 204, 0.3);
  }
  50% {
    transform: scale(1.25) translateY(-10px) rotate(2deg);
    opacity: 1;
    box-shadow: 0 0 30px rgba(255, 183, 3, 0.7), 0 0 60px rgba(255, 175, 204, 0.4);
  }
  100% {
    transform: scale(1) translateY(0) rotate(-2deg);
    opacity: 0.8;
    box-shadow: 0 0 20px rgba(255, 183, 3, 0.5), 0 0 40px rgba(255, 175, 204, 0.3);
  }
}

@keyframes fadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}
.llama:hover {
  transform: scale(1.4) rotate(5deg);
  box-shadow: 0 0 40px rgba(255, 183, 3, 0.8), 0 0 80px rgba(255, 175, 204, 0.5);
}
.ritual-header {
  background-color: var(--section-bg);
  padding: 2rem 1rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.subtitulo-curso {
  margin-top: 0.5rem;
  font-size: 1.1rem;
  color: #ffb347;
  font-weight: 500;
  text-align: center;
  letter-spacing: 1px;
}

.titulo-ritual {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--accent-warm);
  margin: 0;
}

.frase-ritual {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--accent-soft);
  opacity: 0.8;
  margin: 0;
}
#login {
  text-align: center;
}

#login-form {
  max-width: 400px;
  margin: 0 auto;
}

#login-form input, #login-form button {
  margin: 0.5rem 0;
  padding: 0.75rem;
  width: 100%;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

#login-form button {
  background-color: var(--accent-warm);
  color: #000;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

#login-form button:hover {
  background-color: #b1a030;
  box-shadow: 0 0 10px var(--accent-warm);
}

#login-feedback {
  margin-top: 1rem;
  font-family: 'Playfair Display', serif;
  color: var(--accent-soft);
  font-size: 1.1rem;
  opacity: 0.9;
}
#dashboard {
  padding: 2rem;
  text-align: center;
  background-color: #1a1a1a;
  border-left: 4px solid var(--accent-soft);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.modulo-dashboard {
  background-color: #222;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 0 12px rgba(255, 183, 3, 0.2);
  transition: transform 0.3s ease;
}

.modulo-dashboard:hover {
  transform: scale(1.03);
  box-shadow: 0 0 20px rgba(255, 183, 3, 0.4);
}

.modulo-dashboard h3 {
  color: var(--accent-warm);
  font-family: 'Playfair Display', serif;
}

.nota-curso {
  margin-top: 12px;
  font-size: 0.95rem;
  color: #ddd;                 /* texto claro */
  background-color: #2a2a2a;   /* fondo oscuro */
  padding: 10px 14px;
  border-radius: 6px;
  text-align: center;
  box-shadow: 0 0 8px rgba(255,183,3,0.2); /* sombra cálida */
}
.nota-curso strong {
  color: var(--accent-warm);
  font-weight: 600;
}


.nota-curso a {
  color: #c0392b;
  font-weight: 600;
  text-decoration: none;
}

.nota-curso a:hover {
  text-decoration: underline;
}
.nota-curso a.btn-whatsapp {
  display: inline-block;
  background: #25d366;
  color: #fff;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  text-decoration: none;
  margin-left: 0.5rem;
  font-weight: bold;
}

.nota-curso a.btn-whatsapp:hover {
  background: #1ebe5d;
}
.form-inscripcion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-inscripcion select,
.form-inscripcion button {
  width: 100%;
}

.calendario-vivos {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.evento-vivo {
  background-color: #222;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 0 12px rgba(255, 183, 3, 0.2);
  transition: transform 0.3s ease;
}

.evento-vivo:hover {
  transform: scale(1.02);
  box-shadow: 0 0 20px rgba(255, 183, 3, 0.4);
}

.evento-vivo p {
  margin: 0.5rem 0;
  color: var(--text-light);
}

.evento-vivo button {
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  background-color: var(--accent-warm);
  color: #000;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.evento-vivo button:hover {
  background-color: #3a71a2;
}
.tarjetas-cursos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.curso-card {
  background-color: var(--section-bg); /* fondo profundo ritualista */
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(255, 153, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  text-align: center;
}

.curso-card:hover {
  transform: scale(1.03);
  box-shadow: 0 0 20px rgba(255, 153, 0, 0.4);
}

.curso-card h3 {
  color: var(--accent-warm); /* naranja vibrante */
  margin-bottom: 0.5rem;
  font-family: 'Cinzel Decorative', serif;
  text-shadow: 0 0 6px rgba(255, 153, 0, 0.3);
}

.curso-card p {
  color: var(--text-light); /* texto claro cálido */
  opacity: 0.9;
  margin-bottom: 1rem;
  font-family: 'Georgia', serif;
}

.curso-card button {
  background-color: var(--accent-warm);
  color: #1a0e00;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  box-shadow: 0 0 8px rgba(255, 153, 0, 0.3);
}

.curso-card button:hover {
  background-color: var(--accent-soft); /* naranja suave */
  transform: scale(1.05);
}


/* Llama mini decorativa */
.llama-mini {
  width: 30px;
  height: 30px;
  background: radial-gradient(circle, #ffb703 0%, #ffafcc 60%, transparent 70%);
  border-radius: 50%;
  animation: flameMini 2s infinite ease-in-out;
  box-shadow: 0 0 10px rgba(255, 183, 3, 0.4);
  margin: 0 auto 1rem;
}

@keyframes flameMini {
  0% { transform: scale(1) translateY(0); opacity: 0.8; }
  50% { transform: scale(1.2) translateY(-5px); opacity: 1; }
  100% { transform: scale(1) translateY(0); opacity: 0.8; }
}
.modal-curso {
  display: none !important;
  visibility: hidden;
  pointer-events: none;
}

.modal-contenido {
  background-color: #222;
  padding: 2rem;
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  box-shadow: 0 0 20px rgba(255, 183, 3, 0.4);
  position: relative;
}

.cerrar-modal {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  color: var(--accent-soft);
  cursor: pointer;
}

.barra-progreso {
  background-color: #333;
  border-radius: 6px;
  height: 12px;
  margin: 1rem 0;
  overflow: hidden;
}

.progreso-interno {
  background-color: var(--accent-warm);
  height: 100%;
  transition: width 0.5s ease;
}

.progreso-texto {
  color: var(--accent-soft);
  font-size: 0.9rem;
  opacity: 0.8;
}
.logo-ritual {
  width: 120px; /* Tamaño base */
  height: auto;
  margin-right: 16px;
  transition: transform 0.4s ease, filter 0.4s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  cursor: pointer;
}

.logo-ritual:hover {
  transform: scale(1.08) rotate(-2deg);
  filter: drop-shadow(0 4px 6px rgba(255, 140, 0, 0.5));
}
.logo-ritual {
  width: 240px;
  height: auto;
  margin-bottom: 16px;
  animation: encenderLogo 2s ease-in-out forwards;
  opacity: 0;
  filter: drop-shadow(0 2px 4px rgba(255, 140, 0, 0.5));
}

@keyframes encenderLogo {
  0% {
    transform: scale(0.8) rotate(-10deg);
    opacity: 0;
  }
  50% {
    transform: scale(1.05) rotate(2deg);
    opacity: 0.7;
  }
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}
.bienvenida-sensorial {
  background: linear-gradient(to bottom, #1a0e00, #2a1a00);
  padding: 60px 20px;
  text-align: center;
  border-top: 2px solid #ff9900;
  border-bottom: 2px solid #ff9900;
}

.contenedor-ritual {
  max-width: 600px;
  margin: 0 auto;
  animation: entradaRitual 1.5s ease-out;
}

.titulo-sensorial {
  font-size: 2.4em;
  color: #ff6600;
  margin-bottom: 12px;
  text-shadow: 0 0 10px rgba(255, 153, 0, 0.6);
  font-family: 'Cinzel Decorative', serif;
}

.texto-sensorial {
  font-size: 1.2em;
  color: #f5f5f5;
  line-height: 1.7;
  margin-bottom: 24px;
  font-family: 'Georgia', serif;
  text-shadow: 0 0 4px rgba(255, 153, 0, 0.2);
}

.boton-ritual {
  background-color: #ff9900;
  color: #1a0e00;
  padding: 12px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 0 12px rgba(255, 153, 0, 0.5);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.boton-ritual:hover {
  background-color: #ffb84d;
  transform: scale(1.05);
}

@keyframes entradaRitual {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.seccion-faq {
  background-color: #1a1a1a;
  border-left: 4px solid var(--accent-soft);
  padding: 2rem;
  margin-top: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(138, 202, 230, 0.2);
}

.seccion-faq h2 {
  font-family: 'Playfair Display', serif;
  color: var(--accent-warm);
  text-align: center;
  margin-bottom: 2rem;
}

.faq-item {
  margin-bottom: 1.5rem;
}

.faq-pregunta {
  width: 100%;
  background-color: var(--accent-soft);
  color: #000;
  font-weight: bold;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 8px;
  text-align: left;
  cursor: pointer;
  transition: background 0.3s ease;
  box-shadow: 0 0 8px rgba(138, 202, 230, 0.3);
}

.faq-pregunta:hover {
  background-color: var(--accent-warm);
  box-shadow: 0 0 12px rgba(33, 158, 188, 0.5);
}

.faq-respuesta {
  display: none;
  padding: 1rem;
  background-color: #222;
  border-radius: 8px;
  margin-top: 0.5rem;
  color: var(--text-light);
  box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.3);
}

.faq-respuesta.visible {
  display: block;
}
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  background-color: #c4eed3;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: scale(0.8);
  animation: entradaWhatsapp 1.5s ease-out 2s forwards;
}

.whatsapp-float img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 0 16px rgba(37, 211, 102, 0.6);
}

.whatsapp-float:hover img {
  transform: scale(1.1);
}

@keyframes entradaWhatsapp {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 80px;
    left: 20px;
    right: auto;
    transform: translateX(-20px) scale(0.8);
    animation: entradaWhatsappMobile 1.5s ease-out 2s forwards;
  }
}

@keyframes entradaWhatsappMobile {
  to {
    transform: translateX(0) scale(1);
    opacity: 1;
  }
}

/* Íconos de navegación */
.icono-nav {
  width: 32px;
  height: 32px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.icono-nav:hover {
  transform: rotate(10deg) scale(1.2);
  filter: drop-shadow(0 0 6px #ffd700); /* dorado ritualista */
}

/* Animación de pulso opcional */
@keyframes pulso {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

.icono-nav:hover {
  animation: pulso 0.6s ease-in-out;
}
.icono-nav:hover {
  filter: hue-rotate(45deg) brightness(1.2);
}
.loader-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #000;
  animation: fadeIn 2s ease-in-out;
}

.logo-ritual {
  width: 180px;
  animation: zoomIn 2s ease-out;
}

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

@keyframes zoomIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.mensaje-ritual {
  font-family: 'Courier New', monospace;
  font-size: 1.5rem;
  color: #ffd700;
  white-space: nowrap;
  overflow: hidden;
  border-right: 2px solid #ffd700;
  animation: escribir 3s steps(30) 1s forwards, parpadeo 0.7s infinite;
}

@keyframes escribir {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes parpadeo {
  0%, 100% { border-color: transparent; }
  50% { border-color: #ffd700; }
}
body.mostrar-sitio {
  animation: fadeIn 1s ease-in-out;
}
.ritual-header {
  background: linear-gradient(to right, #1a1a1a, #2c2c2c);
  padding: 2rem 1rem;
  text-align: center;
  color: #ffd700;
  border-bottom: 2px solid #ffb703;
  box-shadow: 0 0 20px rgba(255, 183, 3, 0.2);
}

.titulo-ritual {
  font-size: 3rem;
  font-family: 'Cinzel Decorative', serif;
  color: #ffb703;
  text-shadow: 0 0 8px rgba(255, 183, 3, 0.6);
  animation: flameo 3s infinite ease-in-out;
  margin: 0.5rem 0;
}

.frase-ritual {
  font-size: 1.2rem;
  font-family: 'Courier New', monospace;
  color: #fff;
  text-shadow: 0 0 4px rgba(255, 255, 255, 0.3);
  animation: parpadeo 2s infinite;
}

nav ul {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

nav ul li a {
  color: #ffd700;
  font-weight: bold;
  text-decoration: none;
  font-size: 1.1rem;
  position: relative;
  transition: transform 0.3s ease, text-shadow 0.3s ease;
}

nav ul li a:hover {
  transform: scale(1.1);
  text-shadow: 0 0 10px #ffb703;
}

/* Animaciones mágicas */
@keyframes flameo {
  0% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.05) rotate(1deg); }
  100% { transform: scale(1) rotate(0deg); }
}

@keyframes parpadeo {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}
.calendario-vivos {
  display: grid;
  gap: 2rem;
  padding: 1rem;
  background: linear-gradient(to right, #1a1a1a, #2c2c2c);
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255, 183, 3, 0.2);
}

.evento-vivo {
  background: #222;
  color: #ffd700;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(255, 183, 3, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.evento-vivo:hover {
  transform: scale(1.02);
  box-shadow: 0 0 20px rgba(255, 183, 3, 0.5);
}

.evento-vivo p {
  margin: 0.5rem 0;
  font-family: 'Courier New', monospace;
}

.evento-vivo button {
  background-color: #ffb703;
  color: #000;
  border: none;
  padding: 0.7rem 1.2rem;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.evento-vivo button:hover {
  background-color: #ffd700;
}
.nombre-profesor {
  font-weight: 500;
  color: #c4d2e0;
}

.footer-redes {
  background-color: #111;
  padding: 2rem 1rem;
  border-top: 2px solid #ffb347;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.footer-titulo {
  color: #ffb347;
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.footer-redes .redes-iconos {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.red-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 120px;
  text-align: center;
}

.icono-red {
  width: 80px;
  height: 80px;
  object-fit: contain;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.icono-red:hover {
  transform: scale(1.15);
  box-shadow: 0 0 12px rgba(255, 179, 71, 0.5);
}

.red-descripcion {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: #ccc;
  opacity: 0.8;
}

.footer-redes p.copyright {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #888;
}
.footer-logo {
  margin-top: 1rem;
}

.logo-footer {
  width: 250px;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo-footer:hover {
  transform: scale(1.1);
}
.logos-institucionales {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.logo-item {
  flex: 1 1 150px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-img {
  width: 150px;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.1);
}
.logos-institucionales {
  display: flex;
  justify-content: center;
  gap: 50px; /* más espacio entre logos */
  margin-top: 2rem;
  flex-wrap: wrap;
}
#registro-form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  max-width: 400px;
  margin: 0 auto;
}

#registro-form input,
#registro-form select,
#registro-form button {
  padding: 0.6rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%;
  box-sizing: border-box;
}
.boton-registro {
  display: inline-block;
  margin: 0.5rem 0;
  padding: 0.8rem 1.5rem;
  background-color: var(--color-azul, #0056b3);
  color: #fff;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  font-family: var(--fuente-cuerpo, sans-serif);
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.boton-registro:hover {
  background-color: #003f8a;
  transform: translateY(-2px);
}
.boton-registro:active {
  transform: scale(0.98);
}
.evento-vivo {
  background: #2b2626;
  border: 1px solid #ddd;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.boton-registro {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: #0077cc;
  color: white;
  text-decoration: none;
  border-radius: 4px;
}
