/*===========================
     0. Especial - color y letra
===========================*/

:root {
    --color-letra: #0F1111;
    --letra: "nova";
    --color-main : #FFA41C;
    --color-fondo-1: #ffffff;
    --color-fondo-2: #f9f8f8;
    --recuadro-color: #476481;
  }

 /*===========================
     0. HERO
===========================*/
.hero {
    position: relative;
    width: 100%;
    height: 600px;
    background-image: url(../images/caba.jpg);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: flex-end;
  }
  
  
  .hero-content {
    text-align: center;
    color: #ffffff;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 90px;
  }
  
  .hero-content h1 {
    font-size: 130px;
  }

  .hero-text a{
    display: flex;
    align-items: center;
    text-decoration: none;
  }
  
  .hero-content p {
    font-size: 18px;
    color: #fff;
  }

  .hero-icon-link{
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 5px;
    padding-bottom: 5px;
    background-color: #22282f;
    border-radius: 30px;
  }

  .hero-icon-link img{
    width: 20px;
    margin-left: 10px;
  }

  @media screen and (max-width: 768px) {
  
    .hero{
height: 300px;
    }

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

    .hero-content h1 {
        font-size: 60px;
      }

    .hero-content p {
        font-size: 18px;
    }

}

   /*===========================
     0.1. List
===========================*/
  
  .features {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--color-fondo-2);
    gap: 10%;
    padding: 10px;
  }
  
  .item {
    text-align: center;
    margin: 10px;
  }
  
  .item img {
    width: 40px;
  }
  
  .item p {
    margin-top: 15px;
    font-size: 20px;
  }

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

    .features{
        gap: 5%;
    }

    .item img {
        width: 30px;
      }

     .item p {
        font-size: 15px;
     }
 
    }



 /*===========================
     1. Top
===========================*/

.top-section {
    text-align: center;
    padding-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
  }
  

  .images-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
    gap: 7px;
    max-width: 1200px;
    
  } 
  
  .horizontal-image {
    width: 33.33%;
    height: 300px;
    object-fit: cover;
    border-radius: 7px;
  }
  
  .vertical-image {
    width: 28.33%;
    height: 400px;
    object-fit: cover;
    border-radius: 7px;
  }

  .top-section h1{
    font-size: 50px;
    margin-top: 45px;
  }

  .top-section p{
    font-size: 20px;
    margin-top: 30px;
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    width: 70%;
    line-height: 40px;
  }

  .movil-picture-hero{
    display: none;
  }

  


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

    .top-section{
        padding-top: 0px;
    }

    .top-section p{
        padding: 15px;
        font-size: 14px;
        width: 90%;
    }

    .images-container{
        display: none;
        width: 0px;
        height: 0px;
    }

    .movil-picture-hero{
        display: block;
        width: 100%;
        height: 250px;
        object-fit: cover;
      }

      .top-section h1{
        font-size: 40px;
        margin-top: 25px;
      }


  }


  /*===========================
     2. Incluido
===========================*/

#incluido {
    background-color: var(--color-fondo-2);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 50px;
    }
  
  
    .incluido-grill {
      display: grid;
      grid-template-columns: 1fr;
      grid-gap: 10px;
      width: 90%;
      margin-top: 30px;
      margin-bottom: 30px;
      max-width: 1200px;
      justify-items: center;
    }
    
    @media (min-width: 768px) {
      .incluido-grill {
        grid-template-columns: 1fr 1fr;
      }
    }
    
    @media (min-width: 1200px) {
      .incluido-grill {
        grid-template-columns: 1fr 1fr 1fr;
      }
    }
    
  
  
    .recuadro {
      display: flex;
      align-items: center;
      background-color: var(--color-fondo-1);
      padding: 20px;
      border-radius: 12px;
      box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
      width: 100%;
      max-width: 400px;
      height: 120px;
      justify-content: space-between;
    }
    
    .contenido-izq {
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 20%;
    }
  
    .contenido-izq img {
      width: 50px;
      height: auto;
      margin-bottom: 10px;
    }
  
    .contenido-der {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      width: 75%;
      height: 100%;
      justify-content: space-around;
    }
  
    .grid-responsive{
      display: flex;
      align-items: center;
      gap: 15px
    }
  
    .grid-responsive img{
      display: none;
    }
    
    .contenido-der h3 {
      font-size: 18px;
      font-weight: 400;
    }
    
    .contenido-der p {
      margin: 0;
    }
  
    @media screen and (max-width: 768px) {
   
      #incluido {
          padding: 15px;
      }
  
      #incluido h2{
          text-align: center;
      }
  
      .incluido-grill{
          grid-template-columns: 1fr;
      }
  
      .recuadro{
          width: 100%;
      }
  
      .contenido-izq{
          width: 20%;
          padding-right: 10px;
      }
  
      .contenido-der{
          width: 100%;
      }
  
      .grid-responsive img{
        display: none;
          width: 35px;
          height: auto;
        }
  
    }

