@font-face {
    font-family: 'ClanPro';
    src: url('../fonts/clan-pro-cond-ultra.ttf') format('truetype');
}

#body_mipage {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-rows: 80px auto;
    font-family: "ClanPro", sans-serif;
    text-transform: uppercase;
}
#body_mipage_movile {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-rows: 80px auto;
    font-family: "ClanPro", sans-serif;
    overflow: hidden;
    text-transform: uppercase;
}

#top_nav {
    background: #DB2B3D;
    align-content: center;
    text-align: center;
}

#top_nav img {
    height: 60%;
}
#top_nav_movile {
    background: #E31937;
    align-content: center;
    text-align: center;
}

#top_nav_movile img {
    height: 90%;
}

#top_deskop {
    width: 100%;
    height: 100%;
    background-image: url("../img/landing_page_top.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    align-content: center;
    text-align: center;
    text-align: -webkit-center;
}

#top_deskop_movile {
    width: 100%;
    height: 100%;
    /*background: rgb(131,58,180);
    background: linear-gradient(0deg, rgba(130,70,175,1) 0%, rgba(227,25,55,1) 100%);*/
    align-content: center;
    text-align: center;
    text-align: -webkit-center;
}

.btn_morado {
    display: block;
    background-color: #6a0dad;
    
    border: none;
    border-radius: 15px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

.btn_morado:hover {
    background-color: #5b009e;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.botones_deskop{
    width: 500px;
    display: flex;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.botones_deskop a{
    width: 250px;
    height: 55px;

}

.botones_deskop_movile{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.botones_deskop_movile a{
    width: 60%;
    height: 60px;
}

.texto_deskop {
    width: 400px;
    font-size: 24px;
    position: relative;
    display: inline-block;
    color: black;
    padding: 10px 20px;
    border-radius: 5px;
}
.texto_deskop_movile {
    width: 90%;
    font-size: 24px;
    position: relative;
    display: inline-block;
    color: black;
    padding: 10px 20px;
    border-radius: 5px;
}

.m_android {
    background-image: url("../img/google-play.png");
    background-size: 30px; /* Ajusta el tamaño de la imagen */
    background-position: right center; /* Imagen a la derecha y centrada verticalmente */
    background-repeat: no-repeat; /* Evita que se repita la imagen */
}

.m_ios {
    background-image: url("../img/app-store.png");
    background-size: 30px; /* Ajusta el tamaño de la imagen */
    background-position: right center; /* Imagen a la derecha y centrada verticalmente */
    background-repeat: no-repeat; /* Evita que se repita la imagen */
    margin-top: 30px;
}

.btn_nuevo {
    display: flex;
    justify-content: space-between; /* Alinea el texto y la imagen hacia los extremos */
    background-size: cover;
    
    border: none;
    border-radius: 15px;
    padding: 10px 20px;
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    text-align: left;
    align-items: center;
    background-repeat: no-repeat;
}

@media (max-width:1250px){
    #body_mipage_movile{
        display: grid;
    }
    #body_mipage{
        display: none;
    }
    .m_android {
        background-image: url("../img/google-play.png");
        background-size: 30px; /* Ajusta el tamaño de la imagen */
        background-position: right center; /* Imagen a la derecha y centrada verticalmente */
        background-repeat: no-repeat; /* Evita que se repita la imagen */
    }
    
    .m_ios {
        background-image: url("../img/app-store.png");
        background-size: 30px; /* Ajusta el tamaño de la imagen */
        background-position: right center; /* Imagen a la derecha y centrada verticalmente */
        background-repeat: no-repeat; /* Evita que se repita la imagen */
        margin-top: 30px;
    }
    
    .btn_movile {
        display: flex;
        justify-content: space-between; /* Alinea el texto y la imagen hacia los extremos */
        background-size: cover;
        border: none;
        border-radius: 15px;
        padding: 10px 20px;
        font-size: 20px;
        font-weight: 500;
        cursor: pointer;
        transition: background-color 0.3s ease, box-shadow 0.3s ease;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
        text-decoration: none;
        text-align: left;
        align-items: center;
        background-repeat: no-repeat;
    }
    
    #top_deskop_movile .texto_deskop{
        
    }
    #top_deskop_movile .texto_deskop_movile{
        
    }
    #top_deskop_movile .botones_deskop{
        flex-direction: column;
    }
}
@media (min-width:1250px){
    #body_mipage_movile{
        display: none;
    }
    #body_mipage{
        display: grid;
    }
}