/*========================

        CONTACTO

=========================*/

.contact {
  background: #fff;
}

.contact-form {
  background: #fff;

  padding: 40px;

  border-radius: 20px;

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.form-control,
.form-select {
  padding: 15px;

  border-radius: 12px;

  border: 1px solid #ddd;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary);

  box-shadow: none;
}

textarea {
  resize: none;
}

.btn-send {
  width: 100%;

  background: var(--primary);

  color: #fff;

  border: none;

  padding: 16px;

  border-radius: 40px;

  font-weight: 600;

  transition: 0.3s;
}

.btn-send:hover {
  background: var(--secondary);
}

.contact-info {
  background: linear-gradient(135deg, var(--primary), var(--secondary));

  color: #fff;

  border-radius: 20px;

  padding: 40px;

  height: 100%;
}

.contact-info h3 {
  margin-bottom: 35px;

  font-weight: 700;
}

.info-item {
  display: flex;

  gap: 20px;

  margin-bottom: 30px;
}

.info-item i {
  width: 55px;

  height: 55px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.15);

  display: flex;

  justify-content: center;

  align-items: center;

  font-size: 20px;
}

.info-item p {
  margin: 0;

  opacity: 0.9;
}

.social-contact {
  margin-top: 35px;
}

.social-contact a {
  width: 50px;

  height: 50px;

  border-radius: 50%;

  display: inline-flex;

  justify-content: center;

  align-items: center;

  background: rgba(255, 255, 255, 0.15);

  color: #fff;

  margin-right: 10px;

  transition: 0.3s;
}

.social-contact a:hover {
  background: #fff;

  color: var(--primary);
}

.map {
  margin-top: 20px;

  border-radius: 20px;

  overflow: hidden;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.map iframe {
  width: 100%;

  height: 420px;

  border: 0;
}

