*{
    box-sizing: border-box;
}

body{
    font-family: 'Inter', sans-serif;
    color: #1E293B;
    font-size: 18px;
    line-height: 1.7;
}

h1{
    font-family: 'Manrope', sans-serif;
    font-size: 56px;
    font-weight: 800;
    color: #0B1F5E;
}

h2{
    font-family: 'Manrope', sans-serif;
    font-size: 38px;
    font-weight: 700;
    color: #0B1F5E;
}

h3{
    font-family: 'Manrope', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #0B1F5E;
}

p{
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #475569;
}

h1{font-size: 2.5em;}
h2{font-size: 2em;}
h3{font-size: 1.7em;}
p{font-size: 1.25em;}
li{font-size: 1.2em;}
li{text-align: left;}

button{
    font-size: 1em;
    font-weight: normal;
    padding: 7px 20px;
    border-radius: 5px;
    border: 1px solid rgba(0,0,0);
    box-shadow: 2px 2px 5px rgba(0,0,0,0.5);
    color: white;
    background-color: rgb(9, 72, 130);
    
}

button:hover{
    background-color: rgb(7, 40, 75);
}

.container{
    max-width: 1400px;
    margin: auto;
}

.logo-link {
    margin-top: 10px;
    display: inline-block; /* Asegura que el link ocupe el tamaño correcto */
    border: none;
}

.logo-img {
    display: block; /* Quita espacios extraños debajo de la imagen */
    max-width: 100%; /* Asegura que no se desborde */
    height: auto; /* Mantiene la proporción */
    border: 0; /* Quita bordes predeterminados en navegadores antiguos */
}

header{
    position: fixed; 
    top: 0;          
    width: 100%; 
    background: linear-gradient(to right, #0000be, #00e0bf);
    color: white;   
    display: flex;
    flex-direction: column; /* Apila elementos verticalmente */
    align-items: center; /* Centra horizontalmente */
    padding: 20px;
}

header .logo{
    margin: 10px;
    padding: 10px 25px 0px 25px;
    font-weight: bold;
    font-size: 1.7em;   
}

header .container{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
}

header nav{
    display: flex;
    text-align: right;
    padding-top: 0;
    padding-bottom: 15px;
}  

nav a{
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #0B1F5E;
    text-decoration: none;
} 

header a{
    padding: 5px 12px;
    text-decoration: none;
    font-weight: normal;
    color: white;
}

header h3{
    justify-content: left;
    text-decoration: none;
    font-weight: normal;
    color: white;
}

header a:hover{
    color: rgb(104, 165, 222);
}

.logocheck {
    display: flex;
    justify-content: center; /* Centra horizontalmente */
    align-items: center;     /* Centra verticalmente */
    width: 50%;       /* Hace la imagen responsiva */
    max-width: 200px;  /* Tamaño máximo */
    height: auto;      /* Mantiene la proporción */
    background-position: center;
  

}

#banner{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    height: 70vh;
    color: white;
    background-image: url("Images/Reportes.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
}

#inicio .container{
    padding: 20px 15px; 
    text-align: center;
    color:rgb(7, 55, 99);
}


footer {
    background: linear-gradient(to right, #0000be, #00e0bf);
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap; /* CLAVE para móvil */
    gap: 15px;
    padding: 15px;
    color: white;
    text-align: center;
}

/* Logo */
.footer-logo img {
    height: 40px;
}

/* Items (teléfono y correo) */
.footer-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

/* Iconos */
.footer-item img {
    width: 20px;
    height: 20px;
}



