/* Pagina Contacto */

/*-- Sección Hero --*/
.hero-contacto {
  background: url('imagenes/IMG-20250603-WA0025.jpg') center/cover no-repeat;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 20px;
}
.hero-contacto .hero-text {
  background: #293021d4;
  padding: 30px;
  border-radius: var(--radio-borde);
}
.hero-contacto .hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--color-texto-invertido);
}
.hero-contacto .hero-text p {
  font-size: 1.3rem;
  margin-bottom: 30px;
}
.hero-contacto .btn {
  background: var(--color-fondo);
  color: var(--color-texto-invertido);
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
}
.hero-contacto .btn:hover {
  background: #fcbf49;
  color: rgb(9, 9, 9);
}

/*-- Sección Contacto --*/
.sgf-contacto {
    background: #f8faf9;
    padding: 80px 20px;
    color: #1b3a34;
  }
  .nm-header {
    text-align: center;
    padding-bottom: 40px;
  }
  .nm-header h2 {
    font-size: 2.3rem;
    color: #1b3a34;
    margin-bottom: 10px;
  }
  .nm-header p {
    font-size: 1.2rem;
    color: #3c5a55;
  }

  .contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
    align-items: flex-start;
  }

  .contact-info {
    flex: 1 1 300px;
  }

  .contact-info h3 {
    font-size: 1.5rem;
    color: #1d7665;
    margin-bottom: 10px;
    text-align: center;
  }

  .contact-info p, a {
    margin: 8px 0;
    font-size: 1.2rem;
    color: black;
    text-decoration: none;
  }

  .contact-info i {
    color: var(--color-fondo);
    margin-right: 15px;
  }

  .social-links-ct {
    margin-top: 16px;
    display: flex;
    justify-content: center;
    gap: 3rem;
  }

  .social-links-ct .fa-brands {
    display: inline-block;
    margin-right: 12px;
    font-size: 2.2rem;
    color: var(--color-texto);
    transition: color 0.3s;
    
  }

  .social-links-ct .fa-brands:hover {
    color: rgb(129, 180, 28);
  }

  .contact-form {
    flex: 1 1 400px;
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  }

  .form-group {
    margin-bottom: 16px;
  }

  .contact-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #24584f;
  }

  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #d6e3df;
    font-size: 1rem;
    color: #333;
    background: #fdfdfd;
  }

  .contact-form input:focus,
  .contact-form textarea:focus {
    outline: none;
    border-color: #1d7665;
    box-shadow: 0 0 0 3px rgba(29,118,101,0.15);
  }

  .btn-enviar {
    display: inline-block;
    background: #1d7665;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
  }

  .btn-enviar:hover {
    background: #155d50;
  }

  .contact-map {
    margin-top: 50px;
    border-radius: 12px;
    overflow: hidden;
  }

  @media (max-width: 768px) {
    .contact-grid {
      flex-direction: column;
    }
    .contact-info {
      flex-basis: 0;
    }
    .contact-form {
      width: 90%;
      margin: 0 auto;
    }
  }