:root {
  --azul-oscuro: rgba(12, 17, 31, 1);
  --blanco: #ffffff;
  --blanco-roto: #f9f9f9;
  --gris: #888;
}

body {
  font-family: "Montserrat", sans-serif !important;
  color: var(--blanco) !important;
  margin: auto;
  min-width: 380px;
  background-color: var(--azul-oscuro) !important;
  background-image: linear-gradient(
      to bottom,
      rgba(12, 17, 31, 0) 90%,
      rgba(12, 17, 31, 1) 100%
    ),
    linear-gradient(to top, rgba(12, 17, 31, 0) 90%, rgba(12, 17, 31, 1) 100%),
    linear-gradient(to left, rgba(12, 17, 31, 0) 90%, rgba(12, 17, 31, 1) 100%),
    linear-gradient(to right, rgba(12, 17, 31, 0) 90%, rgba(12, 17, 31, 1) 100%),
    url("../asset/images/fondos/fondo_pie.png") !important;
  background-repeat: no-repeat;
  background-position: center calc(100% + 200px);
  background-size: 1500px;
}

/* Submenú: oculto por defecto */
.submenu-horizontal {
  display: none;
  position: absolute;
  top: 50px; /* margen superior que pediste */
  left: 0;
  width: 100%;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  background: linear-gradient(
    to bottom,
    var(--azul-oscuro) 0%,
    rgba(12, 17, 31, 0.6) 70%,
    rgba(0, 0, 0, 0) 100%
  );

  backdrop-filter: blur(2px);
  z-index: 5; /* suficientemente alto, pero sin tapar el activador */
  /* Alineación en una línea */
  display: none;
  height: auto;
}

/* Mostrar en una línea al activar */
.submenu-hover.active .submenu-horizontal {
  display: flex;
  gap: 1rem;
  justify-content: center; /* opcional */
}

/* Evita que el submenú tape el activador antes de estar activo */
.submenu-hover > .nav-link {
  position: relative;
  z-index: 9500;
}

/* Botones del submenú */
.btn-submenu {
  color: #fff;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  transition: background 0.2s ease;
}
.btn-submenu:hover {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 4px;
}
.fuente-gris {
  color: var(--gris);
}

.bg-azul-oscuro {
  background-color: var(--azul-oscuro);
}

.active {
  border-bottom: 2px solid var(--blanco);
}

.header {
  background: rgba(12, 17, 31, 1);
  color: var(--blanco);
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo img {
  height: 50px;
}

@media (max-width: 576px) {
  /* móviles en Bootstrap */
  .logo img {
    height: 40px;
  }
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

p {
  font-size: 1rem;
}

p a {
  color: var(--gris);
  text-decoration: none;
}

p a:hover {
  color: var(--blanco);
}

.nav a {
  color: var(--blanco);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.5px;
  position: relative;
  transition: color 0.3s;
}

.nav a:hover,
.nav a.active {
  color: #fff;
}

.nav a.active::after,
.nav a:hover::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #fff;
}

.login-btn {
  background: #5c5c5c;
  color: var(--blanco);
  border: none;
  border-radius: 20px;
  padding: 8px 18px;
  cursor: pointer;
  font-size: 13px;
  transition: background 0.3s;
}

.login-btn:hover {
  background: #777;
}

/* --- Menú Hamburguesa --- */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  background: var(--blanco);
  height: 2px;
  width: 22px;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.bg-azul-oscuro {
  background-color: rgba(12, 17, 31, 0.8) !important;
}

.offcanvas {
  width: 100% !important; /* ocupa toda la pantalla en móvil */
}

.offcanvas-header .logo img {
  max-width: 150px;
}

/* Mostrar al hacer hover */
.submenu-hover:hover .submenu-horizontal {
  display: block;
}

/* Botones estilo menú principal */
.btn-submenu {
  color: #fff;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  transition: background 0.3s ease;
}

.btn-submenu:hover {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

body.bg-conciertos {
  background-color: #000;
  /*background: url('asset/images/backgrounds/conciertos.jpg') no-repeat center center fixed;*/
  background-size: cover;
}
/* --- Responsive --- */
@media (max-width: 900px) {
  .nav {
    position: fixed;
    top: 60px;
    right: -100%;
    background: rgba(12, 17, 31, 0.98);
    height: calc(100vh - 60px);
    width: 220px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: flex-start;
    padding: 30px 20px;
    transition: right 0.3s ease;
  }

  .nav.open {
    right: 0;
  }

  .nav ul {
    flex-direction: column;
    gap: 15px;
  }

  .login-btn {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(7px);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-7px);
  }
}

.cabecero {
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
  height: 350px; /* ajusta la altura */
  border-radius: 0.5rem;
  overflow: hidden;
  z-index: -1;
}

.cabecero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    /* Radial en los cuatro lados */ radial-gradient(
      circle at center,
      rgba(30, 35, 68, 0) 80%,
      /* transparente en el centro */ var(--azul-oscuro) 100%
        /* azul en los bordes */
    ),
    /* Degradado superior */
      linear-gradient(
        to bottom,
        rgba(30, 35, 68, 0) 50%,
        /* azul arriba */ rgba(30, 35, 68, 0) 75%,
        var(--azul-oscuro) 100% /* azul en los bordes */
          /* transparente hacia el centro */
      ),
    /* Degradado inferior */
      linear-gradient(
        to top,
        rgba(30, 35, 68, 0.6) 50%,
        /* azul abajo */ rgba(30, 35, 68, 0) 75%,
        var(--azul-oscuro) 100% /* azul en los bordes */
          /* transparente hacia el centro */
      );

  pointer-events: none; /* no bloquea interacción */
}

