@import url(//db.onlinewebfonts.com/c/4aa3e37e571255737e5e6d4e9d9770a5?family=Rockwell);

@font-face {font-family: "Rockwell"; src: url("//db.onlinewebfonts.com/t/4aa3e37e571255737e5e6d4e9d9770a5.eot"); src: url("//db.onlinewebfonts.com/t/4aa3e37e571255737e5e6d4e9d9770a5.eot?#iefix") format("embedded-opentype"), url("//db.onlinewebfonts.com/t/4aa3e37e571255737e5e6d4e9d9770a5.woff2") format("woff2"), url("//db.onlinewebfonts.com/t/4aa3e37e571255737e5e6d4e9d9770a5.woff") format("woff"), url("//db.onlinewebfonts.com/t/4aa3e37e571255737e5e6d4e9d9770a5.ttf") format("truetype"), url("//db.onlinewebfonts.com/t/4aa3e37e571255737e5e6d4e9d9770a5.svg#Rockwell") format("svg"); }

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --blue: #01273c;
  --white: #ffffff;
  --morado: #924cf1;
  --yellow: #DADE00;
  --green: #25D366;
  font-family: "Rockwell", serif;
}

body {
  font-family: "Rockwell", serif;
  margin: 0;
  padding: 0;
  background-color: var(--blue);
}


nav {
  display: -webkit-flex;
  height: 80px;
  align-items: center;
  justify-content: space-between;
  font-family: "Rockwell", serif;
  font-size: 20px;
  background-color: var(--blue);

  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  text-align: center;
  flex-direction: row;
  display: flex;
  justify-content: center;
  z-index: 1;
  border-bottom: solid 1px var(--white);
  transition: all .5s ease;
}



.nav__toggle {
  position: absolute;
  cursor: pointer;
  margin: 0 1rem;
  right: 0;
}

.nav__toggle svg {
  width: 1rem;
  fill: var(--white);
}

.nav__toggle .close {
  display: none;
}

/* distancia de la tachita desde el top */
.nav__toggle .close,
.nav__toggle .menu {
  margin-top: 0.3rem;
}

.nav__checkbox {
  display: none;

}

.nav__menu {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  margin: 0;
  background-color: var(--blue);

}

.nav__menu li {
  list-style-type: none;
  display: none;
}

.nav__menu a:hover {
  color: var(--morado);
}

.nav__menu li:first-child {
  /* margin-right: auto; */
  display: block;
}

.nav__menu a {
  text-decoration: none;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: lighter;
  line-height: 1;
}

.nav__menu .button-form {
  width: 180px;
  height: auto;
  color: var(--blue);

}

.menu__logo {
  height: 35px;
}

.menu__logo img {
  height: 100%;
  width: auto;
  padding-bottom: 2px;
  margin-right: 50px;
}

#nav__checkbox:checked~ul.nav__menu li {
  display: block;
}

#nav__checkbox:checked~label.nav__toggle .close {
  display: block;
}

#nav__checkbox:checked~label.nav__toggle .menu {
  display: none;
}


.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  padding: 10px;
  background-color: var(--blue);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.dropdown:hover .dropdown-content {
  display: block;
}

.purple-text {
  color: var(--morado);
}

/* IMAGEN PRINCIPAL-------------------------------------------------- */

div {
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 0;
  margin: 0;
  width: 100%;
}

.main-image {
  display: -webkit-flex;
  display: flex;
  margin: 50px auto 0 auto;
  width: 100%;  
  align-items: center;
  object-fit: contain;
}

.son-container {
  display: none;
}


.button-form, .button--artist {
  background-color: var(--yellow);
  /* Cambia el color de fondo a tu preferencia */
  padding: 12px 24px;
  /* Ajusta el padding a tu preferencia */
  border: none;
  text-align: center;
  display: inline-block;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 4px;
  /* Ajusta el radio de la esquina a tu preferencia */
}


button:hover, .button--artist:hover{
  color: var(--morado);
}

/* VIDEO */

.main-video {
  width: 100%;
  height: 0;
  position: relative;
  padding-bottom: 56.25%;
  /* relación de aspecto 16:9 */
  overflow: hidden;
}

