/* Importar fuentes locales */
@import url('../assets/fonts/fonts.css');

/* Estilos generales */
body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  margin: 0;
  background-color: #0d47a1; /* Azul corporativo */
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 100vh;
  text-align: center;
  padding: 20px;
}

/* Menú de navegación */
nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #1565c0;
  display: flex;
  justify-content: center;
  padding: 10px 0;
}
nav a {
  color: #ffffff;
  text-decoration: none;
  margin: 0 15px;
  font-weight: 700; /* Bold */
  transition: color 0.3s ease;
}
nav a:hover {
  color: #90caf9;
}

/* Logo */
.logo {
  height: 220px;
  margin-bottom: 20px;
  margin-top: 60px;
}
.logo-left {
  position: absolute;
  top: 15px;
  left: 15px;
  height: 60px;
}

/* Títulos */
h1, h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; /* Bold */
  margin: 0 0 15px 0;
}

/* Slogan */
.slogan {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 1.4em;
  color: #90caf9;
  margin-top: 10px;
  margin-bottom: 30px;
}

/* Párrafos */
p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 10px;
}

/* Botones */
.btn {
  background-color: #1976d2;
  color: #ffffff;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; /* Bold */
  text-transform: uppercase;
  font-size: 1.2em;
  transition: background-color 0.3s ease;
}
.btn:hover {
  background-color: #1565c0;
}
.btn-cancel {
  background-color: #9e9e9e;
}
.btn-cancel:hover {
  background-color: #757575;
}
.btn-group {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* Formularios */
.form-container {
  background-color: #ffffff;
  color: #0d47a1;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  width: 400px;
  max-width: 90%;
  text-align: left;
}
label {
  display: block;
  margin-bottom: 5px;
  font-weight: 700; /* Bold */
}
input, textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1em;
}
textarea {
  resize: none;
  height: 100px;
}

/* Footer */
footer {
  position: absolute;
  bottom: 10px;
  width: 100%;
  text-align: center;
  font-size: 0.9em;
  color: #ffffff;
}

/* Responsive */
@media (max-width: 600px) {
  .logo {
    height: 140px;
  }
  h1 {
    font-size: 2em;
  }
  .slogan {
    font-size: 1.1em;
  }
  .btn {
    width: 100%;
    padding: 12px;
    font-size: 1em;
  }
  .btn-group {
    flex-direction: column;
  }
  nav {
    flex-direction: column;
  }
  nav a {
    margin: 8px 0;
  }
  .logo-left {
    height: 50px;
    top: 10px;
    left: 10px;
  }
  .form-container {
    width: 95%;
    padding: 20px;
  }
}

