body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  background-color: #000;
  color: #fff;
}




a[href="https://cookingourmet.q10.com/"] {
    display: inline-block;
    background-color: #ff0040; /* Rojo intenso */
    color: #fff; /* Texto blanco */
    font-weight: 600;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    font-size: 16px;
}

a[href="https://cookingourmet.q10.com/"]:hover {
    background-color: #cc0033; /* Rojo más oscuro al pasar el mouse */
    transform: scale(1.05);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.25);
}






/* ======== NAV PRINCIPAL ======== */
nav {
  background-color: #111;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 30px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-sizing: border-box;
}

.logo {
  font-weight: bold;
  font-size: 18px;
  color: #fff;
  user-select: none;
}

.menu-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 35px;
  flex: 1;
}

nav a {
  color: #d2d2d2;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
  position: relative;
}

nav a:hover {
  color: #fff;
}

/* ======== DROPDOWN ======== */
.dropdown {
  position: relative;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #1a1a1a;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
  display: none;
  min-width: 180px;
  opacity: 0;
  transition: all 0.25s ease;
  z-index: 9999; /* asegura visibilidad sobre todo */
}

.dropdown-content a {
  display: block;
  padding: 10px 15px;
  color: #d2d2d2;
  font-size: 13px;
  text-align: left;
  white-space: nowrap;
}

.dropdown-content a:hover {
  background-color: #333;
  color: #fff;
}

.dropdown:hover .dropdown-content {
  display: block;
  opacity: 1;
}

/* ======== MENU HAMBURGUESA ======== */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  background-color: #222;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.menu-toggle:hover {
  background-color: #333;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: #fff;
  margin: 4px 0;
  border-radius: 2px;
  transition: 0.3s;
}

/* ======== RESPONSIVE ======== */
@media (max-width: 768px) {
  nav {
    justify-content: space-between;
    padding: 12px 20px;
  }

  .menu-toggle {
    display: flex;
  }

  .menu-items {
    display: none;
    flex-direction: column;
    align-items: center;
    width: 100%;
    background-color: #111;
    position: absolute;
    top: 60px;
    left: 0;
    padding: 10px 0;
    border-top: 1px solid #222;
  }

  .menu-items.active {
    display: flex;
  }

  .menu-items a {
    width: 100%;
    text-align: center;
    padding: 12px 0;
    border-bottom: 1px solid #222;
  }

  .menu-items a:last-child {
    border-bottom: none;
  }

  /* Submenú móvil */
  .dropdown-content {
    position: static;
    display: none;
    opacity: 1;
    transform: none;
    box-shadow: none;
    background-color: #1b1b1b;
    width: 100%;
    border-radius: 0;
  }

  .dropdown.active .dropdown-content {
    display: flex;
    flex-direction: column;
  }

  .dropdown-content a {
    border-bottom: 1px solid #222;
    text-align: center;
  }

  .dropdown-content a:last-child {
    border-bottom: none;
  }

  /* Espacio adicional para el slider debajo del menú móvil */
  .slider {
    margin-top: 100px;
  }
}



/* ==== Redes Sociales ==== */
.social-icons {
  display: flex;
  align-items: center;
  gap: 15px; /* separación entre íconos */
  margin-left: 20px; /* espacio antes de las redes */
}

.social-icons a i {
  font-size: 1.4rem; /* tamaño un poco más grande */
  transition: transform 0.2s ease, color 0.3s ease;
  color: #f5f5f5; /* color base */
}

.social-icons a:hover i {
  transform: scale(1.2); /* agranda al pasar el mouse */
  color: #ff004c; /* color al pasar el mouse (puedes cambiarlo) */
}









/* ===== HERO SECTION ===== */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #000;
  color: #fff;
  padding: clamp(40px, 6vw, 80px) 8% 0;
  overflow: hidden;
  position: relative;
  flex-wrap: wrap;
  box-sizing: border-box;
}

/* 🔹 Eliminamos la altura mínima para que no se fuerce espacio vacío */
.hero-content {
  flex: 1 1 500px;
  max-width: 600px;
  z-index: 2;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  margin-left: 30px;
}

.hero-content .highlight {
  background-color: #ff0040;
  color: #fff;
  padding: 6px 14px;
  border-radius: 6px;
  display: inline-block;
  box-shadow: 0 0 15px rgba(255, 0, 64, 0.4);
  font-size: clamp(1.8rem, 4vw, 3rem);
  
}

