@import url('https://fonts.googleapis.com/css2?family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

h1 {
  font-family: "PT Serif", serif;
  color: #447de6;
}

h2 {
  color: #fff;
  font-family: "PT Serif", serif;
}
h3{
  font-family: "PT Serif", serif;
  color: #447de6;
}

/*fondo*/
.main_video {
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.title h3{
  margin: 0 auto;
  display: flex;
  justify-content: center;
  color: #447de6;
  font-size: 40px;
  font-family: "PT Serif", serif;
}
video {
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -100;
  transform: translateX(-50%) translateY(-50%);
}

#content {
  position: relative;
  z-index: 1;
  color: #fff;
  text-align: center;
  padding: 20px;
}

/* nuevo menu */
.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #585757ad;
  padding: 10px 20px;
  position: relative;
}
.navbar img {
width: 110px;

}
.navbar .menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
}
.navbar .menu li {
  margin-left: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.navbar .menu li a {
  color: white;
  text-decoration: none;
  font-size: 20px;
  position: relative;
  transition: color 0.3s;
}
.navbar .menu li a .icon {
  margin-top: -30px;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  transform: translateY(-10px);
}
.navbar .menu li a:hover {
  color: #447de6;
}
.navbar .menu li a:hover .icon {
  opacity: 1;
  transform: translateY(10px);
}
.navbar .hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  position: absolute;
  right: 20px;
}
.navbar .hamburger div {
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 4px 0;
  transition: transform 0.3s, opacity 0.3s;
}
.navbar .hamburger.active div:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navbar .hamburger.active div:nth-child(2) {
  opacity: 0;
}
.navbar .hamburger.active div:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
  .navbar {
      justify-content: space-between;
  }
  .navbar .menu {
      display: flex;
      flex-direction: column;
      width: 100%;
      background-color: #333333c5;
      position: absolute;
      top: 135px;
      left: 0;
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      z-index: 1;
  }
  .navbar .menu.show {
      max-height: 300px;
      opacity: 1;
  }
  .navbar .menu li {
      margin: 10px 0;
      text-align: center;
  }
  .navbar .hamburger {
      display: flex;
  }
}





/* redes sociales  */
.social_main {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.social-icons {
  display: flex;
  justify-content: space-around;
  width: 200px;

}

.social-icons a {
  color: #447de6;
  text-decoration: none;
  font-size: 24px;
  transition: transform 0.3s ease-in-out;
}

.social-icons a:hover {
  transform: scale(1.2);
  text-decoration: underline;
  color: #ffffff;
}


/* banner */
.banner {
  width: 100%;
  border-bottom: #ffffff solid 1px;
  margin: 0 auto;
  /* Centra el banner horizontalmente */
  text-align: center;
  /* Centra el contenido del banner */
  padding: 20px;
  /* Espaciado interno */
}

.banner h1 {
  font-size: 60px;
  color: #ffffff;
}
.banner p {
  font-size: 40px;
  color: #ffffff;
 
  margin-top: -30px;
}

.banner a {
  color: rgba(0, 0, 0, 0.733);
  font-size: 35px;
  border-top: #447de6 solid 1px;
  border-bottom: #447de6  solid 1px;
  border-right: #447de6  solid 1px;
  border-left: #447de6  solid 1px;
  background-color: #447de6;
  border-radius: 16px;
  text-decoration: none;
  padding-left: 10px;
  padding-right: 10px;
  
}

.banner a:hover {
  color: rgba(0, 0, 0, 0.733);

  border-top: #e5a2b4 solid 1px;
  border-bottom: #e5a2b4 solid 1px;
  border-right: #e5a2b4 solid 1px;
  border-left: #e5a2b4 solid 1px;
  background-color: #ffffff;
  transition: ease-in-out .9;
}


@media screen and (max-width: 768px) {
  .banner {
    max-width: 600px;
    /* Ajusta el ancho máximo para dispositivos de escritorio */
  }

  .banner h1 {
    font-size: 40px;
  }
  .banner p{
    font-size: 25px;
    margin-top: 20px;
  }
}






/* section */



.containert {
  display: flex;
  align-items: center;
  width: 80%; /* Ajusta este valor según lo necesites */
  margin: 0 auto;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  border-radius: 8px;
}
.textt {
  margin-left: 40px;
  color: #fff;
}
.imaget img {
  max-width: 400px; /* Ajusta este valor para cambiar el tamaño de la imagen */
  height: auto;
 border-radius: 50%;
}
@media (max-width: 768px) {
  .containert {
      width: 80%;
      flex-direction: column;
      text-align: center;
  }
  .imaget {
      margin: 0 0 20px 0;
  }
  .imaget img {
      max-width: 300px;
  }
  .textt{
    justify-content: center;
    display: block;
    margin:  0 auto;
  }
}
@media (max-width: 480px) {
  .containert {
      width: 90%;
  }
  .imaget img {
      max-width: 300px;
  }
}







/* list 
.container_list {
  width: 100%;
  max-width: 900px;
  margin: 50px auto;
  background-color: #050505c9;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  overflow: hidden;

}
.container_list img{
  width: 140px;
}
.container_list h3 {
  margin-bottom: 20px;
  color: #447de6 ;
  font-size: 25px;


}
.container_list h1{
  color: #447de6 ;
}

.container_list p {
  margin-bottom: 20px;

  color: #ffffff;
  font-size: 20px;
}


ul {
  list-style-type: none;
  padding: 0;
}

li {
  margin-bottom: 20px;
}



/* Animaciones 

.container_list {
  animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
 .banner .bannerp{
  color: #fff;
  font-size: 28px;
}*/



/* banner rent studio */

.promo-banner {
  background-color: #f7f7f788;
  padding: 30px 20px; /* altura más baja */
}

.promo-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
  gap: 20px;
}

