/* CONTACTO - SECCIÓN TÍTULO */
.seccion-contacto-titulo {
  padding: 4rem 2rem 2rem;
  background-color: #f5f8ff;
  text-align: center;
}

.seccion-contacto-titulo h1 {
  font-size: 2.2rem;
  font-weight: bold;
  color: #002b8a;
  margin-bottom: 1rem;
}

.seccion-contacto-titulo p {
  font-size: 1rem;
  max-width: 800px;
  margin: 0 auto;
  color: #555;
  line-height: 1.6;
}

/* FORMULARIO + IMAGEN */
.seccion-contacto-formulario {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 3rem;
  padding: 3rem 2rem;
  background-color: #ffffff;
}

.imagen-contacto img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 400px;
  object-fit: cover;
}

.formulario-wrapper {
  max-width: 450px;
  width: 100%;
  background-color: #ffffff;
  padding: 2rem;
  box-shadow: 0 10px 25px rgba(0, 47, 135, 0.2);
  border-radius: 8px;
}

.formulario-contacto {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.formulario-contacto input,
.formulario-contacto textarea {
  padding: 0.9rem 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 0.95rem;
}

.formulario-contacto textarea {
  resize: none;
}

.formulario-contacto button {
  background-color: #002b8a;
  color: white;
  border: none;
  padding: 0.8rem 2rem;
  font-size: 0.95rem;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  align-self: center;
  transition: background-color 0.3s ease;
}

.formulario-contacto button:hover {
  background-color: #001f60;
}

/* INFORMACIÓN DE CONTACTO */
.info-contacto-adicional {
  background-color: #f5f8ff;
  padding: 3rem 2rem;
  text-align: center;
}

.info-contacto-adicional h2 {
  font-size: 1.6rem;
  color: #002b8a;
  margin-bottom: 1.5rem;
}

.info-contacto-adicional ul {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
  color: #333;
  font-size: 1rem;
  line-height: 1.6;
}

.info-contacto-adicional ul li {
  margin-bottom: 1rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .seccion-contacto-formulario {
    flex-direction: column;
    align-items: center;
  }

  .imagen-contacto img {
    width: 100%;
  }
}