.hero-content p {
  font-size: clamp(1rem, 2vw, 1.3rem);
  margin-top: 10px;
  color: #ddd;
  margin-left: 30px;
}

.btn-primary {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 36px;
  background-color: #ff0040;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 10px;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  transition: all 0.3s ease;
  margin-left: 30px;
}

.btn-primary:hover {
  background-color: #e00038;
  transform: translateY(-4px);
}

/* ===== IMAGEN DE PORTADA ===== */
.hero-image {
  flex: 1 1 600px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  margin-bottom: -10px; /* 🔽 Pega completamente al borde inferior */
}

.hero-image img {
  width: 100%;
  max-width: 720px;
  height: auto;
  object-fit: contain;
  border-radius: 0;
  animation: fadeInRight 1.3s ease forwards;
  filter: drop-shadow(0px 0px 15px rgba(255, 255, 255, 0.2));
  display: block;
}

/* ===== ANIMACIONES ===== */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  0% { opacity: 0; transform: translateX(80px); }
  100% { opacity: 1; transform: translateX(0); }
}

.fade-in-up {
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
}
.fade-in-up.delay1 { animation-delay: 0.3s; }
.fade-in-up.delay2 { animation-delay: 0.6s; }
.fade-in-up.delay3 { animation-delay: 0.9s; }
.fade-in-right {
  opacity: 0;
  animation: fadeInRight 1.2s ease forwards;
  animation-delay: 0.8s;
}

/* ===== RESPONSIVE ===== */

/* Tablets */
@media (max-width: 1024px) {
  .hero {
    flex-direction: column-reverse;
    text-align: center;
    padding: 40px 5% 0;
  }

  .hero-content {
    margin-top: 20px;
    text-align: center;
  }

  .hero-image {
    margin-bottom: -12px; /* 🔽 Pega aún más */
  }

  .hero-image img {
    max-width: 600px;
  }
}

/* Móviles */
@media (max-width: 600px) {
  .hero {
    flex-direction: column-reverse;
    padding: 10px 6% 0; /* 🔽 casi sin espacio inferior */
    gap: 0;
  }

  .hero-image {
    margin-bottom: -14px; /* 🔽 se pega completamente al siguiente bloque */
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .hero-image img {
    width: 100%;
    max-width: 380px;
  }

  .hero-content {
    margin-top: 0; /* 🔽 junta texto con imagen */
    padding: 0;
    text-align: center;
    line-height: 1.15;
  }

  .hero-content h1 {
    font-size: 1.9rem;
    margin: 2px 0;
  }

  .hero-content .highlight {
    font-size: 1.5rem;
    padding: 3px 8px;
  }

  .hero-content p {
    font-size: 0.95rem;
    margin: 2px 0;
  }

  .btn-primary {
    padding: 10px 24px;
    font-size: 0.9rem;
    margin-top: 8px;
  }
}




/* ===== BOTONES SECUNDARIOS ===== */
.secondary-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

/* ===== BOTONES SECUNDARIOS ===== */
.btn-secondary {
  display: inline-block;
  margin-top: 10px;
  margin-left: 10px;
  padding: 12px 28px;
  background-color: transparent;
  color: #fff;
  border: 2px solid #ff0040;
  border-radius: 10px;
  font-weight: 600;
  font-size: clamp(0.9rem, 2vw, 1rem);
  text-decoration: none;
  transition: all 0.3s ease;
    min-width: 180px; /* ancho fijo mínimo */
  text-align: center;
}

.btn-secondary:hover {
  background-color: #ff0040;
  color: #fff;
  transform: translateY(-3px);
}

/* ===== INFO SECTION (Horarios y Requisitos) ===== */
.info-section {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 16px;
  margin-top: 20px;
  flex-wrap: nowrap; /* 🔹 Fuerza que estén lado a lado */
}

.info-box {
  flex: 1; /* 🔹 Ambos ocupan el mismo ancho */
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 0, 64, 0.3);
  border-radius: 10px;
  padding: 14px 18px;
  color: #fff;
  box-shadow: 0 0 10px rgba(255, 0, 64, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-width: 250px; /* 🔹 Evita que se rompa antes de tiempo */
}

.info-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 15px rgba(255, 0, 64, 0.25);
}

.info-box h3 {
  color: #ff0040;
  margin-bottom: 8px;
  font-size: 1rem; /* 🔹 Más pequeño */
}

