/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;800&display=swap");
/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --black-color: hsl(0, 0%, 100%);
  --white-color: #d64545;
  --body-color: hsl(220, 100%, 97%);

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Montserrat", sans-serif;
  --normal-font-size: .938rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-semi-bold: 600;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1024px) {
  :root {
    --normal-font-size: 1rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: #d64545;
}


*{
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
  font-optical-sizing: auto;
  box-sizing: border-box;
}

body {
  background-color:  #d64545;
}

header {
  width: 100%;
  height: 90px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 100px;
}

.container {
  max-width: 1120px;
  margin-inline: 1.5rem;
}

.logo img {
  height: 50px;
}

.hamburger {
  display: none;    
}

.nav-bar ul {
  display: flex;
}

.nav-bar ul li a {
  display: block;
  color:  #d64545;
  font-size: 20px;
  padding: 10px 25px;
  border-radius: 50px;
  transition: 0.2s;
  margin: 0 5px;
  font-weight: 400;
  font-family: "Oswald", sans-serif ;
}

.nav-bar ul li a:hover {
  color: white;
  background:  #d64545;

}

.nav-bar ul li a.active {
  color: white;
  background-color:  #d64545;
}


@media only screen and (max-width: 1320px) {
  header {
      padding: 0 50px;
  }
}

@media only screen and (max-width: 1100px) {
  header {
      padding: 0 30px;
  }
}

@media only screen and (max-width: 900px) {
  .hamburger {
      display: block;
      cursor: pointer;

  }
  .hamburger .line {
      width: 30px;
      height: 3px;
      background:  #d64545;
      margin: 6px 0;
  }
  .nav-bar {
      height: 0px;
      position: absolute ;
      top: 80px;
      left: 0;
      right: 0;
      width: 100vw;
      background-color: white;
      transition: 0.7s;
      overflow: hidden;
      
  }
  .nav-bar.active {
      height: 450px;

  }
  .nav-bar ul{
      display: block;
      width: fit-content;
      margin: 80px auto 0 auto;
      text-align: center;
      transition: 0.7s;
      opacity: 0;
  }

  .nav-bar.active ul{
      opacity: 1 ;
  }

  .nav-bar ul li a {
      margin-bottom: 12px;
  }
}


.slider {
  background-image: url(img/getty-images-5OOy5sgd3gw-unsplash\ \(1\).jpg);
  background-size: cover;
  background-attachment:fixed;
  background-color: rgb(50,50,50);
  background-blend-mode: soft-light;
  height: 60vh !important ;
  animation: animate 5s infinite;
  background-position: center;
  text-align: center;
  color: white;
  padding: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 600;
  font-size: 30px;
  
}


@keyframes animate {
  25% {
      background-image: url(img/getty-images-71HFW20Oj6A-unsplash\ \(1\).jpg); 
      background-size: cover;
  }
  50% {
      background-image: url(img/getty-images-dhx3U-_E-i4-unsplash\ \(1\).jpg); 
      background-size: cover;
  }
  75% {
      background-image: url(img/getty-images-qeNeRPJdRo4-unsplash\ \(1\).jpg); 
      background-size: cover;
  }
  100% {
      background-image: url(img/getty-images-5OOy5sgd3gw-unsplash\ \(1\).jpg); 
      background-size: cover;
  }
  
}


.info {
  display: flex; 
  background-color:  #d64545;
  justify-content: space-between;
  text-align: center;
  padding-top: 2rem;
  padding-bottom: 2rem;
}


.section {
  padding-top: 100px;
  padding-left: 20px;
  padding-right: 20px;
  background-image: url(img/bgnd.PNG);
  margin-top: -4px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-info {
  width: 100%;
}

.section-info h2 {
  font-size: 23px;
  color: white;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 30px;
  text-align: center;
}

.section-txt {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.section-txt img {
  padding: 10px;
  width: 100%;
  border-radius: 30px;
  background-size: auto
}

.txt {
  color: black;
  padding: 5px;
  flex: 1;
  text-align: center;
}

.txt h4 {
  font-size: 18px;
  color: black;
}

.txt p {
  font-size: 16px;
  text-transform: none;
  font-weight: 400;
  margin-bottom: 100px;
  text-align: center;
  padding-left: 20PX;
  padding-right: 20PX;
}
.contacto {
  padding: 50px 100px;
  background-color: #d64545
}

.contacto-info h2 {
  font-size: 75px;
  color: white;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.contacto-txt {
  display: flex;
  justify-content: space-between  ;
}

.c-txt {
  color: white;
}

.c-txt h4 {
  font-size: 18px;
  color: #A7a7a7;
  margin-bottom: 30px;
  border-radius: 20px;
  background-color: #212121;
  padding: 10px;
  text-align: center;
  text-transform: uppercase;

  }

.c-txt p {
  font-size: 18px;
  text-transform: capitalize;
  font-weight: 600;
  text-align: center;
  margin-bottom: 15px;

}
.socials {
  display: flex;
  justify-content: center  ;
}


.social:hover {
  background-color: #d64545
}

.social img {
  margin: 0 10px;
  height: 40px;
  width: 40px;
 border: 2px solid white;
  border-radius: 50%;
  background-color: #212121;

}
.gal-container {
  background-image:  linear-gradient(
    rgba(0, 0, 0, 0.7),
    rgba(0, 0, 0, 0.7),),
    url(img/serback.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
.gal-container {
  max-width: 100%;
  position: relaive;
  height:9rem;
  background-color: #212121;
}

.gal-container h1{
  padding-top: 20PX;
  color: white;
  width: 100%;
  justify-content: center;
  text-align: center;
  display: flex;
  font-weight: 800;
  font-size: 80px; /* Ajusta el tamaño del texto según tus preferencias */
  text-shadow: 0 0 20px #0d0d0d;
}

.us-container {
  margin-top: 0rem;
  width: 100%;
  height: auto;
}

.imgus {
  background-image: url(img/backus2.jpg);
  background-size: cover;
  height: 60vh !important;
  background-position: center;
  text-align: center;
  color: white;
  padding: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 600;
  font-size: 30px;
}

.banercon {
  margin-top: 0rem;
  width: 100%;
  height: 10px;
}
.conimg  img{
  background-size: cover;
  background-attachment: fixed;
  height: 30vh !important;
  background-position: top;
  text-align: center;
  color: white;
  width: 100%;
  height: 100%;
}
.galery-container{
  background-color: #212121;

}
.galery {
  display: flex;
  height: 45rem;
  gap: 1rem;
  padding: 40px;
  

}

.galery > div {
  flex: 1;
  border-radius: 1rem;
  background-position: center;
  background-repeat: no-repeat;
  transition: all .8s cubic-bezier(.25, .4, .45, 1.4);
  background-size: cover;
  cursor: pointer;
  
}

.galery > div:hover{
  flex: 5;
  
  
}

#myModal {
  display: none;
  position: fixed;
  z-index: 9999; /* Asegura que el modal esté por encima de todo */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  overflow: hidden;
}

/* Estilo para la imagen dentro del modal */
#img01 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 90%;
  max-height: 90%;
  border-radius: 1rem;
}

/* Estilo para el botón de cierre */
.close {
  position: absolute;
  top: 15px;
  right: 35px;
  font-size: 40px;
  font-weight: bold;
  color: #f1f1f1;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}
.sec-ser {
  padding: 10px;
  background-color: #212121;
  display: flex;
  flex-direction: column;
  align-items: center;
  vertical-align: bottom;
  height: min-content;
  color:white;
}
.ser { 
  padding: 10px;
  background-color: #212121;
  display: flex;
  flex-direction: column;
  align-items: center;
  vertical-align: bottom;
  height: min-content;
  color:white;
}


.secser-info {
  width: 100%;

}
.serfoot p{
  color: white;
  margin-bottom: 50px;
  text-align: center;
  font-weight: 600;
  font-size: 3vh;
}
.foot-us h2{
  text-align: center;
}
.foot-us{
  color: white;
  margin-bottom: 50px;
  text-align: justify;
}
.secser-info h1 {
  color: white;
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
  font-size: 70px;
}
.secser-info p {
  font-size: 18px;
  color: white;
  font-weight: 600;
  text-transform: capitalize;
  text-align: center;
}
.services {
  padding: 50px 100px;;
  margin-top: 50px;
  margin-bottom: 50px;
  color: white;
  display: flex;
  gap: 1rem;
  width: 100%;
  background-color: #d64545;
  padding: 40px;
  border-radius: 20px;
}
.ser img{
  border-radius: 30px;
  object-fit: cover;
  width: 65%;
  padding: 10px;

}
.content {
  width: 100%;
  color: white;
  padding-left: 10px;
  padding-right: 10px;
}
.content ol>li{
  list-style:decimal;
  padding: 10px;
  font-weight: 600;

}
.content ul {
  padding: 10px 10px 10px 10px;
}
.content ul>li{
  list-style: disc;
  font-weight: 300;
  font-size: medium;

}
.content p{
  text-align: justify;
  margin-top: 10px;

}
.content h2{
  text-align: center;
}

.forms {
  padding-top: 50px;
  padding-left: 20px;
  padding-right: 20px;
  background-color: #212121;
  margin-top: -4px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.forms-info {
  width: 100%;
}

.forms-info h1 {
  color: white;
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
  font-size: 50px;
}
.forms-info p {
  color: white;
  font-weight: 400;
  text-align: center;
  font-size: 20px;
}

.forms-txt {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.forms-txt img {
  padding: 10px;
  width: 100%;
  border-radius: 30px;
}

.conta{
  max-width: 100%;
  padding: 30px;
  background-color: #212121;
}
.swiper-slide img {
  width: 600px;
  border-radius: 15px;
  height: 575px;
  box-shadow: 0 30px 30px rgba(0, 0, 0, 0.2);
  position: relative;
  margin-left:2rem;
  margin-bottom:1.5rem;
  

}

.f-txt {
  color: white;
  padding: 5px;
  flex: 1;
  text-align: center;
}

.f-txt h4 {
  font-size: 18px;
  color: #A7a7a7;
}

.f-txt p {
  font-size: 16px;
  text-transform: none;
  font-weight: 400;
  margin-bottom: 100px;
  text-align: center;
}
.f-txt form {
  height: 400px; /* Ajusta la altura según tus necesidades */
}

.contact-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
  background-color: #212121;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  color: white;
}

.contact-container form {
  flex: 1 1 50%;
  padding: 20px;
}

.contact-container h2 {
  margin-top: 0;
}

.contact-container label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.contact-container input, textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #d7d7d7;
}

.contact-container textarea {
  resize: vertical;
  height: 100px;
}

.contact-container button {
  padding: 10px 20px;
  background-color: #d32f2f;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background-color: #b71c1c;
}

.contact-info {
  flex: 1 1 40%;
  padding: 20px;
  color: white;
}

.contact-info h3 {
  margin-top: 0;

}
.container-cont {
  max-width: 800px;
  margin: 20px auto; /* Añade margen vertical para separar los contenedores */
  display: flex;
  justify-content: center; /* Centra horizontalmente */
  align-items: center; /* Centra verticalmente */
}
.info {
  padding:  5;
  display: flex;
  align-items: center;
  background-color: white;
  text-align: center;
}

.info-img {
  padding: 20px;
  padding-left: 150px;
}

.info-img img {
  height: 500px;
  width: 470px;

}
.info-txt {
  padding-right: 100px;
  width: 50%;
  text-align: center;
}

.info-txt h2 {
  font-size: 75px;
  color: black;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.info-txt p {
  font-size: 18px;
  color: black;
  margin-bottom: 50px;
  font-weight: 800;
}
.info-txt h3 {
  font-size: 30px;
  color: #d64545;
  font-weight: 800;
  text-transform: uppercase;
  margin-top: 20px;

}
.info-txt li {
  font-size: 18px;
  color: #d64545;

}
.btn-container {
  display: flex;
  justify-content: flex-end;
}

.btn-2 {
  display: inline-block;
  padding: 15px 35px;
  background-color: #d64545;
  color: white;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: 50px;
}

.btn-2:hover {
  background-color: black;
}
.separacion{
  background-image: url(img/bgnd.PNG);
}
.separacion img{
  width: 100%;
  height: auto;
}

.button {
  background-color:  #212121;
  border: none;
  border-radius: 50%;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.5);
  animation: sway 2s infinite alternate;
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 500px;
  transition: transform 0.5s, box-shadow 0.5s;
  margin-top: 3rem;
  margin-left: 47%;
  margin-right: 53%;
}

.button:hover {
  transform: rotate(-360deg);
  box-shadow: 0 0 20px 0 rgba(0, 0, 255, 0.5);
}
.yt {
  width: 700px;
  height: 500px;
}

@keyframes grow {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(10);
  }
}

@keyframes glow {
  0% {
    text-shadow: gold 1px 1px 1px;
  }

  100% {
    text-shadow: gold 0 0 10px gold;
  }
}

.icon {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.6));
  transition: transform 0.5s;
}

.icon:hover {
  transform: scale(1.5);
  filter: drop-shadow(1px 2px 4px rgba(0,0,0,0.9))
}

.follow-text {
  color: white;
  position: relative;
  top: 3em;
  left: -4em;
  transition: transform 0.5s;
}

.follow-text:hover {
  transform: scale(1.2);
  color: rgba(31,81,255,100);
  filter: drop-shadow(2px 2px 4px rgba(31,81,255,2.0))
}


@media screen and (max-width: 1118px) {
  .container {
    margin-inline: 1rem;
  }
  .gal-container h1{
 
    font-size: 60px; 
  }

.text {
  color: #f2f2f2;
  padding: 8px 12px;
  position: absolute;
  width: 100%;
  bottom: 50%;
  text-align: center;
  font-weight: var(--font-semi-bold);
  font-size: 50px;
  }
  
  .text h1{
    font-weight: var(--font-semi-bold);
    font-size: 30px;
    }
    .text{
      font-weight: var(--font-semi-bold);
      font-size: 30px;
      }
  .info{
    padding: 40px;
    flex-direction: column;
    justify-content: space-between;
  }
  .info-img{
    width: 100%;
    text-align: center;
    padding: .5rem;
  }
  .info-img img{
    width: 250px;
    height: 270px;
  }
  .info-txt{
    width: 100%;
    text-align: center;
    padding: 5px;
  }
  .info-txt h2 {
  font-size: 40px;

  }
  .info-txt p {
    font-size: 2.5vh;
    text-align: center;
    }
    .contacto {
      padding: 20px;
      text-align: center;
    }
    .contacto-info h2{
      font-size: 50px;
      margin-bottom: 15px
    }
    .contacto-txt{
      flex-direction: column;
     align-content: center;
     font-size: 5vh;
    }
  
    .socials{
      justify-content: center;
    }
    .social img {
      margin: 0 10px;
      height: 10px;
      width: auto;
     border: 2px solid white;
      border-radius: 50%;
      background-color: #212121;
      background-size: cover;
    
    }
    .section {
      padding: 20px;
      text-align: center;
    }
    .section-info h2{
      font-size: 5vh;
      margin-bottom: 15px
    }
    .section-txt{
      flex-direction: column;
     align-content: center;
    }
    .txt p{
      font-size: 2vh;
    }
    .txt h2{
      font-size: 3vh;
    }
    
    .txt img{
      width: 300px;
    }
    .socials{
      justify-content: center;
    }
    .socials img {
      margin: 8px 0 0 0 ;
    }
    
    .galery {
      flex-direction: column;
      height: 70rem;
      gap: 1rem;
      padding: 40px;

    }

    .secser-info h1 {
      color: #FFFFFF;
      font-weight: 900;
      text-transform: uppercase;
      text-align: center;
      font-size: 5vh;
    }
    .secser-info p {
      font-size: 18px;
      color: #FFFFFF;
      font-weight: 600;
      text-transform: capitalize;
      text-align: center;
    }
    .services {
      flex-direction: column;
    }
   
    .contacto-info h2{
      font-size: 5vh;
    }
    .c-txt p{
      font-size: 1.8vh;
    }
    .serfoot p{
      padding: 20px;
      color: #fff;
      margin-bottom: 50px;
      text-align: justify;
      font-weight: 600;
      font-size: 2vh;
    }
    .content ol{
      font-weight: 600;
      font-size: 2vh;
    
    }
    .content ul{
      list-style: circle;
      font-size:large;
      font-weight: 400;
      font-size: 2vh;
    
    }
    .content li{
      text-align: justify;
      margin-top: 10px;
    
    }
    .content h2{
      text-align: center;
      font-size: 3vh;
    }
    .sec-ser img{
      border-radius: 30px;
      object-fit: cover;
      width: 90%;
      padding: 10px;
    
    }
    .ser { 
      margin-top: 0rem;
    }
    .swiper-slide img {
    width: 100%;
    height: auto;  margin-left:0rem;
    
    }
    .slider-container{
      height: 20rem;
    }

    .slider {
      flex-direction: column;
      font-family: "Bebas Neue", sans-serif;
      font-weight: 400;
      font-size: 20px;
      padding-bottom: 100px;
      
    }
    .slider img{
      height: 50px;
      width: auto;
    }
   
    .separacion img{
      width: 100%;
      height: auto;
    }
    .us-container {
      height: 21rem;
    }
    .button {
      margin-left: 46%;
      margin-right: 54%;
      margin-top: 1rem;
      width: 70px;
      height: 70px;
    }
    .yt {
      width: 300px;
      height: 200px;
    }
  

    
   

}
    
@media screen and (max-width: 480px) {
  .button {
    margin-left: 36%;
    margin-right: 64%;
  }
  
}



/* For large devices */
@media screen and (min-width: 1118px) {
  .container {
    margin-inline: auto;
  }

}