/* =========================
   SECCIÓN CONTACTO
========================= */
.contacto main {
  background-color: #00A38D;
}

.seccion-contacto {
  background-color: #00A38D; /* Color de fondo general */
  padding: 60px 20px;
}

.contacto-contenedor {
  max-width: 900px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.seccion-contacto h1 {
  font-size: 3rem;
  color: #1DA28D;
  text-align: center;
  margin-bottom: 4px; 
  line-height: 1.1;  
}

.subtitulo-contacto {
  color: #1DA28D;
  text-align: center;
  margin-top: 0;      
  margin-bottom: 20px; 
  font-size: 1.2rem;
  line-height: 1.3;   
}

/* =========================
   FORMULARIO
========================= */
form[name="form1"] {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.campo-form {
  display: flex;
  flex-direction: column;
}

.campo-form label {
  font-weight: 500;
  margin-bottom: 6px;
  color: #1DA28D;
}

.campo-form input,
.campo-form textarea {
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  resize: none;
  transition: border-color 0.3s ease;
}

.campo-form input:focus,
.campo-form textarea:focus {
  outline: none;
  border-color: #1DA28D;
}

.boton-enviar {
  display: inline-block;
  background-color: #1DA28D;
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 12px 30px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.boton-enviar:hover {
  background-color: #14836c;
  transform: translateY(-2px);
}

/* =========================
   RECAPTCHA
========================= */
.g-recaptcha {
  margin: 10px 0;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .contacto-contenedor {
    padding: 30px 20px;
  }

  .seccion-contacto h1 {
    font-size: 2rem;
  }

  .subtitulo-contacto {
    font-size: 1rem;
  }
}

@media (max-width: 900px) {
  .hero .logo { width: 100px !important; height: auto !important; }
  .hero .titulo-container h1 { font-size: 2rem !important; }
  .hero .titulo-container p { font-size: 1rem !important; }
}
.hero-banner {
  height: 60vh; 
  min-height: 260px; 
  background-image: url('../images/pag4.png');
  background-size: cover;
  background-position: left center; 
  background-repeat: no-repeat;
}