:root {
    --corPrincipalc: #072258;
    --corPrincipal: #051637;
    --laranja:#F09061;

}

a{
    text-decoration: none !important;
}

.desce{
    margin-top: 60px;
}

#orange{
    color: var(--laranja);
}

.linha{
    margin-top: 0px;
    width: 100%;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--corPrincipalc);

    h1{
        font-size: 15px;
        text-align: center;
        color: white;
    }
}
#headline{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding:100px 0px;
    background-image: url('media/HeadlineFundo.png');
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
    gap:20px;
    img{
        width: 50%;
    }
    h1{
        text-align: center;
        font-size: 55px;
        color: var(--laranja);
    }
    a{
        color:white;
        padding:15px 0px;
        font-weight: 600;
        font-size: 25px;
        width: 70%;
        border-radius: 10px ;
        text-align: center;
        background: #176BE0;
        transition: 0.3s ease-in-out;

        &:hover{
            background: #094aa4;
            transform: scale(1.1);
        }   
    }
    p{
        
        text-align: center;
        font-size: 35px;
    }
}

.container2{
    background: linear-gradient(to bottom, var(--corPrincipal), var(--corPrincipalc));
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    padding: 60px 0px;
    gap:5px;
    h1{
        color: white;
        font-size: 48px;
    }

    h2{
        font-weight: 500;
        font-size: 40px;
        color: white;
    }

    h3{
        font-size: 17px;
        font-weight: 500;
        color: white;
    }
    a{
        color:white;
        padding:15px 0px;
        font-weight: 600;
        font-size: 25px;
        width: 40%;
        border-radius: 10px ;
        text-align: center;
        background: #176BE0;
        transition: 0.3s ease-in-out;

        &:hover{
            background: #094aa4;
            transform: scale(1.1);
        }   
    }

    .modulos-tabela {
        width: 100%;
        border-collapse: separate; /* Mantém os cantos arredondados */
        border-spacing: 0;
        background-color: rgb(246, 246, 246);
        border-radius: 10px;
        overflow: hidden; 
    }
    
    .modulos-tabela thead tr {
        background-image: linear-gradient(275deg, #00C5FF, #007BFF);
        color: white;
    }
    .modulos-tabela thead tr:first-child th:first-child {
        border-top-left-radius: 10px;
    }
    
    .modulos-tabela thead tr:first-child th:last-child {
        border-top-right-radius: 10px;
    }
    
    .modulos-tabela tbody tr:last-child td:first-child {
        border-bottom-left-radius: 10px;
    }
    
    .modulos-tabela tbody tr:last-child td:last-child {
        border-bottom-right-radius: 10px;
    }
    .modulos-tabela th {
        border: none;
        padding: 15px;
        font-size: 18px;
        text-align: left;
    }
    
    .modulos-tabela td {
        border: 1px solid black;
        padding: 10px;
        text-align: left;
    }
    
    .modulos-tabela td:first-child {
        color: #007BFF; /* Azul */
        font-weight: 600; /* Negrito */
        text-align: center; /* Centraliza os números */
    }
}

.container3{
    padding: 20px 0px;
    gap:20px;
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(to bottom, var(--corPrincipalc), var(--corPrincipal));
    #PAPI{
        width: 30%;
    }
    .images{
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: row;
        gap:2%;
        width: 100vw;

        img{
            width: 512px;
            max-width: 512px;
            box-shadow: inset 0px 0px 5px rgba(0,0,0, 0.5);
            border-radius: 25px;
            background-color: var(--corPrincipalc);
        }
    }

    a{
        color:white;
        padding:15px 0px;
        font-weight: 600;
        font-size: 25px;
        width: 40%;
        border-radius: 10px ;
        text-align: center;
        background: #176BE0;
        transition: 0.3s ease-in-out;
        margin:1%;

        &:hover{
            background: #094aa4;
            transform: scale(1.1);
        }   
    }
    a:nth-of-type(2){
        margin: 0px;
    }

    .Video{
        padding: 15px 0px;
        width: 100%;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
        h1{
            text-align: center;
            box-shadow: inset 0px 0px 15px rgba(0,0,0, 0.5);
            padding: 15px 0px;
            width: 50%;
            font-size: 48px;
            color: white;
        }
        .videocontainer{
            margin:1%;
            display: flex;
            justify-content: center; /* Centraliza o vídeo */
            align-items: center;
            width: 80%; /* Ajuste a largura conforme necessário */
            max-width: 100%;
            position: relative;
            

        iframe{
            width: 100%;
            height: auto;
            aspect-ratio: 16 / 9; /* Garante a proporção correta */
            border: none;
            }
        }
    }
}

@media screen and (min-width: 320px) and (max-width: 768px){
    .linha{
        h1{
            font-size: 10px;
        }
    }
    #headline{
        padding: 0px;
        img{
            width: 100%;
        }
        h1{
            font-size: 30px;
        }
        p{
            font-size: 18px;
        }
        a{
            font-size: 20px;
            padding: 15px 5px;
            width: 90%;
        }
    }

    .container2{
        a{
            width: 90%;
        }
    }
    
    .container3{
        #PAPI{
            width: 100%;
        }
        a{
            width: 90%;
        }
        .Video{
            h1{
                margin: 0px;
                width: 100%;
                font-size: 35px;
            }
        }
        .images{
          flex-direction: column;
          gap:20px;
            img{
                width: 100%;
            }
        }
    }
} 


@media screen and (min-width: 768px) and (max-width: 1024px){

} 
@media screen and (min-width: 1024px) and (max-width: 1440px){
    #headline{
        img{
            width: 80%;
        }
    }
    .container3{
        #PAPI{
            width: 70%;
            
        }
        a{
            width: 80%;
        }
        .Video{
            h1{
                width: 80%;
            }
        }
        .images{
            gap:20px;
              img{
                  width: 400px;
              }
          }
      }   	
    }
@media only screen and (min-width: 1340px){
    .container3{
        #PAPI{
            width: 30% ;
        }
} 
}

@media only screen and (max-width:992px){
    #PAP{
        .Video{
            .videocontainer{
                width:100% !important;
            }
        }
    }
}
    