/* GENERAL */
body {
  font-family: 'Montserrat', sans-serif;
  color: #2a2a2a;
}

/* CONTENEDOR */
.contenedor {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  text-align: center;
}

/* TÍTULOS */
h1, h2 {
  color: #1e1e1e;
  font-weight: 800;
  margin-bottom: 1rem;
}

.intro, .formulario-zona p {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 2.5rem auto;
}

/* BOTONES CONTACTO */
.botones-contacto {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.btn-contacto {
  background-color: #2c88c5;
  color: #fff;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-contacto:hover {
  background-color: #2474a8;
}

.btn-contacto.whatsapp {
  background-color: #25D366;
}

.btn-contacto.whatsapp:hover {
  background-color: #1ebc56;
}

/* DATOS DE CONTACTO */
.datos-contacto ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.datos-contacto ul li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  margin-bottom: 0.8rem;
  color: #333;
}

.datos-contacto i {
  color: #2c88c5;
  font-size: 1.2rem;
}

.redes-grandes {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  font-size: 2rem;
  margin-top: 1rem;
}

.redes-grandes a {
  color: #2c88c5;
  transition: 0.3s;
}

.redes-grandes a:hover {
  color: #2474a8;
  transform: scale(1.1);
}

/* FORMULARIO */
.formulario-zona {
  background: #f4f6f9;
}

.formulario-contacto {
  max-width: 800px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  text-align: left;
}

.formulario-contacto input,
.formulario-contacto textarea {
  padding: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  width: 100%;
}

.formulario-contacto textarea {
  min-height: 180px;
  resize: vertical;
  font-family: inherit;
}

.formulario-contacto button {
  background-color: #2c88c5;
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background-color 0.3s ease;
}

.formulario-contacto button:hover {
  background-color: #2474a8;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .btn-contacto {
    font-size: 1rem;
    padding: 0.9rem 1.5rem;
  }

  .formulario-contacto button {
    width: 100%;
    justify-content: center;
  }
}
