.contacto-hero {
  background-image: url('/static/img/contacto-hero.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
}

.contacto-hero-overlay {
  background: linear-gradient(rgba(8,14,6,0.6), rgba(8,14,6,0.6));
  padding: 20em 0 7em;
  text-align: center;
  color: var(--color-white);
}

.contacto-hero-overlay h1 {
  color: var(--color-white);
  margin-top: -2em;
  margin-bottom: 15px;
}

.contacto-hero-overlay p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}

.contacto-form-section {
  padding: 4em 0;
}

.contacto-form-box {
  max-width: 800px;
  margin: 0 auto;
  background: var(--color-white);
  border-radius: 30px;
  box-shadow: 0 0 60px rgba(0,0,0,0.1);
  padding: 3em;
}

.contacto-form-box h2 {
  margin-bottom: 30px;
}

.form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.form-field {
  flex: 1 1 250px;
  margin-bottom: 25px;
}

.form-field label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 500;
  margin-bottom: 8px;
}

.required {
  color: var(--color-green-darker);
  font-weight: 400;
  font-size: 13px;
}

.form-help {
  font-size: 14px;
  color: var(--color-gray-text);
  margin-bottom: 10px;
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--color-light-border);
  border-radius: 10px;
  font-family: var(--font-text);
  font-size: 15px;
  background-color: var(--color-bg-soft);
}

.form-field textarea {
  resize: vertical;
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 10px;
  font-family: var(--font-text);
  font-weight: 400;
}

.form-checkbox input {
  width: auto;
}

.contacto-opciones {
  background-color: var(--color-bg-soft);
  padding: 4em 0;
}

.opciones-titulo {
  text-align: center;
  margin-bottom: 40px;
}

.opciones-titulo h6 {
  margin-bottom: 10px;
}

.opciones-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  text-align: center;
}

.opcion-item {
  flex: 1 1 200px;
  max-width: 280px;
  padding: 0 20px;
}

.opcion-item:not(:last-child) {
  border-right: 1px solid var(--color-light-border);
}

.opcion-icono {
  width: 70px;
  height: 70px;
  background-color: var(--color-teal-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 15px;
}

.opcion-item h5 {
  margin-bottom: 8px;
}

.opcion-item p {
  font-size: 15px;
  color: var(--color-dark);
}

.contacto-mapa {
  line-height: 0;
}

.contacto-mapa iframe {
  width: 100%;
  height: 450px;
  border: none;
  display: block;
}

@media (max-width: 767px) {
  .contacto-form-box {
    padding: 2em 1.5em;
  }
}

.contacto-mensaje {
  padding: 15px 20px;
  border-radius: 10px;
  margin-bottom: 25px;
  font-size: 15px;
}

.contacto-mensaje-exito {
  background-color: #E8F5E9;
  color: #2E7D32;
  border: 1px solid #A5D6A7;
}

.contacto-mensaje-error {
  background-color: #FDECEA;
  color: #C62828;
  border: 1px solid #F5A9A2;
}