/*===========================
     3. Acommodation
===========================*/

.accomodation {
    padding: 20px;
    background-color: var(--color-fondo-1);
  }
  
  .accomodation h2 {
    font-size: 24px;
    margin-bottom: 10px;
    text-align: center;
  }
  
  .accomodation h3 {
    font-size: 18px;
    margin-bottom: 20px;
    text-align: center;
  }
  
  .part {
    display: flex;
    margin-bottom: 30px;
  }
  
  .part img {
    width: 45%;
    margin-right: 20px;
  }

  .imagen-2{
    width: 45%;
    display: flex;
    justify-content: center;
  }

  .imagen-2 .part-2-img{
    width: 300px;
    height: auto;
  }


  
  .part .content {
    flex: 1;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
  
  .part h4 {
    font-size: 25px;
    margin-bottom: 10px;
    width: 80%;

  }
  
  .part p {
    margin-bottom: 20px;
    width: 80%;
    font-size: 15px;
    line-height: 30px;
    margin-top: 40px;
  }
  
  .part .icons {
    display: flex;
    justify-content: space-between;
  }
  
  .part .icons img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
  }
  
  .part button {
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    cursor: pointer;
  }
  
  /* Estilos adicionales para hacer el diseño más atractivo */
  .accomodation {
    margin: 0 auto;
    font-family: Arial, sans-serif;
  }
  
  .part:nth-child(even) {
    flex-direction: row-reverse;
  }
  
  .part img,
  .part .content {
    align-self: center;
  }
.cowork-logo {
    display: flex;
    gap: 40px;
    justify-content: center;
}


.part .cowork-logo .img-1-cowork{
 width: 90px;
}

.part .cowork-logo .img-2-cowork{
 width: 40px;
}

  
.part .btn-nav{
    width: 60%;
    margin-top: 50px;
    margin-right: 0px ;
}


  

  @media screen and (max-width: 768px) {
.part{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.part img{
    width: 90%;
    margin-right: 0px;
}
.part:nth-child(even) {
    flex-direction: column;
  }

  .imagen-2 .part-2-img{
    width: auto;
  }

  .part h4 {
    margin-top: 30px;
    font-size: 26px;
  }

  .part p {
    width: 90%;
  }

  }

/*===========================
     4. Price
===========================*/


.mis-ciudades {
    text-align: center;
    background-color: var(--color-fondo-2);
    padding-top: 60px;
    padding-bottom: 60px;
  }
  
  .mis-ciudades h1 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 20px;
    margin-bottom: 50px;
    color: var(--color-letra);
  }


  .mis-ciudades h2{
    font-size: 15px;
    font-weight: 300;
    margin-bottom: 15px;
}

  
  .grid-container {
    display: flex;
    grid-template-columns: repeat(3, 2fr);
    justify-items: center;
    justify-content: center;
    align-items: end;
  }
  
  .grid-item {
    width: 26%;
    height: 360px;
    margin: 15px;
    background-color: var(--color-fondo-2);
    border-radius: 8px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
  }

  .grid-item:hover {
    transform: scale(1.01);
    transform-origin: bottom;
    transition: transform 0.5s ease;
  }

  
  .grid-item img {
    width: 100%;
    height: 50%;
    object-fit: cover;
    margin-bottom: 10px;
  }
  
  .grid-item h4 {
    font-size: 34px;
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: 5px;
  }

  .price{
    background-color: var(--color-main);
    width: 120px;
    padding: 8px;
    border-radius: 5px;
  }

  .price-2{
    background-color: var(--color-main);
    width: 150px;
    padding: 8px;
    border-radius: 5px;
  }

  .grid-item .price h5 {
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 0px;
    color: var(--color-letra);
  }

  .grid-item .price-2 h5 {
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 0px;
    color: var(--color-letra);
  }
  
  
  .grid-item p {
    font-size: 16px;
    margin-bottom: 20px;
    margin-top: 15px;
    text-align: center;
    font-weight: 300;
    padding-left: 15px;
    padding-right: 15px;
  }
  


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

    .mis-ciudades{
      padding-top: 30px;
      padding-bottom: 20px;
      padding-left: 15px;
      padding-right: 15px;
    }

    .mis-ciudades h1{
      font-size: 35px;
      margin-bottom: 20px;
    }

    .grid-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        grid-gap: 0px;
      }

      .grid-item {
        width: 80%;
        height: 300px;
      }

      .grid-item h4 {
        font-size: 20px;
      }

      .mis-ciudades h2{
        font-size: 12px;
        color: var(--color-letra);
        font-weight: 300;
    }

  }
