.video-brand-container {
      position: relative;
      width: 100%;
      max-width: 400px;
      margin: 0 auto;
      overflow: hidden;
      background: #000; /* Fallback background */
      border-radius: 8px; /* Native ad aesthetic */
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    /* Video styling */
    .video-brand {
      width: 100%;
      height: auto;
      display: block;
      pointer-events: none; /* Prevent interaction with video controls */
    }

    /* Mute/Unmute button */
    .mute-toggle {
      position: absolute;
      top: 20px;
      right: 20px;
      background: rgba(0, 0, 0, 0.7);
      color: #fff;
      border: none;
      border-radius: 50%;
      width: 40px;
      height: 40px;
      font-size: 20px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 10;
      transition: background 0.3s;
    }

    .mute-toggle:hover {
      background: rgba(0, 0, 0, 0.9);
    }

    /* Ensure the video fits mobile screens */
    @media (max-width: 1080px) {
      .video-brand-container {
        width: 100%;
        height: auto;
      }
    }






    /* Existing styles for tickets-container and other buttons (simplified) */
    .tickets-container {
      display: flex;
      gap: 20px;
      justify-content: center;
      align-items: center;
      padding: 20px;
    }

    .boton-compra-online,
    .boton-mapa-taquilla {
      display: inline-block;
      padding: 12px 24px;
      border: 2px solid #fff;
      border-radius: 25px;
      color: #fff;
      text-decoration: none;
      font-size: 16px;
      font-weight: 600;
      text-align: center;
      transition: all 0.3s ease;
      cursor: pointer;
      background: transparent;
    }

    .boton-compra-online:hover,
    .boton-mapa-taquilla:hover {
      background: rgba(255, 255, 255, 0.1);
      color: #fff;
    }

    .boton-compra-online:active,
    .boton-mapa-taquilla:active {
      background: #fff;
      color: #000;
    }

    .boton-compra-online:focus,
    .boton-mapa-taquilla:focus {
      outline: 2px solid #fff;
      outline-offset: 2px;
    }

    /* Corrected and specific styles for boton-mas-informacion */
    .tickets-container .boton-mas-informacion {
      display: inline-block;
      padding: 14px 28px; /* Slightly larger for distinction */
      border: 2px solid #000; /* Black border */
      border-radius: 30px; /* More rounded for uniqueness */
      color: #000 !important; /* Black text, high priority */
      text-decoration: none;
      font-size: 16px;
      font-weight: 700; /* Bolder font for emphasis */
      text-align: center;
      transition: all 0.3s ease;
      cursor: pointer;
      background: #fff; /* White background */
    }

    .tickets-container .boton-mas-informacion:hover {
      background: #e0e0e0; /* Light gray hover for contrast */
      color: #000 !important; /* Ensure black text */
    }

    .tickets-container .boton-mas-informacion:active {
      background: #ccc; /* Darker gray on click */
      color: #000 !important; /* Ensure black text */
    }

    .tickets-container .boton-mas-informacion:focus {
      outline: 2px solid #fff;
      outline-offset: 2px;
    }

    /* Responsive design */
    @media (max-width: 600px) {
      .tickets-container {
        flex-direction: column;
        gap: 15px;
      }

      .boton-compra-online,
      .boton-mapa-taquilla,
      .tickets-container .boton-mas-informacion {
        width: 100%;
        max-width: 300px;
        padding: 10px;
        font-size: 14px;
      }
    }








    .brochure-s-vagabundo {
  display: flex;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 60px auto;
  border: 2px solid #d29109;
  border-radius: 12px;
  overflow: hidden;
  font-family: 'B612', sans-serif;
}

.brochure-img {
  flex: 1 1 40%;
  min-width: 280px;
  background-color: #000;
  /* Para que la imagen mantenga su proporción y no se corte */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.brochure-img img {
  width: 100%;
  height: auto;          /* Cambié de 100% a auto para mantener proporción */
  object-fit: contain;   /* Cambié de cover a contain para que no se corte */
  display: block;
}

.brochure-content {
  flex: 1 1 60%;
  background-color: #fff;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.brochure-content h2 {
  color: #020202;
  font-size: 1.8em;
  margin-bottom: 10px;
}

.brochure-content p {
  color: #444;
  font-size: 1em;
  margin: 6px 0;
}

.brochure-buttons {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.brochure-buttons a {
  text-decoration: none;
  background-color: #d29109;
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 0.95em;
  transition: background-color 0.3s ease;
  flex: 1 1 auto;
  max-width: 200px;
  text-align: center;
}

.brochure-buttons a:hover {
  background-color: #b47b07;
}



@media (max-width: 600px) {
  .brochure-s-vagabundo {
    flex-direction: column;
    align-items: stretch; /* Permite que la imagen use todo el alto disponible */
  }

  .brochure-img,
  .brochure-content {
    flex: 1 1 100%;
  }

  .brochure-content {
    padding: 25px 15px;
  }

  .brochure-buttons {
    flex-direction: column;
    gap: 10px;
    align-items: center; /* Centra los botones */
  }

  .brochure-buttons a {
    width: 100%;
    max-width: 300px;
    flex: none;
  }

  .brochure-img img {
    height: 100%;
    width: auto;
    object-fit: contain;
  }

}












.cabecera-tarjeta {
  display: flex;
  flex-wrap: wrap; /* Permite que los elementos pasen a otra línea en pantallas pequeñas */
  align-items: center;
  gap: 20px;
  padding: 20px 30px;
  border-radius: 20px;
  justify-content: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.logo-cabecera {
  height: 150px;
  width: auto;
  max-width: 100%;
}

.titulo-cabecera {
  margin: 0;
  color: #7AB8FF;
  font-size: x-large;
  font-weight: 800;
  text-align: center;
  word-break: normal;
  hyphens: none;

}


.logo-cabecera img,
.logo-cabecera video {
  height: 150px;
  width: auto;
  max-width: 100%;
}



@media (max-width: 600px) {
  .cabecera-tarjeta {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .logo-cabecera {
    height: 100px;
  }

  .titulo-cabecera {
    font-size: 1.2rem;
  }

  .logo-cabecera img,
  .logo-cabecera video {
    height: 100px;
  }
}










.twitter_contenedor_responsivo {
  display: flex;
  justify-content: center;
  padding: 1rem;
  width: 100%;
  box-sizing: border-box;
}

.twitter_contenedor_responsivo iframe {
  max-width: 100%;
  width: 100%;
  height: auto;
  aspect-ratio: 550 / 650;
  border: none;
}





  .video-canvas-testimonio {
    max-width: 700px;
    margin: 60px auto;
    padding: 20px;
    background: #f4f4f4;
    border-radius: 12px;
    text-align: center;
    font-family: 'B612', sans-serif;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }

  .video-canvas-testimonio h3 {
    margin-bottom: 20px;
    font-size: 1.5em;
    color: #020202;
  }

  .video-wrapper-testimonio {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
  }

  .video-overlay-testimonio {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 2, 2, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: opacity 0.3s ease;
  }

  .video-overlay-testimonio::before {
    content: "▶";
    font-size: 70px;
    color: white;
  }

  video.plyr {
    width: 100%;
    height: auto;
    display: block;
  }

  @media (max-width: 600px) {
    .video-canvas-testimonio {
      padding: 15px;
    }

    .video-canvas-testimonio h3 {
      font-size: 1.2em;
    }
  }






  .avatar img,
.avatar video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}