
body
{
	/* background-color: white; */
}
*{

}

.main{
	width: 100%;
	height: 200vh;
	display: flex;
	flex-direction: column;
}


.header{
	height:100%;
	max-height: 20%;
	display: flex;
	flex-direction: column;
}


/* Contenedor principal de la sección contacto */
.contacto-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 60px 40px;
  background-color: #ffffff;
}

/* Título */
.contacto-section h1 {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 20px;
}

/* Texto descriptivo */
.contacto-section p {
  font-size: 16px;
  color: #56585e;
  margin-bottom: 24px;
}

/* Subtítulos pequeños como "Asistencia", "Soporte" */
.contacto-section h6 {
  font-size: 16px;
  color: #0d141a;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

/* Formulario */
.contacto-form {
  background-color: transparent;
  padding: 30px;
  border-radius: 0;
}

/* Inputs */
.contacto-form input,
.contacto-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #b8c0cc;
  border-radius: 10px;
  font-size: 16px;
  color: #0d141a;
  margin-bottom: 15px;
  background-color: #ffffff;
}

/* Etiquetas de formulario */
.contacto-form label {
  font-size: 14px;
  color: #0d141a;
  margin-bottom: 6px;
  display: block;
}

/* Botón */
.contacto-form button {
  background-color: #457B9D;
  color: #ffffff;
  padding: 12px 25px;
  font-size: 16px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contacto-form button:hover {
  background-color: #386d89;
}


/* RESPONSIVO: para pantallas pequeñas (ej. celulares) */
@media (max-width: 768px) {
  .contacto-section {
    grid-template-columns: 1fr; /* una sola columna */
    padding: 30px 20px;
  }

  .contacto-section h1 {
    font-size: 32px;
  }

  .contacto-form {
    padding: 0;
  }

  .contacto-form button {
    width: 100%;
    text-align: center;
  }
}





/* Se realiza las condiciones del footer */

footer{
	/* position:relative; */
	
         }