.cabecero-content {
  position: relative;
  z-index: 3;
  color: #fff;
  text-align: center;
  /* eliminamos el padding-top que te dejaba 100px de margen */
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  flex-direction: column;
}

.img-responsive-texto {
  max-width: 80%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.img-responsive-texto_min {
  max-width: 50%;
  width: 220px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.concert-card {
  margin: auto;
  max-width: 95%;
  position: relative;
  background-color: transparent;
  border: none;
  border-radius: 1rem;
  overflow: visible; /* importante: permite que la cartela sobresalga */
  transition: all 0.3s ease;
}

.concert-card:hover {
  /* transform: translateY(-5px);*/
  filter: brightness(1.2);
}

.concert-image {
  width: 100%;
  aspect-ratio: 1 / 1; /* fuerza formato cuadrado */
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  /*
  box-shadow: 0px 0px 106px 0px rgba(12, 17, 31, 1) inset;
-webkit-box-shadow: 0px 0px 106px 0px rgba(12, 17, 31, 1) inset;
-moz-box-shadow: 0px 0px 106px 0px rgba(12, 17, 31, 1) inset;
  transition: filter 0.3s ease;*/
}
/* overlay normal */
.concert-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  transition: all 0.3s ease;
}

/* si está finalizado → oscurecer */
.concert-image.finalizado::after {
  background: rgba(
    12,
    17,
    31,
    0.5
  ); /* ajusta 0.45 según lo oscuro que quieras */
  backdrop-filter: blur(2px);
  border-radius: 10px;
}

.concert-card:hover .concert-image {
  filter: brightness(1.1);
}

/* Cartela (bloque de texto inferior) */
.concert-info {
  text-align: left;
  position: absolute;
  bottom: -50px; /* hace que sobresalga por debajo */
  left: 50%;
  transform: translateX(-50%);
  width: 85%; /* más estrecha que la imagen */
  background: rgba(28, 31, 39, 0.5); /* fondo semitransparente */
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 1rem 1.7rem;
  /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);*/
  transition: all 0.3s ease;
  z-index: 2;
}

.concert-details-capa {
  height: 95px;
  overflow: hidden; /* oculta lo que se pase */
}

.concert-details_descripcion {
  display: -webkit-box;
  -webkit-line-clamp: 3; /* número de líneas visibles */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.concert-card:hover .concert-info {
  background: rgba(28, 31, 39, 0.9);
}

.concert-title {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--blanco);
}

.concert-details {
  font-size: 0.9rem;
  color: var(--blanco-roto);
}

.concert-details_descripcion {
  font-size: 0.8rem;
  color: var(--blanco-roto);
}

/*.cookie-popup {
  position: fixed;
  margin: auto;
  background-color: rgba(0, 0, 0, 0.6);
  color: #000;
  z-index: 9998;
  display: none;
  width: 100%;
  height: 100%;
}

.cookie-popup_mensaje {
  position: fixed;
  font-weight: 500;
  color: var(--azul_osucuro);
  padding: 70px;
  font-size: 0.9rem;
  width: 70%;
  margin: auto;
  padding: 20px;
  background-color: var(--turquesa);
  color: #000;
  z-index: 9999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}*/