.info-box ul {
  list-style: none;
  margin: 0;
  padding: 0;
  color: #ccc;
  font-size: 0.85rem; /* 🔹 Texto más pequeño */
  line-height: 1.4;
}

.info-box ul li {
  margin-bottom: 4px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .info-section {
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px; /* 🔹 Margen inferior para separación */
  }

  .info-box {
    flex: 1 1 100%;
  }

  .info-box h3 {
    font-size: 0.95rem;
    text-align: center;
  }

  .info-box ul {
    font-size: 0.85rem;
    text-align: center;
  }
}







/* ===== MODAL ESTILO ===== */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
  animation: fadeInModal 0.3s ease;
}

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

.modal-content {
  background: linear-gradient(160deg, #0b0b0b 0%, #1a1a1a 100%);
  border: 2px solid #ffffff;
  border-radius: 14px;
  padding: 30px;
  color: #fff;
  width: 90%;
  max-width: 950px;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.4);
  animation: scaleUp 0.4s ease;
  overflow-y: auto;
  max-height: 90vh;
  position: relative;
}

@keyframes scaleUp {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}


.close-btn {
  color: #ff0040;
  font-size: 1.8rem;
  font-weight: bold;
  position: absolute;
  right: 25px;
  top: 15px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-btn:hover {
  color: #fff;
}

/* ===== CONTENIDO ===== */
.modal-content h2 {
  text-align: center;
  color: #ff0040;
  margin-bottom: 25px;
  font-size: 1.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ===== GRID DE SEMESTRES ===== */
.malla-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.semestre {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 0, 64, 0.3);
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 0 8px rgba(255, 0, 64, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.semestre:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(255, 0, 64, 0.3);
}

.semestre h3 {
  color: #ffffff;
  margin-bottom: 10px;
  font-size: 1.2rem;
  text-align: center;
  border-bottom: 1px solid rgba(255, 0, 64, 0.3);
  padding-bottom: 6px;
}

/* ===== NIVELES ENMARCADOS ===== */
.nivel {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 3px solid #ff0040;
  border-radius: 8px;
  padding: 12px 14px;
  margin-top: 12px;
  transition: all 0.3s ease;
  min-height: 150px; /* 🔹 Tamaño uniforme */
}

.nivel:hover {
  background: rgba(255, 0, 64, 0.1);
  border-left-color: #fff;
}

.nivel h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 6px;
  font-weight: 600;
  text-align: center;
}

.nivel ul {
  margin: 0;
  padding: 0;
  list-style: none;
  color: #ccc;
  font-size: 0.9rem;
  text-align: center;
  line-height: 1.4;
}

.nivel ul li {
  margin-bottom: 4px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .malla-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .malla-container {
    grid-template-columns: 1fr;
  }

  .modal-content {
    padding: 20px;
  }

  .modal-content h2 {
    font-size: 1.4rem;
  }

  .semestre {
    padding: 12px;
  }

  .nivel {
    min-height: 130px;
  }
}






/* ===== MODAL UNIFORME ===== */
.uniforme-modal {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px 0;
}

.uniforme-modal h2 {
  text-align: center;
  color: #ffffff;
  margin-bottom: 20px;
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: 0.4px;
}

/* 🔹 Contenedor principal */
.uniforme-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px; /* 🔹 Más cerca entre texto e imagen */
  width: 100%;
  max-width: 900px; /* 🔹 Un poco más estrecho */
  margin: 0 auto;
  flex-wrap: wrap;
}

/* ===== LADO IZQUIERDO ===== */
.uniforme-lista {
  flex: 1;
  display: flex;
  justify-content: flex-end; /* 🔹 Empuja el texto más a la derecha */
  align-items: flex-start;
  min-width: 230px;
  padding-right: 10px; /* 🔹 Espacio hacia la imagen */
}

/* Caja del texto */
.uniforme-box {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 0, 64, 0.3);
  border-radius: 10px;
  padding: 20px 25px;
  margin: 10px;
  box-shadow: 0 0 10px rgba(255, 0, 64, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.uniforme-box:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 0, 64, 0.5);
  box-shadow: 0 0 16px rgba(255, 0, 64, 0.25);
}

.uniforme-box ul {
  list-style: disc;
  padding-left: 22px;
  margin: 0;
  color: #eee;
}

.uniforme-box li {
  margin-bottom: 8px;
  font-size: 0.98rem;
  line-height: 1.5;
  transition: color 0.3s ease;
}