/*===========================
     5. Contact
===========================*/

.contact {
    text-align: center;
    padding-top: 30px;
    margin-bottom: 20px;
  }
  
.contact h2{
    font-size: 52px;
    margin-top: 15px;
    margin-bottom: 40px;
    color:var(--color-letra)
    }
    
.contact h3 {
        font-size: 15px;
        font-weight: 300;
        text-align: center;
    }

.contacto {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .izquierda {
    width: 50%;
    float: left;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 75px;
  }
  
  .imagenes {
    position: relative;
    text-align: center;
  }
  

  .agendar {
    position: relative;
    height: auto;    
    background-color: var(--recuadro-color);
    opacity: 1;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    padding: 40px;
    border-radius: 14px;
    width: 80%;
    margin: 30px;
    margin-top: -25px;
  }
  
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
  }
  
  .content {
    text-align: center;
    z-index: 1;
    color: #fff;
  }
  
  h1 {
    margin-top: 30px;
    margin-bottom: 10px;
    font-size: 34px;
    margin-top: 0;
    color:#fff
  }
  


  .team {
    position: relative;
    z-index: 4;
    width: 50%;
    border-radius: 15px;
  }
  
  
  .derecha {
    width: 50%;
    float: left;
  }
  

.cont-contacto{
  background-color: var(--recuadro-color);
  opacity: 1;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    padding: 40px;
    border-radius: 14px;
    width: 80%;
    margin: 30px;
}

  .cont-contacto h2 {
    font-size: 24px;
    margin-top: 0;
    color: #fff;
  }
  
   form{
    margin-top: 20px;
  }
  
  label {
    display: block;
    margin-bottom: 5px;
    margin-top: 5px;
    width: 100%;
    text-align: left;
    color:#fff
  }
  
  input, textarea {
    display: block;
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  select {
    appearance: none;
    background: url('../images/iconos/down-arrow-5.svg') no-repeat;
    background-position: right 10px center;
    background-size: 20px 20px;
    padding-right: 40px;
    background-color: #fff;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
    height: 45px;
    padding: 5px;

}

  

  @media screen and (max-width: 768px) {
    .contacto {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        flex-direction: column;
        align-items: center;
      }


      .contact {
        text-align: center;
        padding-top: 10px;
        margin-bottom: 5px;
      }

    .imagenes{
        width: 95%;
    }

    .izquierda{
        width: 100%;
        display: flex;
        justify-content: center;
        margin-bottom: 0px;
        padding-top: 5px;
    }


    .agendar{
      width: 90%;
    }
    
    h1{
      font-size: 25px;
    }

    .content .btn-hero{
      width: 70%;
    }
    
      .team {
        position: relative;
        z-index: 2;
        margin-top: 0px;
        width: 50%;
        border-radius: 15px;
      }

      .derecha{
        width: 90%;
        margin-top: 0px;
      }

      .cont-contacto{
        width: 100%;
        margin: 0px;

      }

      .contact h3 {
        font-size: 12px;
        font-weight: 300;
    }

  }


/*===========================
     3. FAQs
===========================*/
.sec-faqs{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--color-fondo-2);
    padding: 30px;
}

.sec-faqs h2{
    margin-bottom: 20px;
}

.faq {
    padding: 20px;
    margin-bottom: 20px;
    width: 60%;
    border-radius: 12px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    border-radius: 12px;
  }
  
  .question {
    cursor: pointer;
    display: flex;
    align-items: center;
  }
  
  .arrow {
    margin-right: 10px;
    transition: transform 0.3s ease;
  }
  
  .arrow.rotate {
    transform: rotate(90deg);
  }

  .faq h4{
    font-size: 20px;
  }

  .faq p{
    font-size: 14px;
    margin-top: 5px;
  }
  
  .answer {
    display: none;
    padding: 10px 0;
  }
  
  .answer.show {
    display: block;
  }
  
  @media screen and (max-width: 768px) {

    .faq {
        width: 100%;
    }

    .faq h4{
        font-size: 18px;
        font-weight: bold;
    }

  }

/*===========================
     7. Lista
===========================*/