/* ====== ESTILOS GENERALES ====== */
@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  max-width: 100%;
  font-family: "Raleway", sans-serif;
}

body {
  text-align: center;
  background-color: #ffffff;
  color: #333333;
  line-height: 1.6;
}

.div {
  height: 120px;
  width: 100%;
}

/* ====== SECCIÓN CONTACTO ====== */

.contacto {
  background-color: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.contacto h2 {
  font-size: 36px;
  color: #2a2a90;
  margin-bottom: 30px;
}

.formulario {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.campo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.campo label {
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}

.campo input,
.campo textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  transition: border 0.3s;
}

.campo input:focus,
.campo textarea:focus {
  outline: none;
  border-color: #0583f2;
}

button[type="submit"] {
  background-color: #0583f2;
  color: white;
  border: none;
  padding: 14px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

button[type="submit"]:hover {
  background-color: #046ac5;
}

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

  .contacto h2 {
    font-size: 28px;
  }

  .formulario {
    padding: 20px;
  }

  .campo label {
    font-size: 14px;
  }

  .campo input,
  .campo textarea {
    font-size: 14px;
  }

  button[type="submit"] {
    font-size: 14px;
    padding: 12px;
  }
}
