@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Libre+Caslon+Text:ital,wght@0,400;0,700;1,400&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --color-primario: #9a0000;
    --color-segundario: #ffff;
    --color-textos: #000;
    --color-tercero: #e4e1e1;
    --Text-title: "Libre Caslon Text", serif;
    --Text-parrafo: "Montserrat", sans-serif;
    --tamaño1: 40px;
    --tamaño2: 15px;
    --tamaño3: 18px;
    --tamaño-seccion:1440px;
  }


h1, h2, h3, h4, h5, p {
  margin: 0;
}


body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: var(--color-textos);

}

section {
  scroll-behavior: smooth;
}

.content-menu {
  z-index: 20;
  width: 100%;
}

.nav_bar {
  background-color: var(--color-primario);
  transition: background-color 0.6s ease;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.34);
  position: fixed;
}


.nav_bar .main-nav {
  padding: 0.5em 2em;
    transition: 0.4s;
}

.logo {
  text-align: left;
  width: 8%;
  transition: 0.4s;
}

.nav_bar .logo {
  width: 8%; 
  transition: 0.4s;
}

.logo img {
    max-width: 100%;
}

.main-nav {
    background-color: var(--color-primario);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2em;
    transition: 0.4s;
}

.main-menu {
     list-style: none;
     margin-top: 0;
     margin-bottom: 0;
     padding-left: 0;
     display: flex;
     align-items: center;
     justify-content: center;
}

.main-menu-item {
    padding: 5px;
  }

.main-menu-link {
    position: relative;
    color: var(--color-segundario);
    font-family: var(--Text-parrafo);
    text-decoration: none;
    padding: 1em;
    font-weight: 700;
}



  .login-seccion {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }

  .btn-login {
    background-color: var(--color-segundario);
    text-align: center;
    text-decoration: none;
    padding: 5px 15px;
    font-weight: 700;
    font-size: var(--tamaño2);
    color: var(--color-textos);
    font-family: var(--Text-parrafo);
  }

  .icon-login {
    padding: 0 10px;
  }

  .icon-user img {
    width: 30px;
    height: auto;
  }


  .menu-bar {
    display: none;
    cursor: pointer;
  }
  
  .bar1, .bar2, .bar3 {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 6px 0;
    transition: 0.4s;
  }
  
  .change .bar1 {
    transform: translate(0, 7px) rotate(-43deg);
  }
  
  .change .bar2 {opacity: 0;}
  
  .change .bar3 {
    transform: translate(0, -11px) rotate(45deg);
  }

/* Slideshow container */

.content-slider {
  overflow: hidden;
  display: flex;
  width: 100%;
  flex-direction: column;
  height: 90vh;
  position: relative;
  flex-wrap: wrap;
}

.content-Slides {
  display: none;
  height: 90vh;
}

.content_slider_one, .content_slider_two, .content_slider_three, .content_slider_four {
  height: 90vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
}

.content_slider_one  {
  background-image: url(./img/fondos1.jpeg);
}

.content_slider_two {
  background-image: url(./img/fondos2.jpeg);
}

.content_slider_three {
  background-image: url(./img/fondos4.jpeg);
}

.content_slider_four {
  background-image: url(./img/fondos2.jpeg);
}

.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 1;
  transition: .5s ease;
  background-color: #9a000069;
}

.slideshow-container {
  width: 100%;
  position: relative;
  margin: 0;
  overflow: hidden;
}

.btn-dot {
  width: 100%;
  text-align: center;
  margin-top: 0;
  position: absolute;
  padding: 10px;
  bottom: 5%;
}


/* Caption text */
.text-slider {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  color: var(--color-segundario);
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  top: 20%;
  text-align: center;
}

.text-slider img {
  width: 15%;
}

.text-slider h2 {
  width: 100%;
  font-size: 60px;
  padding: 0;
  margin: 5px;
  font-family: var(--Text-title);
  margin-bottom: 15px;
  font-weight: 500;
}

.text-slider p {
  font-size: var(--tamaño3);
  font-weight: 700;
  text-align: center;
  font-family: var(--Text-parrafo);
  width: 100%;
}