/* Submenú
.submenu {
  margin-top: 95px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.submenu-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.85rem;
  position: relative;
  transition: color 0.3s;
}

.submenu-link:hover,
.submenu-link.active {
  color: #fff;
}

.submenu-link.active::after,
.submenu-link:hover::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #fff;
}
@media (max-width: 992px) {
  .submenu {
    margin-top: 0;
    padding-top: 10px;
  }

  .submenu ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .submenu-link {
    display: block;
  }
}*/

.fondo_textos {
  /* Imagen de fondo */
  background-image:
    /* Radial en bordes */
    radial-gradient(circle, rgba(30, 35, 68, 0) 10%, var(--azul-oscuro) 100%),
    /* Degradado superior */
    linear-gradient(to bottom,
      rgba(30, 35, 68, 0) 50%,
      rgba(30, 35, 68, 0.4) 80%,
      var(--azul-oscuro) 100%
    ),
    /* Degradado inferior */
    linear-gradient(to top,
      rgba(30, 35, 68, 0.6) 50%,
      rgba(30, 35, 68, 0.2) 80%,
      var(--azul-oscuro) 100%
    ),
    /* Imagen real */
    url("../asset/images/fondos/fondo_textos.png");

  background-size: cover; /* que ocupe todo sin deformarse */
  background-repeat: no-repeat;
  background-position: center;
}

.enlace_evento {
  text-decoration: none;
}

.enlace_evento:hover {
  color: var(--azul-oscuro);
}

.icono_ticket {
  height: 22px;
  color: var(--blanco-roto);
}

.fondo_eventos {
  background-size: contain;
  background-repeat: no-repeat;
}

.contenedor_ventas {
  max-width: 100%;
  /*width: 1200px;*/
  padding: 3rem 4rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  margin: auto;
}

.fondo_ventas {
  position: absolute;
  top: 100px;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  z-index: -1;
}

.fondo_ventas img {
  width: 100%;
  display: block;
  opacity: 0.4; /* semitransparente */
}

.fondo_ventas .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
      to bottom,
      rgba(12, 17, 31, 0) 70%,
      rgba(12, 17, 31, 1) 100%
    ),
    linear-gradient(to top, rgba(12, 17, 31, 0) 70%, rgba(12, 17, 31, 1) 100%),
    linear-gradient(to right, rgba(12, 17, 31, 0) 70%, rgba(12, 17, 31, 1) 100%),
    linear-gradient(to left, rgba(12, 17, 31, 0) 70%, rgba(12, 17, 31, 1) 100%);
  pointer-events: none;
}

.cartel_venta {
  background-color: rgba(255, 255, 255, 0.1) !important;
  border-radius: 1rem;
}

.imagen_mas_conciertos {
  height: auto;
  background-size: cover;
  background-position: center;
}

.concert-link {
  flex: 1 1 calc(50% - 16px); /* ocupa al menos la mitad del contenedor menos el gap */
  max-width: 250px; /* ancho máximo original */
  text-align: center;
}
/* Contenedor con referencia clara para posicionar flechas */
.container.menu-wrap {
  position: relative;
  display: flex;
  align-items: center;
  /* evita que el wrap recorte el UL al centrar */
}

/* Ajusta el UL para que no se recorte al inicio; deja espacio para las flechas */
.menu-deslizable {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.75rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  white-space: nowrap;
  padding: 0 40px; /* espacio para flechas: debe coincidir con .scroll-arrow width */
  scroll-behavior: smooth;
  scroll-snap-type: x proximity; /* opcional: suaviza parada cerca de elementos */
}

/* Ocultar scrollbar en WebKit */
.menu-deslizable::-webkit-scrollbar {
  display: none;
}

/* Máscara en bordes para sugerir overflow sin ocultar interacción */
.menu-deslizable {
  /* Fallback sin mask en navegadores no compatibles: no rompe nada */
  /*-webkit-mask-image: linear-gradient(to right, transparent 0, black 40px, black calc(100% - 40px), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, black 40px, black calc(100% - 40px), transparent 100%);*/
}

/* Ítems no se encogen */
.nav-link {
  flex-shrink: 0;
}

/* Flechas fijas al borde del contenedor visible */
.scroll-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 26px;
  color: #fff;
  cursor: pointer;
  z-index: 20;
  user-select: none;
  width: 40px; /* coincide con el padding horizontal del UL */
  height: 40px;
  display: none; /* se muestra según overflow */
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0); /* sin fondo; ajustable si quieres contraste */
  border: none;
}

/* Posiciones fijas: sin cálculos complejos */
.left-arrow {
  left: 0;
}
.right-arrow {
  right: 0;
}

