.main-nosotros {
  background-color: #f0f0f0;
}
/*----------NOSOTROS----------*/
/*------------------------------*/
.nosotros-container {
  display: flex;
  width: 100%;
  min-height: 400px;
}

.nosotros-img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 55%;
  height: auto;
  overflow: hidden;
}

.nosotros-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nosotros-info {
  padding: 40px;
  width: 45%;
  height: auto;
  background-color: #ffffff;
}

.nosotros-title {
  font-size: 40px;
  font-weight: 600;
  color: #333;
  margin-bottom: 40px;
  line-height: 1.3;
  border-bottom: 1.5px solid #E8AE30;
  padding-bottom: 20px;
  width: 50%;
}

.nosotros-description {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

/*----------COLUMNAS (VISIÓN-MISIÓN-VALORES)----------*/
/*------------------------------*/
.container-column {
  display: flex;
  justify-content: center;
  text-align: center;
  gap: 80px;
  padding: 60px 40px;
  width: 100%;
}

.column {
  background: #ffffff;
  padding: 20px;
  width: 300px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s;
}

.column:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.column-img {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #E8AE30;
  width: 120px;
  height: 120px;
  border-radius: 50%;
}

.column-img img{
  color: white;
  width: 50px;
  height: 50px;
}

.column-title {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
  padding-bottom: 20px;
  border-bottom: 1.5px solid #E8AE30;
}

.column-description {
  margin-top: 20px;
  text-align: left;
  font-size: 16px;
  color: #666;
  line-height: 1.4;
}

ul.column-description {
  padding-left: 20px;
}

/*----------SERVICIOS----------*/
/*------------------------------*/
.container-services{
  display: flex;
  flex-direction: column;
  padding: 40px;
  width: 100%;
  background: #ffffff;
}

.container-column-service{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap:50px;
}

.services-title {
  display: flex;
  justify-content: center;
  font-size: 30px;
  font-weight: 600;
  color: #333;
  margin-bottom: 40px;
}

.column-service {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 120px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  border: 1px solid #E8AE30;
}

.column-service-img{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.column-service-img img{
  width: 80px;
  height: 80px;
}

.column-service h4{
  font-size: 20px;
  font-weight: 600;
  color: #333;
}

/*----------UBICACIÓN----------*/
/*------------------------------*/
.container-location{
  background: #f0f0f0;
  padding: 40px;
  width: 100%;
}

.container-location h4{
  display: flex;
  justify-content: center;
  font-size: 30px;
  font-weight: 600;
  color: #333;
}

.container-location .location-description {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  font-size: 20px;
  font-weight: 400;
  color: #333;
}

.container-location .map {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

/*----------RESEÑAS----------*/
/*------------------------------*/
.container-reviews {
  padding: 40px;
  width: 100%;
  background: #f0f0f0;
}

.container-reviews h4 {
  display: flex;
  justify-content: center;
  font-size: 30px;
  font-weight: 600;
  color: #333;
  margin-bottom: 40px;
}


/* Banner de advertencia - Inline en la sección */
#warningBanner {
  display: none;
  background: #fff3cd; 
  border-radius: 8px;
  /*padding: 20px 30px;*/
  margin: 40px auto 0;
  max-width: 800px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}


.warning-header{
  display: flex;          
  align-items: center;     
  justify-content: center;
  width: 100%;
  background: #E8AE30;
  border-radius: 8px;
  height: 100px;
  padding: 20px;
  gap: 30px;
}

.warning-image{
  display: flex;
  justify-content: center;
}

.warning-header img{
  width: 50px;
  height: 50px;
}

.warning-header h3{
  display: flex;
  justify-content: center;
  font-size: 20px;
  color: #ffffff;
}

.warning-subheader{
  width: 100%;
  color: #666;
  border-bottom: 1px solid #E8AE30;
  padding: 20px 40px;
  text-align: center;
  font-size: 16px;
}

.warning-subheader strong, .warning-instructions strong{
  color: #0A70B8;
}

.warning-instructions{
  padding: 20px 40px;
}

.warning-instructions h4{
  font-size: 16px;
}

.warning-instructions ol{
  display: grid;
  padding-top: 20px;
  color: #666;
  font-size: 16px;
  gap: 15px;
}

@media (max-width: 768px) {
      /*----------NOSOTROS----------*/
      /*------------------------------*/
      .nosotros-container {
        flex-direction: column;
        height: auto;
      }

      .nosotros-img {
        width: 100%;
        height: 300px;
      }

      .nosotros-info {
        width: 100%;
        height: auto;
        padding: 40px 20px;
      }

      .nosotros-title {
        font-size: 32px;
        width: 50%;
      }

      /*----------COLUMNAS (MISIÓN-VISIÓN-VALORES)----------*/
      /*------------------------------*/
      .container-column {
        flex-direction: column;
        gap: 20px;
        padding: 40px 20px;
        align-items: center;
      }

      .column {
        width: 100%;
        max-width: 400px;
      }

      .column-img{
        width: 100px;
        height: 100px;
      }

      .column-title{
        font-size: 18px;
        font-weight: 500;
        color: #333;
      }

      /*----------SERVICIOS----------*/
      /*------------------------------*/
      .container-column-service{
        grid-template-columns: repeat(2, 1fr);
        gap:30px;
      }

      .column-service {
        height: 100px;
      }

      .services-title{
        font-size: 28px;
      }

      .column-service h4{
        font-size: 18px;
        font-weight: 500;
        color: #333;
      }

    /*----------UBICACIÓN----------*/
    /*------------------------------*/
    .container-location h4{
      font-size: 28px;
    }

    .container-location .location-description{
      font-size: 18px;
      font-weight: 400;
    }

    /*----------RESEÑAS----------*/
    /*------------------------------*/
    .container-reviews h4 {
      font-size: 28px;
    }

    .warning-header{
      height: 80px;
    }

    .warning-header img{
      width: 45px;
      height: 45px;
    }

    .warning-header h3{
      font-size: 20px;
    }

    .warning-subheader{
      font-size: 15px;
    }

    .warning-instructions h4{
      font-size: 16px;
    }

    .warning-instructions ol{
      font-size: 15px;
    }
  }

@media (max-width: 480px) {
      /*----------NOSOTROS----------*/
      /*------------------------------*/

      .nosotros-info {
        width: 100%;
        height: auto;
        padding: 40px 20px;
      }

      .nosotros-title {
        font-size: 30px;
        width: 50%;
      }

      /*----------SERVICIOS----------*/
      /*------------------------------*/
      .column-service {
        height: 80px;
      }

      .services-title{
        font-size: 26px;
      }

      .column-service h4{
        font-size: 14px;
        font-weight: 500;
        color: #333;
      }

    /*----------UBICACIÓN----------*/
    /*------------------------------*/
    .container-location h4{
      font-size: 26px;
    }

    .container-location .location-description{
      font-size: 16px;
      font-weight: 400;
    }

    /*----------RESEÑAS----------*/
    /*------------------------------*/
    .container-reviews h4 {
      font-size: 28px;
    }

    .warning-header{
      height: 70px;
    }

    .warning-header img{
      width: 40px;
      height: 40px;
    }

    .warning-header h3{
      font-size: 18px;
    }

    .warning-subheader{
      font-size: 14px;
    }

    .warning-instructions h4{
      font-size: 15px;
    }

    .warning-instructions ol{
      font-size: 14px;
    }
}