.btn-cotizar {
  margin-top: 2em;
  border: 2px solid #fff;
  text-decoration: none;
  color: #fff;
  padding: 8px 20px;
  font-weight: 700;
  font-family: var(--Text-parrafo);
}

.btn-cotizar:hover {
  background-color: #fff;
  color: #313030;
  transition: background-color 0.6s ease;
}


/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 12px;
  width: 12px;
  margin: 0 2px;
  background-color: #fff;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

/*seccion 2 */

.section-about {
  display: flex;
  justify-content: center;
  background-color: var(--color-segundario);
}

.content-about {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 5em 2em;
  max-width: var(--tamaño-seccion);
}

.box-1, .box-2 {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.box-img1 h4 {
  font-weight: 200;
  font-family: var(--Text-parrafo);
}

.content-img {
  width: 100%;
  text-align: center;
}

.content-img img {
  max-width: 80%;
}

.content-text {
  padding-right: 50px;
}

.content-text h2 {
  padding: 15px 0;
  font-size: var(--tamaño1);
  width: 50%;
  line-height: 45px;
  font-family: var(--Text-title);
  font-weight: 500;
}

.content-text p {
  padding: 8px 0;
  text-align: justify;
  font-weight: 200;
  font-family: var(--Text-parrafo);
}

  /* seccion 3 */

  .section-service {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--color-primario);
  }

  .content-service {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 5em 2em;
    max-width: var(--tamaño-seccion);
  }


.list-service {
  width: 40%;
  color: #fff;
  line-height: 30px;
}


.content-list {
  padding-left: 3em;
} 

.content-list p {
  font-weight: 300;
  font-family: var(--Text-parrafo);
}

.content-text2 {
  width: 100%;
  color: #fff;
  overflow: hidden;
  padding-bottom: 50px;
}

.content-text2 h2{
  font-size: var(--tamaño1);
  font-family: var(--Text-title);
  font-weight: 500;
}


.content-list h4 {
  font-size: 25px;
  padding-bottom: 20px;
  padding-left: 5px;
  font-family: var(--Text-title);
}

