/* Configuración general */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
-webkit-tap-highlight-color: transparent;

}
html, body {
    position: fixed;
    width: 100%;
    height: 100%;
    overflow: hidden;
    overscroll-behavior: none;
}

/* Media query para asegurar que todo se vea bien en móviles pequeños */
@media screen and (max-width: 320px) {
    html {
        font-size: 14px;
    }
}




.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #003C79; 
    background-image: url('./images/fondo-inicio.svg'); 
    background-repeat: repeat;
    background-position: center;
    background-size: cover; 
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.logo-container {
    width: 250px;
    height: auto;
    position: relative; 
    z-index: 1;
    animation: heartbeat 2s ease-in-out infinite;
}

.logo {
    width: 100%;
    height: auto;
  
}


@keyframes heartbeat {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Descargar */


.download-container {
    min-height: 100vh;
  
    display: flex;
    flex-direction: column;
}

.logo-header {
    background: linear-gradient(to bottom, #003C79, #2571C4);
    display: flex;
    justify-content: center; 
    align-items: center;
    padding: 20px;
    padding-top: 100px;
    padding-bottom: 40px;
}

.logo-header img {
    height: 45px;
    width: auto;
}



.content-container {
    background: white;
    flex: 1;
    padding: 30px 20px;
}



.welcome-text {
    text-align: center;
    color: #003B78;
    margin-bottom: 10px;
}

.welcome-text h1 {
    font-size: 21px;
    color: #003B78;
    font-weight: 700;
    margin-bottom: 5px;
    margin-top: 20px;
    line-height: 1.5;
   
}

.welcome-text p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    padding: 0 15px;
    text-align: left;
    color: #414141;
}

.download-buttons {
    display: flex;
    flex-direction: column;
   
    gap: 10px;
    padding: 0 40px;
}

.download-buttons h2 {
    color: #003B78;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0px;
    text-align: left

}

.store-button {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 0 ;
}

.store-button img {
    width: 100%;
    height: auto;
 
}

.onboarding-screen-1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-image: url('./images/fondo-inicio.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}