/* Video */
.main-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Nav */
nav {
  width: 100%;
  height: 103px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  /* asegura que el nav se superponga sobre el video */
}

/* fondo del dropdown menu */
.dropdown-menu.show{
background-color: var(--blue);
}

.btn-secondary{
  background-color: var(--blue);
  border-color: none;
}

.btn{
  border: 0px;
}

/* Main Section */
.main-section {
  display: -webkit-box;
  /* Safari */
  display: -webkit-flex;
  /* Safari */
  display: flex;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  gap: 50px;
  padding: 50px;
  padding-bottom: 80px;
  max-width: 85%;
  background-color: var(--blue);
}

.main-section {
  display: flex;
  flex-direction: column;
  align-items: center;
}

section {
  margin-bottom: 20px;
}

h2, h3, p {
  margin: 0;
}

.main-section h2,
h3 {
  color: var(--white);
  text-align: center;
}

.main-section p {
  margin: auto;
  color: var(--white);
}

.stars-image{
  height: auto;
  width: 100px;
  padding-bottom: 10px;
  -webkit-height: auto;
  -webkit-width: 100px;
  -webkit-padding-bottom: 10px;
}


/* WhatsApp button */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  /* background-color: var(--white);
  color: white; */
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 8px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease-in-out;
}

.whatsapp-button:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

 .btn-whatsapp {
  fill: var(--green);
}

/* bookings */

.bookings-div{
  display: flex;
  height: auto;
  width: auto;
  justify-content: center;
  align-items: center;
  font-family: "Rockwell", serif;
}


/* Estilo para el título */
.booking-title {
  width: 100%;
  margin: auto;
  margin-bottom: 25px;
  padding: 5px;
  font-family: "Rockwell", serif;
  font-size: 36px; /* Tamaño de fuente */
  font-weight: bold; /* Grosor de fuente */
  text-align: center; /* Alineación de texto */
  color: #fff; /* Color de texto */
  /* margin-top: 5px;  */ 
}

.booking-title2 {
  max-width: 90%;
  font-family: sans-serif;
  font-size: 30px; /* Tamaño de fuente */
  font-weight: lighter; /* Grosor de fuente */
  text-align: center; /* Alineación de texto */
  color: #fff; /* Color de texto */
  /* margin-top: 5px;  */
  margin-bottom: 550px;
  padding: 5px;
}

.booking-title2 a{
   color: var(--white);
   font-family: sans-serif;
}

.booking-title2 a:hover{
  color: var(--morado);
  font-family: "Rockwell", serif;
}

.transparent-logo{
  height: auto;
  width: 200px;
  display: block;
  margin: 150px auto;
  padding-top: 10px;
}

#OurBookingTittle{
  margin-bottom: 40px;
}



/* Footer */
.footer {
  display: -webkit-box;
  /* Safari */
  display: -webkit-flex;
  /* Safari */
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
}

.footer a {
  margin: 20px 10px;
  width: 35px;
}

.footer a:hover {
  opacity: 0.3;
  /* Cambia la opacidad del enlace cuando se desplace sobre él */
}


.underConstructionImage {
  max-width: 100vw;
  overflow: hidden;
  margin-top: 7%;
}

.underConstructionBody {
  width: 100vw;
  height: 100vh;
  /* background-color: #040404; */
}


/* .bookings-div */

