*{
    margin: 0;
    border: 0;
    font-family: 'Montserrat', sans-serif;
    user-select: none; /* Evita la selección de texto */
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
}

.menu{
  margin-top: 15px;
  margin-bottom: -10px;
}



body{
    background-image: url(../img/fondo-login.png);
    background-size: cover;
}

.main-container{
    width: 100%;
    display: flex; /* Activa el diseño flexible */
    align-items: center; /* Alinea verticalmente la imagen y el texto */
    gap: 20px; /* Espacio entre la imagen y el texto */
} 

.imagen-inicio {
    flex: 1; /* La imagen ocupa un espacio flexible */
  }

  .imagen-inicio img {
    max-width: 100%; /* Hace que la imagen sea responsiva */
    height: auto;
    display: block;
  }

  .info-principal {
    flex: 2; /* El texto ocupa más espacio que la imagen */
    font-size: 48px;
  }



  body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #f4f6f9;
    color: #333;
}
body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #f4f6f9;
    color: #333;
}

/* Sección de bienvenida */
.hero-welcome {
    background-color: #00427B;
    background-image: linear-gradient(#00427B, #002D4B);
    color: white;
    text-align: center;
    padding: 60px 20px;
    margin-bottom: 50px;
}


.hero-welcome img{
 width: 200px;
 margin-bottom: -20px;
}

.hero-logo {
    width: 20%;
    margin-top: -70px;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Cards informativas */
.info-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 40px 20px;
    gap: 20px;
    background-color: #fff;
}

.info-card {
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 300px;
    flex: 1 1 280px;
    text-align: center;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
}

.info-card h2 {
    font-size: 20px;
    margin-bottom: 10px;
}

.info-card p {
    font-size: 15px;
    line-height: 1.5;
}




.hero-content p{
  font-size: 30px;
}

.item a{
  font-size: 20px;
}