.contenedor__ppal {
    background-image: url('../img/Landing_page_concurso_desktop.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    overflow: hidden;
}

.right__section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
}

.logo-claro {
    width: 100%;
}

.texto-titulo {
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.tickets-img {
    width: 20%;
}

.inscripcion-txt {
    width: 100%;
}

.btn-participa {
    width: 80%;
    transition: all 0.3s ease;

    &:hover {
        transform: scale(1.1);
    }
}

.version-mobile {
    display: none;
}

.logo-arena {
    width: 25%;
}

@media (max-width: 768px) {
    .version-mobile {
        display: block;
    }

    .contenedor__ppal--mobile {
        background-image: url('../img/Landing_page_concurso_mobile.webp');
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        height: 100vh;
        overflow: hidden;
    }

    .logo-claro {
        width: 100%;
    }

    .inscripcion-txt {
        width: 80%;
    }

    .texto-titulo {
        width: 50%;
    }

    .tickets-img {
        width: 20%;
    }

    .btn-participa {
        width: 80%;
    }

    .logo-arena {
        width: 20%;
    }
}