.slider{
  display: flex;
  max-width: 800px;
  height: 400px;
  width: 100%;
  margin: auto;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.slider img{

  width: 100%;
  object-fit: cover;
  scroll-snap-align: center;
}

.video-gutty video{
  display: flex;
  justify-content: center;
  max-width: 800px;
  margin: auto;
  height: auto;
  width: 70%;
}

.slider2 {
  display: flex;
  max-width: 800px;
  height: 400px;
  width: 100%;
  margin: auto;
}


.slider2 img{
  width: 100%;
  object-fit: cover;
  margin: auto;
}


.booking-text h1, p{
  display: block;
  margin-bottom: 10px;

  text-align: center;
  color: var(--white);
}

.santiago-paragraph{
  color: var(--blue);
}



.agents-container{
width: 100%;
height: auto;
margin: auto;
display: grid;
grid-template-columns:
repeat(
  auto-fit,
  minmax(250px, 1fr)
);
align-items: start;
gap: 32px;
}

.agents-container figure > a img{
  width: 230px;
  height: 230px;
  object-fit: cover;
margin: auto;
margin-bottom: 10px;
width: 90%;
-webkit-transform: scale(1);
transform: scale(1);
-webkit-transition: .3s ease-in-out;
transition: .3s ease-in-out;
}

.agents-container figure > a img:hover{
  -webkit-transform: scale(1.3);
	transform: scale(1.3);
  }
  

.agents-container figure {
  text-align: center;
}


figcaption {
  margin-bottom: 10px;
  color: var(--white);
  font-family: sans-serif;
  font-size: 20px;
}

.agents-section{
margin: 0 auto;
height: auto;
width: auto;
font-family: "Rockwell", serif;
font-size: 18px;
font-weight: lighter;
text-align: center;
color: var(--white);

}

.agents-section a {
margin-bottom: 10px;
list-style: none;
color: var(--yellow);

}

/* roster */

.artist-container-individual, h2{
  width: 100%;
  padding: 1.6rem 1rem;
  margin-top: 40px;
  text-align: left;
  font-size: 1.5rem;
    line-height: 1;
    font-family: "Rockwell", serif;
    color: var(--blue);
    text-transform: uppercase;
    background-color: var(--yellow);
}

.tittle-index{
  background-color: transparent;
}

.artist-main-container {
  display: flex;
  grid-template-columns: 2fr;
  grid-template-rows: 1fr;
  width: 100%;
}

.artist-main-container img {
  display: block;
  margin-bottom: 10px;
}

.contenedor {
  width: 100%;
  height: 600px;
}

.contenedor img {
  width: 100%;
  height: 100%;
  padding: 50px;
  object-fit: cover;
}

#text-roster p {
  margin-top: -180px;
  align-self: flex-start;
  padding: 30px;
  font-family: "Rockwell", serif;
  font-weight: lighter;
  text-align: left;
  font-size: 1rem;
  line-height: 1.2;
  -webkit-margin-top: -180px; /* Prefijo para Safari */
  -webkit-align-self: flex-start; /* Prefijo para Safari */
  -webkit-padding-start: 30px; /* Prefijo para Safari */
  -webkit-font-smoothing: antialiased; /* Prefijo para Safari */
}

#text-roster{
  display: block;
}

.button--artist-container{
  margin-right: 30px;
  
  justify-content: right;
  text-align: left;
  
}

.button--artist{
  margin: 60px 30px 0 0;
  font-weight: bold;
  text-decoration: none;
  color: var(--blue);
}

/* gallery */

.cards-container{
margin-top: 100px;
display: grid;
grid-template-columns: repeat(auto-fill, 240px);
grid-gap: 26px;
place-content: center;
/* background-color: var(--blue) */
}

.product-card{
width: 240px;
    
}
.product-card img{
    width: 240px;
    height: 240px;
    object-fit: cover;
}

.product-card img:hover {
    -webkit-transform: scale(1.3);
	transform: scale(1.3);
}



.product-info{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
}

.product-info figure{
    margin: 0;
}
.product-info figure img{
    width: 35px;
    height: 35px;
}

.product-info div p:nth-child(1){
    font-weight: bold;
    font-size: var(--m);
    margin-top: 0;
    margin-bottom: 4px;
}

.product-info div p:nth-child(2){
    font-size: var(--s);
    margin-top: 0;
    margin-bottom: 0;
    color: rgb(133, 120, 104);
}

.artist-main-container .contenedor .video-artist{
  width: 100%;
  height: 100%;
  padding: 50px;
  object-fit: cover;
}

/* media queries gallery */

@media (max-width: 640px){
    .cards-container{
grid-template-columns: repeat(auto-fill, 300px);
    }

    .product-card{
width: 300px;
    }
    .product-card img{
width: 300px;
height: 300px;
    }
}