.scroll-arrow:hover {
  color: #ddd;
}

/* Opcional: estado deshabilitado visual */
.scroll-arrow[disabled] {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

.icono {
  display: block;
  width: 30px;
  height: 30px;
  background-image: url("../asset/images/iconos/ICONOS RRSS.png");
  background-size: cover;
  background-repeat: no-repeat;
  margin: 0 auto;

  transition: filter 0.25s ease;
}

.icono:hover {
  filter: brightness(0.5); /* oscurece el icono */
}

/* Posiciones según cada icono */
.rrss-instagram {
  background-position: left center;
}

.rrss-facebook {
  background-position: center center;
}

.rrss-tiktok {
  background-position: right center;
}

.eventos-listado {
  padding: 2rem;
  overflow: hidden;
  max-width: 1700px;
  margin: auto;
  text-align: center;
}

.galeria-container {
  position: relative;
  display: flex;
  align-items: center;
}
.galeria-scroll {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 1rem;
  padding: 1rem 0;
}
.galeria-scroll::-webkit-scrollbar {
  display: none;
}

.evento-card_sin {
  min-width: 220px;
  min-height: 220px;
  max-width: 220px;
  max-height: 220px;
  background-color: #222;
  border-radius: 8px;
  overflow: hidden;
  transition: filter 0.3s ease;
}

.evento-card_sin img {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(0.5);
}

.evento-card {
  min-width: 220px;
  min-height: 220px;
  max-width: 220px;
  max-height: 220px;
  background-color: #222;
  border-radius: 8px;
  overflow: hidden;

  transition: transform 0.3s;
}
.evento-card:hover img {
  filter: brightness(70%);
  transition: filter 0.3s ease;
}
.evento-card img {
  width: 100%;
  height: auto;
  display: block;
}
.evento-info {
  padding: 0.8rem;
  font-size: 0.9rem;
}
.flecha {
  background: rgba(255, 255, 255, 0.1);
  color: hsl(0, 0%, 100%);
  border: none;
  font-size: 2rem;
  cursor: pointer;
  padding: 0.5rem 1rem;
  transition: background 0.3s;
  z-index: 10;
  border-radius: 10px;
  margin: 10px;
}
.flecha:hover {
  background: rgba(255, 255, 255, 0.3);
}
.izquierda {
  position: absolute;
  left: 0;
}
.derecha {
  position: absolute;
  right: 0;
}

.btn-ver-mas {
  margin-top: 10px;
  color: var(--blanco-roto);
  cursor: pointer;
}

.btn-ver-mas:hover {
  color: var(--gris);
}

/* Botón solo visible en móvil */
@media (max-width: 768px) {
  .btn-ver-mas {
    display: inline-block;
  }
}
@media (min-width: 769px) {
  .btn-ver-mas {
    display: none;
  }
}

/* Clamping en móvil */
@media (max-width: 768px) {
  .descripcion {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3; /* número de líneas */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal; /* asegura saltos de línea */
    min-width: 0; /* si el padre es flex/grid */
  }

  .descripcion.expandido {
    display: block; /* expande normal */
    -webkit-line-clamp: unset;
    overflow: visible;
    text-overflow: clip;
  }
}

.lava-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.blob {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0; /* empieza invisible */
  transform: scale(0); /* empieza desde tamaño 0 */
}
.blob1 {
  background: radial-gradient(circle, #ff4fd4, #4f8bff);
}
.blob2 {
  background: radial-gradient(circle, #ffae00, #ff4fb0);
}

/* ------------------------------
   Fondo tipo Lámpara de Lava (2 blobs rápidos y aleatorios)
-------------------------------- */
/*
.lava-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: 0;
    background: #0c111f;
}


.lava-background .blob {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.9;
    will-change: transform;
    transform-origin: center center;
}


.blob1 {
    background: radial-gradient(circle, #ff4fd4, #4f8bff);
    top: 10%;
    left: 15%;
    animation: lava1 15s infinite ease-in-out;
}

.blob2 {
    background: radial-gradient(circle, #ffae00, #ff4fb0);
    top: 50%;
    left: 50%;
    animation: lava2 15s infinite ease-in-out;
}


@keyframes lava1 {
    0%   { transform: translate3d(0,0,0) scale(1); }
    10%  { transform: translate3d(20%, -10%, 0) scale(1.2); }
    25%  { transform: translate3d(-15%, 20%, 0) scale(0.9); }
    40%  { transform: translate3d(10%, -25%, 0) scale(1.1); }
    55%  { transform: translate3d(-20%, 10%, 0) scale(1.15); }
    70%  { transform: translate3d(15%, 15%, 0) scale(0.95); }
    85%  { transform: translate3d(-10%, -20%, 0) scale(1.05); }
    100% { transform: translate3d(0,0,0) scale(1); }
}


@keyframes lava2 {
    0%   { transform: translate3d(0,0,0) scale(1); }
    12%  { transform: translate3d(-25%, 15%, 0) scale(1.1); }
    28%  { transform: translate3d(15%, -20%, 0) scale(0.95); }
    44%  { transform: translate3d(-10%, 25%, 0) scale(1.2); }
    60%  { transform: translate3d(20%, -15%, 0) scale(1.05); }
    76%  { transform: translate3d(-15%, 10%, 0) scale(1.1); }
    92%  { transform: translate3d(10%, -25%, 0) scale(0.9); }
    100% { transform: translate3d(0,0,0) scale(1); }
}


.lava-background::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(12, 17, 31,0.1), transparent 70%);
    pointer-events: none;
}*/

#btnTop {
  position: fixed;
  right: 20px;
  bottom: 30px;
  width: 55px;
  height: 55px;
  background: rgba(255, 255, 255, 0.2); /* gris suave translúcido */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  backdrop-filter: blur(4px);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 9999;
}

#btnTop.show {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.faq-card {
  border-radius: 12px;
  margin-bottom: 1rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0.5rem 1rem;
  border: none;
}

.accordion-item_personalizado {
  background-color: rgba(
    255,
    255,
    255,
    0.1
  ) !important; /* fondo semitransparente */
  border: none;
}

.accordion-button {
  box-shadow: none;
  border: none;
  padding: 1rem 0;
}

.accordion-button::after {
  display: none;
}

.arrow-icon {
  opacity: 0.2;
  transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed) .arrow-icon {
  transform: rotate(180deg);
}

.enlace_faqs{
    color: var(--blanco);
    text-decoration: none;
}

.enlace_faqs:hover{
    color: var(--azul-gris);
}

.patrocinio_mini{
    width: 60%;
    height: auto;
}

.patrocinio_maxi{
    width: 100%;
    height: auto;
}

.patrocinio-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem; /* separación entre logos */
}

