#participar {
    width: 100%;
    height: 130vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    gap: 2rem;

    background-image: url(../../img/header/background-header.jpg);
    background-attachment: fixed;
}

#participar h2 {
    font-family: 'Neue Plak Extended Bold';
    font-size: 3rem;
    color: white;
}

.container {
    height: 400px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: start;
}

.card {
    width: 80px;
    border-radius: .75rem;
    background-size: cover;
    cursor: pointer;
    overflow: hidden;
    border-radius: 2rem;
    margin: 0 10px;
    display: flex;
    align-items: flex-end;
    transition: .6s cubic-bezier(.28, -0.03, 0, .99);
    box-shadow: 0px 10px 30px -5px rgba(0, 0, 0, 0.8);
    background-color: white;
}

.card>.row {
    color: white;
    display: flex;
    flex-wrap: nowrap;
}

.card>.row>.icon {
    background: #223;
    color: white;
    border-radius: 50%;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 15px;
}

.card>.row>.description {
    display: flex;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
    height: 80px;
    width: 520px;
    opacity: 0;
    transform: translateY(30px);
    transition-delay: .3s;
    transition: all .3s ease;
}

.description h4 {
    text-transform: uppercase;
    font-family: 'Neue Plak Extended Bold';
}

input {
    display: none;
}

input:checked+label {
    width: 600px;
}

input:checked+label .description {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.card[for="c1"] {
    background-image: url('../../img/section-wrapper/fifa24.webp');
}

.card[for="c2"] {
    background-image: url('../../img/section-wrapper/streetfighter6.webp');
}

.card[for="c3"] {
    background-image: url('../../img/section-wrapper/brawlstars.webp');
}

.card[for="c4"] {
    background-image: url('../../img/section-wrapper/pokemontcg.png');
}

#boxParticipar {
    width: 50rem;
    height: 13rem;
    background-color: #c0c0c0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    border-radius: 1rem;
}

#boxParticipar>div {
    font-family: 'Neue Plak SemiBold';
    font-size: 2rem;
}

#boxParticipar>div h3:nth-child(1) {
    color: #17181D;
}

#boxParticipar>div h3:nth-child(2) {
    color: #C20717;
}

.btn {
    display: block;
    padding: 15px;
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    text-align: center;
    transition: all .5s ease;
}

.btn--action {
    display: block;
    padding: 1rem;
    border-radius: 1rem;
    background-color: #17181dbb;
    color: #fff;
    transition: all .5s ease 0s;
    box-shadow: 0 10px #08090a;
}

.btn--action:hover{
    background-color: rgb(255, 0, 0);
}

.btn--action span {
    display: inline-block;
    position: relative;
    transition: all .5s ease;
    font-family: 'Neue Plak Extended Bold';
}

.btn--action:hover span {
    filter: brightness(130%), saturate(200%);
}

.btn--action:hover span:before {
    left: 0;
    opacity: 1;
}

.btn--action:active {
    box-shadow: 0 5px #1c1d20;
}