.box-icon {
  width: 60%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.box-img1 {
  color: #fff;
  width: 25.33%;
  text-align: center;
  padding: 10px;
  margin: 10px;
}

.box-img1 img {
  width: 40%;
  padding-bottom: 20px;
}

.content-register {
  width: 100%;
  text-align: end;
}

.content-register {
  position: absolute;
  right: 0;
  height: auto;
}

.btn-register {
  background-color: var(--color-primario);
  padding: 20px 10px;
  text-decoration: none;
  color: #fff;
  border: 1px solid #fff;
  font-weight: 700;
  font-family: var(--Text-parrafo);
  position: fixed;
  bottom: 40%;
  right: 0;
  writing-mode: tb;
}
    /* seccion - reportar paquetes*/

    .section-report {
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: var(--color-tercero);
    }

    .content-report {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      padding: 5em 2em;
      max-width: var(--tamaño-seccion);
    }

    .content-text3 {
      width: 100%;
      padding-bottom: 40px;
    }

    .content-text3 h2 {
      font-size: var(--tamaño1);
      font-family: var(--Text-title);
      font-weight: 500;
    }

    .content-paquete {
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
    }

    .box-text p {
      font-weight: 300;
      font-size: var(--tamaño2);
      font-family: var(--Text-parrafo);
    }

    .box-img2 {
      width: 13%;
      text-align: center;
      padding: 20px;
      height: 140px;
    }

    .box-img3 {
      padding-bottom: 15px;
    }

    .box-img2 img {
      width: 45%;
      height: auto;
    }

   /* seccion - recomendaciones */

    .section-recomendacion {
      display: flex;
      justify-content: center;
      background: var(--color-primario);
    }
    
    .content-recomendacion {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      padding: 5em 2em;
      max-width: var(--tamaño-seccion);
    }
    
    .box-1r, .box-2r {
      width: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .content-img2 {
      width: 100%;
      text-align: center;
    }
    
    .content-img2 img {
      max-width: 80%;
    }

    .content-text4 {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      padding: 20px;
      border-radius: 10px;
    }
    
    .content-text4 h2, .content-text4 p {
      width: 100%;
      color: var(--color-segundario);
    }

    .content-text4 h2 {
      font-size: 25px;
      font-family: var(--Text-title);
      margin-bottom: 5px;
    }

    .content-text4 p {
      font-size: 15px;
      font-family: var(--Text-parrafo);
      line-height: 1.8em;
      padding-top: 5px;
    }
   /* seccion - footer*/

    .section-footer {
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: var(--color-primario);
  }
  
  .content-footer {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 5em 2em 1em 2em;
    max-width: var(--tamaño-seccion);
  }

  .box-footer1, .box-redes-social {
    width: 33.33%;
  }

  .box-footer1 {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .box-footer1 a, .box-footer1 h4, .box-footer-3 p, .box-footer-2 h4 {
    font-weight: 700;
    font-size: var(--tamaño2);
    font-family: var(--Text-parrafo);
    color: #fff;
  }

  .box-footer-2 h2 {
    /* font-weight: 700;
    font-size: var(--tamaño2);
    font-family: var(--Text-parrafo);
    color: #fff;
    padding-bottom: 10px;
    text-transform: uppercase; */

    color: #ffffff;
    font-size: var(--tamaño1);
    font-family: var(--Text-title);
    font-weight: 500;

  }
  
  .box-footer-2 {
    padding-right: 20px;
    padding-bottom: 25px;
    display: flex;
    flex-direction: column;
  }
  
  .box-footer-2 h4 {
    text-transform: uppercase;
  }

  .box-footer-3 h4 {
    text-transform: uppercase;
  }
  
  .box-footer-2 a {
    text-decoration: none;
    line-height: 25px;
    font-size: 16px;
  }
  
  
  .box-footer-3 a {
    padding-top: 2.5em;
    text-decoration: none;
  }
  
  
  .box-footer-3 {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-bottom: 20px;
  }


  .box-redes-social {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }
  
  
  .social-link {
    width: 25px;
    height: auto;
    margin: 0 10px;
    margin-top: 3em;
  }

  .social-link img {
    max-width: 100%;
  }
  
  .box-redes-social p {
    width: 100%;
    text-align: end;
    padding-top: 11em;
    font-size: 13px;
    font-family: var(--Text-parrafo);
    color: #fff;
  }

  .btn-wsp {
    position: fixed;
    width: 60px;
    height: 60px;
    line-height: 63px;
    bottom: 25px;
    right: 25px;
    background: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 0px 1px 10px rgba(0,0,0,0.3);
    z-index: 100;
    transition: all 300ms ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .btn-wsp img {
    width: 30px;
    height: 30px;
    text-align: center;
  }

.btn-wsp:hover{
    background: #20ba5a;
}

@media only screen and (min-width:320px) and (max-width:768px){
    .btn-wsp{
        width:63px;
        height:63px;
        line-height: 66px;
	}
}

@media only screen and (max-width: 3000px) and (min-width: 1023px){

  /* linea del menu */

  .main-menu-link:after {
    content: '';
    position: absolute;
    left: 0;
    top: 45px;
    height: 1px;
    width: 0;
    background-color: var(--color-segundario);
    transition: width 0.3s ease;
  }
  
  .main-menu-link:hover::after {
    width: 100%;
  }

  .nav_bar  .main-menu-link:after {
    background-color: var(--color-segundario);
  }


}
  


@media screen and (max-width: 1024px) {

  .main-nav {
    padding: 1em;
  }

  .logo {
    width: 15%;
  }

  .nav_bar .logo {
    width: 12%; 
    transition: 0.4s;
  }

   .menu-bar {
    display: inline-block;
  }

  .main-menu {
    flex-direction: column;
    align-items: baseline;
    justify-content: flex-start;
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 12%;
    right: 0;
    background-color: #111;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 20px;
  }

  .nav_bar .main-menu {
    top: 10%;
}

  .main-menu.open {
    width: 220px;
  }

  .main-menu .main-menu-item {
    opacity: 0;
    transition: width 0.3s ease;
  }

  .main-menu.open .main-menu-item {
    opacity: 1;
    transition: width 0.3s ease;
  }

  .main-menu-item {
    width: 100%;
  }

  .main-menu-link {
    padding: 0.8em;
    width: 100%;
    display: block;
  }

  .main-menu-link::after{
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--color-primario);
	  pointer-events: none;
    transition: right 0.3s ease;
    z-index: -2;
}

.main-menu-link:hover::after{
    right: 0;
}


  .btn-login {
    display: none;
  }

  .login-seccion {
    position: absolute;
    right: 10%;
  }

  .icon-login {
    display: flex;
    align-items: center;
  }
  
  .icon-user {
    display: flex;
    align-items: center;
  }

   /* seccion - slider */

  .content-slider {
    height: 480px;
  }
  
  .content-Slides {
    height: 480px;
  }
  
  .content_slider {
    height: 480px;
  }

  .text-slider {
    top: 15%;
  }


  .text-slider img {
    width: 20%;
  }

  .text-slider h2 {

    font-size: 40px;
  }

  .text-slider p {
    font-size: 15px;
  }

    /* seccion - quienes somos*/

  .content-about {
    flex-direction: column;
  }

  .content-about {
    flex-direction: column;
    padding: 3em 2em;
  }
  
  .box-1, .box-2 {
   width: 100%;
  }

  .content-text {
    padding: 0 0 20px 0;
  }

  .content-text h2 {
    text-align: center;
    width: 100%;
  }

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

  .content-img img {
    max-width: 60%;
  }

  .btn-register {
    font-size: 15px;
  }

    /* seccion - servicios*/

  .content-service {
    padding: 3em 2em;
  }

  .content-text2 {
    text-align: center;
    padding-bottom: 2em;
  }

  .content-list h4 {
    padding-left: 0;
  }

  .list-service {
    width: 100%;
    text-align: left;
    padding-bottom: 40px;
  }
  
  .content-list {
    padding-left: 0;
  }
  
  .box-icon {
    width: 100%;
  }

  .content-register {
    padding: 3em 0 0 0;
    text-align: center;
  }

 /* seccion - paquete*/

 .content-text3 {
  text-align: center;
}
  
.box-img2 {
    width: 25%;
    margin: 20px;
  }

  .content-report {
    padding: 3em 2em;
  }

  .content-recomendacion {
    padding: 3em 2em;
  }


  .content-text4 {
    margin-bottom: 20px;
  }

  .box-1r, .box-2r {
    width: 100%;
  }

  .content-img2 img {
    max-width: 100%;
  }
  
  

   /*Footer*/

  .box-redes-social p {
    text-align: center;
    padding-top: 2em;
  }

  .box-footer1 {
    width: 50%;
  }
  
  .box-redes-social {
    width: 100%;
  }
  
  .social-link {
   margin-top: 1em;
  }
  
  .box-redes-social p {
      padding-top: 1em;
  }

}

@media screen and (max-width: 750px) {}

@media screen and (max-width: 450px) {

  .login-seccion {
    right: 15%;
  }

  .nav_bar .main-nav {
    padding: 0.5em 1em;
  }


  .logo {
    width: 30%;
  }

  .nav_bar .logo {
    width: 25%; 
  }


  .text-slider {
    top: 10%;
  }

  .text-slider img {
    width: 35%;
  }

  .text-slider h2 {
    font-size: 35px;
  }

  .content-list h4 {
    padding-left: 0;
  }

  .content-img img {
    max-width: 100%;
  }

  .box-img1 {
    width: 33.33%;
  }

  .box-img3 {
    padding-bottom: 8px;
  }
  
  .box-img1 img {
    width: 60%;
  }

  .box-img2 {
    width: 50%;
    height: auto;
    margin: 5px;
  }
  
  .box-img2 img {
  width: 50%;
}

  .box-footer1 {
    width: 100%;
  }

  .box-footer-3 a {
    padding-top: 1em;
    text-align: center;
  }
  

}