.patrocinio-wrap img {
  max-width: 120px;   /* tamaño máximo del logo */
  width: 100%;        /* ocupa el ancho disponible hasta el límite */
  height: auto;       /* mantiene proporción */
  object-fit: contain; /* asegura que no se deforme */
}

/************/
/************/
/************/

.galeria-tile-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.galeria-tile {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.galeria-tile:hover {
    transform: scale(1.03);
}

.galeria-tile img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    display: block;
}

.galeria-info {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 2rem 0.1rem;
    text-align: center;
}

.galeria-info h5 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    transition: none;
    max-width: 80%;
    margin: auto;
    background: rgba(255, 255, 255, 0.2); padding: 10px 20px; border-radius: 10px;
}

.btn-ver {
    display: inline-block;
    margin-top: 0.5rem;
    color: #fff;
    font-weight: normal;
    text-decoration: none;
    border: none;
    transition: none;
}

.formulario_input{
    color: var(--blanco);
    width: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    padding: 10px 15px;
}

.formulario_area{
    color: var(--blanco);
    width: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    padding: 10px 15px;
    resize: none;
    height: 200px;
}

input:focus, select:focus, textarea:focus {
  outline: none; /* elimina el contorno predeterminado */
  box-shadow: 0 0 5px #00bfff; /* opcional: efecto de resplandor */
}

.accordion-button:focus-visible {
  box-shadow: none !important;
  outline: none !important;
}

.accordion-button:focus,
.accordion-button:focus-visible,
.accordion-button:active {
  outline: none !important;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed){
      box-shadow: none !important;
}

.bto_enviar{
    background-color: rgba(255, 255, 255, 0.1);
    float: right;
    border-radius: 10px;
    padding: 15px 50px;
    cursor: pointer;
}

.bto_enviar:hover{
    background-color: rgba(255, 255, 255, 0.5);
    color: var(--azul-oscuro);
}

.enlace_terminos{
    color: var(--blanco);
    text-decoration: none;
    text-decoration: underline;
}
.enlace_terminos:hover{
    color: var(--gris);
}

.falta_info{
    background-color: rgba(171, 87, 4, 0.6);
}

.falta_info_2{
    color:#ffae00 !important;
}

.falta_info_2 .enlace_terminos{
    color:#ffae00 !important;
}
