/* ========================================
   CONTÁCTENOS - Estilo casaeditora
   ======================================== */
.contactenos {
  background: white;
  padding: 80px 0;
}

.contactenos-heading {
  text-align: center;
  margin-bottom: 40px;
}

.contactenos-heading .section-title {
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 10px;
}

.contactenos-subtitulo {
  font-size: 1.2rem;
  color: #6c757d;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.contactenos-intro {
  font-size: 1rem;
  color: #6c757d;
  margin-bottom: 15px;
  font-weight: 500;
}

.contactenos-intro p {
  margin: 0 0 10px;
}

.contactenos-datos {
  display: flex;
  flex-direction: column;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid #e9ecef;
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-icon {
  width: 45px;
  height: 45px;
  min-width: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0070b4;
  color: #fff;
  border-radius: 50%;
  flex-shrink: 0;
  font-size: 16px;
}

.contact-text h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #1a1a2e;
}

.contact-text p {
  font-size: 13px;
  color: #6c757d;
  margin-bottom: 4px;
  line-height: 1.6;
}

.contact-text a {
  color: #0070b4;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-text a:hover {
  color: #005a8e;
}

.contactenos-form {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

@media (max-width: 991px) {
  .contactenos {
    padding: 60px 0;
  }

  .contactenos-form {
    padding: 25px;
    margin-top: 30px;
  }

}

@media (max-width: 576px) {
  .contactenos {
    padding: 40px 0;
  }

  .contact-item {
    gap: 15px;
    padding: 15px 0;
  }

  .contact-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 14px;
  }

  .contactenos-form {
    padding: 20px;
  }
}
