@import url("global.css");

.banner {
    position: relative;
    width: 100%;
    height: 435px;
    background: url("../img/contacto.jpg") no-repeat center center/cover; /* Reemplaza con tu imagen */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.banner::after {
      content: "";
      position: absolute;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.5); /* Oscurece la imagen para resaltar el texto */
    }


.contact-section {
  background: #f7f9fa;
  padding: 60px 20px;
  font-family: Arial, sans-serif;
}

.contact-header {
  text-align: center;
  margin-bottom: 40px;
}

.contact-header h2 {
  font-size: 28px;
  color: #21A59A;
  margin-bottom: 10px;
}

.contact-header p {
  color: #555;
  font-size: 16px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.contact-card, .contact-form {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.contact-card h3, .contact-form h3 {
  margin-bottom: 15px;
  color: #21A59A;
  font-size: 20px;
}

.contact-card p {
  font-size: 14px;
  color: #444;
  margin: 6px 0;
}

.contact-form form input,
.contact-form form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
}

.btn-enviar {
  width: 100%;
  padding: 14px;
  background: #21A59A;
  border: none;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-enviar:hover {
  background: #1c8e84;
}

