/*----------CONTACTO----------*/
/*------------------------------*/
.main-contacto{
  background: #f0f0f0;
  display: grid;
  justify-content: center;
}

.container-cards{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  gap: 80px;
  padding: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-card {
    display: flex;
    width: 100%;
    height: 120px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.icon-section {
    flex: 0 0 120px;
    background: #fff;
    border-right: 1.5px solid #E8AE30;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}
.icon{
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon i{
  color: #E8AE30;
  font-size: 30px;

}

.info-section {
    flex: 1;
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-section h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

.info-section p {
    font-size: 15px;
    color: #666;
    font-weight: 400;
}

/*----------UBICACIÓN----------*/
/*------------------------------*/
.container-location{
  padding: 40px 0px;
  width: 100%;
}

.container-location .map{
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 0 20px;
}

.container-location .map iframe{
  width: 100%;
  max-width: 1200px;
  height: 450px;
  border: 0;
}

@media (max-width: 768px) {
  /*----------CONTACTO----------*/
/*------------------------------*/
  .container-cards{
    grid-template-columns: 1fr;
    justify-content: center;
    max-width: 500px;
    gap: 50px;
    padding: 40px 20px;
  }

  .contact-card {
    height: 100px;
}

.icon-section {
    flex: 0 0 100px;
}


.icon {
    width: 60px;
    height: 60px;
}


.info-section h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

.info-section p {
    font-size: 15px;
    color: #666;
    font-weight: 400;
}

  /*----------UBICACIÓN----------*/
/*------------------------------*/
  .container-location{
    padding: 40px;
  }

  .container-location .map iframe{
    height: 350px;
  }
}


@media (max-width: 480px) {
  /*----------CONTACTO----------*/
/*------------------------------*/
  .container-cards{
    grid-template-columns: 1fr;
    justify-content: center;
    max-width: 100%;
    gap: 50px;
    padding: 40px 20px;
  }

  .contact-card {
    height: 100px;
}

.icon-section {
    flex: 0 0 100px;
}


.icon {
    width: 60px;
    height: 60px;
}


.info-section h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

.info-section p {
    font-size: 15px;
    color: #666;
    font-weight: 400;
}

  /*----------UBICACIÓN----------*/
/*------------------------------*/
  .container-location{
    padding: 40px;
  }

  .container-location .map{
    padding: 0;
  }
  .container-location .map iframe{
    height: 300px;
  }
}