.uniforme-box li:hover {
  color: #ff0040;
}

/* ===== LADO DERECHO ===== */
.uniforme-imagen {
  flex: 1;
  display: flex;
  justify-content: flex-start; /* 🔹 Mueve la imagen hacia la izquierda */
  align-items: center;
  min-width: 230px;
  padding-left: 10px; /* 🔹 Un poco de espacio desde el borde */
}

.uniforme-imagen img {
  max-width: 55%; /* 🔹 Tamaño ajustado */
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.uniforme-imagen img:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .uniforme-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 90%;
    margin: 0 auto 20px auto;
    gap: 18px;
  }

  .uniforme-box {
    width: 100%;
    max-width: 360px;
    margin: 8px auto;
    text-align: left;
  }

  .uniforme-imagen {
    justify-content: center;
  }

  .uniforme-imagen img {
    max-width: 75%;
  }

  .uniforme-modal h2 {
    font-size: 1.5rem;
  }
}







/* ===== SECCIÓN SOBRE GASTRONOMÍA ===== */
.about-section {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  background-color: #111;
  color: #fff;
  padding: clamp(50px, 6vw, 100px) 8%;
  flex-wrap: wrap;
  gap: 40px;
}

.about-left,
.about-right {
  flex: 1 1 500px;
  max-width: 600px;
  box-sizing: border-box;
}

/* === AJUSTES DE POSICIÓN === */
.about-left {
  margin-left: 40px;   /* 🔹 Mueve ligeramente hacia la derecha */
}

.about-right {
  margin-right: 40px;  /* 🔹 Mueve ligeramente hacia la izquierda */
}

/* === LADO IZQUIERDO === */
.about-left h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
}

.about-left .highlight {
  background-color: #ff0040;
  padding: 6px 12px;
  border-radius: 6px;
  box-shadow: 0 0 15px rgba(255, 0, 64, 0.4);
}

.about-left ul {
  list-style: none;
  padding: 0;
  margin: 15px 0;
  color: #ddd;
  line-height: 1.6;
}

.about-left ul li {
  margin-bottom: 8px;
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.about-info h3,
.about-stats h3 {
  color: #ff0040;
  margin-top: 20px;
  font-size: 1.3rem;
}

.about-info p,
.about-stats ul li {
  color: #ccc;
}

/* === SECCIÓN DE ESTADÍSTICAS COMPACTA === */
.about-stats {
  margin-top: 20px;
}

.stats-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px; /* Menor separación entre tarjetas */
}

.stats-card {
  background-color: #1a1a1a;
  border: 2px solid #ff0040;
  border-radius: 12px;
  padding: 18px 20px; /* Tarjeta más compacta */
  min-width: 120px;   /* Tamaño reducido */
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stats-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 15px rgba(255, 0, 64, 0.5);
}

.stats-number {
  font-size: 1.5rem;  /* Número más pequeño y legible */
  font-weight: bold;
  color: #fff;
  margin-bottom: 6px;
}

.stats-title {
  font-size: 0.95rem; /* Título más compacto */
  color: #ccc;
}

/* === LADO DERECHO === */
.about-right h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 15px;
  line-height: 1.3;
}

.about-right .career-info {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.career-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid #ff0040;
}

.about-right p {
  color: #ddd;
  line-height: 1.5;
}

.alliances {
  margin-top: 25px;
  text-align: center;
}

.alliances h4 {
  color: #ff0040;
  margin-bottom: 10px;
}

.alliances-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 10px;
}

.alliances-logos img {
  width: 90px;
  height: auto;
  filter: brightness(0.9);
  transition: all 0.3s ease;
}

.alliances-logos img:hover {
  filter: brightness(1.2);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .about-section {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .about-left,
  .about-right {
    margin: 0 auto; /* 🔹 Centra ambas columnas en móviles */
  }

  .about-right .career-info {
    flex-direction: column;
  }

  .career-img {
    width: 100px;
    height: 100px;
  }

  .alliances-logos img {
    width: 70px;
  }
}

@media (max-width: 600px) {
  .stats-cards {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .stats-card {
    min-width: 180px;
    padding: 16px 18px;
  }

  .stats-number {
    font-size: 1.4rem;
  }

  .stats-title {
    font-size: 0.9rem;
  }
}
















/* ===== SECCIÓN GESTIONA TU EMPRESA ===== */
.manage-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #ffffff;
  color: #fff;
  flex-wrap: wrap;
  gap: 0; /* Sin separación entre columnas */
  padding: 0;
}

.manage-left {
  flex: 1 1 50%;
  max-width: 50%;
}

.manage-left img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Mantiene proporción y cubre la columna */
  display: block;
}

