@import url('https://fonts.googleapis.com/css2?family=Vidaloka&family=Young+Serif&display=swap');

body {
    margin: 0;
    padding: 0;
}

/* img {
    width: 100%;
} */

.fondo-header {
    background: #331761;
    background: radial-gradient(circle, rgba(51, 23, 97, 1) 0%, rgba(26, 16, 39, 1) 97%);
}

/* .fondo-morado-resp {
    background: rgb(26, 16, 39);
    background: -moz-linear-gradient(0deg, rgba(26, 16, 39, 1) 0%, rgba(51, 23, 97, 1) 100%);
    background: -webkit-linear-gradient(0deg, rgba(26, 16, 39, 1) 0%, rgba(51, 23, 97, 1) 100%);
    background: linear-gradient(0deg, rgba(26, 16, 39, 1) 0%, rgba(51, 23, 97, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#1a1027", endColorstr="#331761", GradientType=1);
} */

.fondo-morado {
    background: #1A1027;
    background: -webkit-linear-gradient(90deg, rgba(26, 16, 39, 1) 0%, rgba(51, 23, 97, 1) 50%, rgba(26, 16, 39, 1) 100%);
    background: -moz-linear-gradient(90deg, rgba(26, 16, 39, 1) 0%, rgba(51, 23, 97, 1) 50%, rgba(26, 16, 39, 1) 100%);
    background: linear-gradient(90deg, rgba(26, 16, 39, 1) 0%, rgba(51, 23, 97, 1) 50%, rgba(26, 16, 39, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#1A1027", endColorstr="#1A1027", GradientType=1);
}

.gutter-x0 {
    --bs-gutter-x: 0 !important;
}

.barra-deco {
    background-image: url(img/Franja-dorada.png);
    background-repeat: repeat-x;
    background-position: center;
    height: 35px;
}

.separador-deco {
    background-image: url(img/Separador-dorado.png);
    background-repeat: no-repeat;
    background-position: center;
    height: 35px;
}

.titulo {
    font-size: 1.5em;
    margin-left: 6px;
}
.card-transparent {
    background-color: transparent !important;
    /* Fondo transparente */
    border: none;
    /* Opcional: elimina el borde si no lo deseas */
}

h1 {
    color: #9f9144 !important;
    font-family: "Vidaloka", serif;
    font-weight: 400;
    font-style: normal;
}

h3 {
    color: #9f9144 !important;
    font-family: "Vidaloka", serif;
    font-weight: 400;
    font-style: normal;
}

h5 {
    color: #c3bfa4 !important;
}

p {
    color: #c3bfa4;
}

.quote {
    font-weight: 400;
}

.borde-dorado {
    border-style: solid; 
    border-width: 5px;
    border-radius: 0px;
    border-image: linear-gradient(to top, #534a08, #8a8038, #534a08, #8a8038) 1 ;
}

a {
    color: #c3bfa4 !important;
    transition: 0.3s ease-in !important;
}

a:hover {
    color: #fefbe4  !important;
    text-shadow: 0 0 15px #d5c444;
    transition: 0.4s ease;
}

.menudropdown:hover {
    background-color: #1A1027 !important;
}

.icono-redes {
    width: 72px !important;
    max-width: 72px !important;
}

.brillo-foto {
    transition: 0.3s ease-in !important;
}

.brillo-foto:hover {
    filter: drop-shadow(0px 0px 9px #8a8038);
    transition: 0.4s ease;
}

/* CARRUSEL */
.gallery-img {
  width: 260px;
  height: 402px;
  object-fit: cover;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform .2s;
}

.gallery-img:hover {
  transform: scale(1.03);
}

.gallery-carousel::-webkit-scrollbar {
  display: none; /* opcional */
}

/* BOTONES IZQ DER */
.gallery-prev,
.gallery-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: .85;
}

.gallery-prev { left: -20px; }
.gallery-next { right: -20px; }

.gallery-prev:hover,
.gallery-next:hover {
  opacity: 1;
}

/* BOTONES IZQ DER */
.btn-lightbox {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  border: none;
  color: white;
  font-size: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
}

.btn-lightbox.prev { left: 10px; }
.btn-lightbox.next { right: 10px; }

.btn-lightbox:hover {
  background: rgba(0,0,0,0.7);
}
/* FIN CARRUSEL */