/* Tráfego NET Brasil - trafego.net.br */

.content {
    position: absolute;
    top: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    /*
        background-image: linear-gradient(to bottom right,#002f4b,#dc4225);
        background-image: linear-gradient(to bottom, #090042, #000000);
    */ 
    background-image: linear-gradient(to bottom, transparent 0%, black 100%);
/*    opacity: .6;
*/
}

#myVideo {
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    object-fit: fill;
}

#moodvideo, #alternative {
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    object-fit: fill;
    width: 100vw;
    /* Could also use width: 100%; */
    height: 100vh;
    object-fit: cover;
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: -1;
}

.imageBox {
    display: inline-block;
    padding: 0 5px 5px 5px;
    text-align: center;
    opacity: 20%;
}

.pcontainer {
    display: grid;
    grid-template-columns: 2fr 5fr; /* Duas colunas com proporções diferentes (2:5) */
    gap: 20px;
    width: 100%;
    padding: 10px;
}
    .pcontainer img {
        width: 100%;
        height: auto;
        display: block;
    }

.ptexto {
    background-color: #333;
    color: white;
    font-size: 16px;
    opacity: 80%;
    padding: 20px;
    border-radius: 8px;
}
    .ptexto p {
        margin-bottom: 15px;
    }
    .ptexto h2 {
        font-size: 22px;
        font-weight: bold;
        margin-bottom: 15px;
    }

@media screen and (max-width: 768px) {
    .pcontainer {
        grid-template-columns: 1fr; /* Uma coluna em telas menores */
    }
}

.lcontainer {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr; /* Quatro colunas com proporções iguais */
    gap: 20px;
    width: 100%;
    padding: 10px 30px 10px 30px;
    color: #2A5382;
    font-size: 12px
}
    .lcontainer img {
        width: 100%;
        height: auto;
        display: block;
        margin-bottom: 10px;
    }
    .lcontainer span {
        text-align: center;
        background-color: #2A5382;
        padding: 10px 10px 10px 10px;
        border-radius: 8px;
        color: white;
        font-weight: bold;
        float: right;
    }

@media screen and (max-width: 768px) {
    .lcontainer {
        grid-template-columns: 1fr 1fr; /* Duas colunas em telas menores */
    }
}