.promo-text {
  flex: 1;
  min-width: 260px;
  max-width: 480px;
  text-align: justify;
}

.promo-text p {
  font-size: 0.95rem; /* texto más pequeño */
  line-height: 1.5;
  color: #333;
  margin-bottom: 10px;
}

.promo-image {
  flex: 1;
  min-width: 150px;
  max-width: 200px;
  overflow: hidden;
  border-radius: 10px;
}

.promo-image img {
  width: 100%;
  display: block;
  border-radius: 10px;
  animation: zoomBounce 6s infinite ease-in-out;
}

@keyframes zoomBounce {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
}

/* Botón reutilizado */
.rent-button {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  font-size: 0.95rem;
  color: #fff;
  background-color: #111;
  border: none;
  border-radius: 25px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.rent-button:hover {
  background-color: #444;
  transform: scale(1.05);
}

/* Responsive: stack en móviles */
@media (max-width: 768px) {
  .promo-content {
    flex-direction: column;
    text-align: center;
  }

  .promo-text {
    order: 2;
  }

  .promo-image {
    order: 1;
  }
}






/* map */

.containerm {
  max-width: 800px;
  height: 200px;
  margin: 20px auto;
  background-color: #ffffff27;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: row;
}

.textom {
  flex: 1;
  padding: 20px;
}

.textom p {
  line-height: 1.6;
  color: #fff;
  font-family: "Roboto", sans-serif;
}

.iframe {
  flex: 1;
  overflow: hidden;
  position: relative;
  padding-top: 75%;
  /* Aspect ratio 4:3 */
}

iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

@media screen and (max-width: 768px) {
  .containerm {
    flex-direction: column;
    border-radius: 0;
    height: 400px;
  }

  .textom,
  .iframe {
    flex: 1;
  }
}

/* footer */

footer {
  background-color: #3333339d;
  color: #fff;
  padding: 20px 0;
  text-align: center;
  border-top: 1px #447de677 solid;
}


.containerf {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.containerf img{
  width: 80px;
  margin-right: 20px;
}
.footer-info {
  flex: 1;
  text-align: left;

}
.footer-info p a{
  color: #fff;
  text-decoration: none;
}


.footer-links {

  font-family: "Roboto", sans-serif;
  font-size: 18px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  margin-right: 20px;
  transition: color 0.3s ease;
}
.footer-links a:hover {
  color: #447de6;
  text-decoration: underline;
}

.footer-social {
  flex: 1;
}

.footer-social a {
  color: #fff;
  font-size: 24px;
  margin-right: 10px;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #447de6;
  text-decoration: underline;

}

/* Media Query para dispositivos móviles */
@media screen and (max-width: 768px) {
  .containerf {
    flex-direction: column;
  }

  .footer-links {
    margin-top: 20px;
  }

}