/* INÍCIO SEÇÃO .Assista (PRIMEIRA VERSÃO) */
.Assista {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
    justify-content: center;
    padding: 5%;
    background-color: rgba(35, 33, 38, 0.281);
}

.Assista h2 span {
    color: rgb(5, 105, 255);
    background-color: #0a090b;
}

.Assista p {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 16pt;
    text-align: center;
    color: #ffffff;
    line-height: 1.4;
}
/* FIM SEÇÃO .Assista (PRIMEIRA VERSÃO) */

/* INÍCIO GRID PRINCIPAL */
.grid-assista {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    width: 100%;
    padding: 5%;
    background-color: transparent;
}
/* FIM GRID PRINCIPAL */

/* INÍCIO RESPONSIVIDADE */
/* Tablet */
@media (max-width: 1024px) {
    .grid-assista {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Celular */
@media (max-width: 768px) {
    .grid-assista {
        grid-template-columns: 1fr;
    }
}
/* FIM RESPONSIVIDADE */

/* INÍCIO SEÇÃO .Assista (SEGUNDA VERSÃO) */
.Assista {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    background-color: #000000;
    text-align: center;
}

.Assista h2 {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 300;
    text-shadow: 1px 1px 1px rgba(40, 180, 255, 0.72);
    margin-bottom: 40px;
}

.Assista h2 span {
    color: #28b4ff;
    font-weight: 500;
    background-color: transparent;
}
/* FIM SEÇÃO .Assista (SEGUNDA VERSÃO) */

/* INÍCIO GRID DE DISPOSITIVOS */
.grid-assista {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1500px;
    width: 100%;
}
/* FIM GRID DE DISPOSITIVOS */

/* INÍCIO CARDS INDIVIDUAIS */
.assista-grid {
    border-radius: 12px;
    padding: 25px;
    width: 250px;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: start;
}
/* Links dos cards */
.assista-grid-link {
    text-decoration: none;
    color: inherit;

}


.assista-grid:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(40, 180, 255, 0.72);
}
/* FIM CARDS INDIVIDUAIS */

/* INÍCIO CONTAINER DE IMAGEM */
.img-assista {
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.img-assista img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
/* FIM CONTAINER DE IMAGEM */

/* INÍCIO TÍTULOS E TEXTOS */
.assista-grid h3 {
    color: #28b4ff;
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-shadow: 1px 1px 1px rgba(40, 180, 255, 0.72);
}

.assista-grid p {
    text-align: start;
    color: #cccccc;
    font-size: 0.9rem;
    line-height: 1.5;
}
/* FIM TÍTULOS E TEXTOS */

/* INÍCIO RESPONSIVIDADE (SEGUNDA VERSÃO) */
@media (max-width: 1024px) {
    .grid-assista {
        gap: 20px;
    }
    .assista-grid {
        width: 220px;
    }
}

@media (max-width: 768px) {
    .grid-assista {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .assista-grid {
        width: 100%;
        max-width: 300px;
    }
    .Assista h2 {
        font-size: 2rem;
    }
}
/* FIM RESPONSIVIDADE (SEGUNDA VERSÃO) */