.manage-right {
  flex: 1 1 50%;
  max-width: 50%;
  padding: 60px; /* Espacio interno para el eslogan */
  box-sizing: border-box;
}

.manage-right h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.3;
  margin: 0 0 15px 0; /* Separación entre líneas */
  color: #222222;
}


.manage-right h3 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.3;
  margin: 0 0 15px 0; /* Separación entre líneas */
  color: #ffffff;
}


.manage-right .highlight-red {
  background-color: #ff0040;
  padding: 6px 12px;
  border-radius: 6px;
  box-shadow: 0 0 15px rgba(255, 0, 64, 0.4);
  display: inline-block;
}

/* ===== ANIMACIÓN ENTRADA ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .manage-section {
    flex-direction: column;
  }

  .manage-left,
  .manage-right {
    max-width: 100%;
    flex: 1 1 100%;
  }

  .manage-right {
    padding: 30px;
    text-align: center;
  }
}



.highlight-red {
  background-color: #ff0040;
  padding: 6px 12px;
  border-radius: 6px;
  box-shadow: 0 0 15px rgba(255, 0, 64, 0.4);
  display: inline-block;
 
}

#dynamic-text::after {
  content: '|';
  display: inline-block;
  margin-left: 2px;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 50%, 100% { opacity: 1; }
  25%, 75% { opacity: 0; }
}


















/* ===== SECCIÓN GALERÍA ===== */
.gallery-section {
  background-color: #111;
  color: #fff;
  padding: clamp(50px, 6vw, 100px) 5%;
  text-align: center;
}

.gallery-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 40px;
  color: #ffffff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  grid-auto-rows: 150px;
  gap: 10px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transform: scale(1);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease, filter 0.5s ease;
}

/* Hover zoom */
.gallery-item:hover img {
  transform: scale(1.15);
  filter: brightness(1.2);
  transition: transform 0.5s ease, filter 0.5s ease;
}

/* ===== ANIMACIÓN DE ENTRADA INDIVIDUAL ===== */
.fade-in {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== LIGHTBOX ===== */
/* ===== LIGHTBOX ===== */
.lightbox {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.lightbox.show {
  opacity: 1;
  pointer-events: all;
}

.lightbox-img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(238, 238, 238, 0.5);
  transform: scale(0.7);
  transition: transform 0.5s ease, opacity 0.5s ease;
  opacity: 0;
}

.lightbox.show .lightbox-img {
  transform: scale(1);
  opacity: 1;
}

.lightbox.hide .lightbox-img {
  transform: scale(0.7);
  opacity: 0;
}

.lightbox .close {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.lightbox .close:hover {
  transform: scale(1.2);
}













/* ===== FOOTER ===== */
.site-footer {
  background-color: #111;
  color: #fff;
  padding: 50px 8%;
  font-family: 'Arial', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-logo img {
  width: 150px;
}

.footer-menu h4,
.footer-social h4,
.footer-qr h4 {
  color: #ff0040;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.footer-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu ul li {
  margin-bottom: 8px;
}

.footer-menu ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-menu ul li a:hover {
  color: #ff0040;
}

/* Redes sociales con Bootstrap Icons */
.footer-social .social-icons {
  display: flex;
  gap: 15px;
}

.footer-social .social-icons a {
  font-size: 1.5rem;
  color: #ccc;
  transition: all 0.3s;
}

.footer-social .social-icons a:hover {
  color: #ff0040;
  transform: scale(1.2);
}

/* QR Codes */
.footer-qr .qr-codes {
  display: flex;
  gap: 15px;
}

.footer-qr .qr-codes img {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  border: 2px solid #ff0040;
}

.footer-bottom {
  margin-top: 30px;
  text-align: center;
  font-size: 0.9rem;
  color: #888;
  border-top: 1px solid #333;
  padding-top: 20px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }

  .footer-menu ul li,
  .footer-social .social-icons,
  .footer-qr .qr-codes {
    justify-content: center;
  }

  .footer-logo img {
    margin: 0 auto;
  }

  .footer-qr .qr-codes {
    gap: 20px;
  }
}
