
:root {
    --laranja-principal: #ff6500; /* cor da chapa */
    --azul-principal:#142241;
}

* {
    margin: 0;
    padding: 0;
    border: 0px;
}

body {
    width: 100%;
    background: #ff6500;
}

/*conteudo do site*/
main {
    padding-top: 75px;
    width: 85%;
    margin: 0 auto;
}
.lead {
    text-align: justify;
}
/*Nome da Categoria*/
.seçao-main{
    text-align: center;
    padding: 30px;
    font-family: 'Bebas Neue', Arial, Helvetica, sans-serif;
    font-weight: bold;

}
/*Nome da Categoria*/

/*Botao Veja mais*/
.container-botao{
    padding: 20px;
    text-align: center;
}

.botao-veja-mais{
    background-color: var(--laranja-principal);
    color: white;
    width: 150px;
    height: 50px;
    padding: 10px;
    border-radius: 8px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
/*Botao Veja mais*/

/*conteudo do site*/
 
    /*Coisas alternaivas de interesse multuo*/
        .section {
            background-color: var(--azul-principal); /* Cor de fundo azul */
            padding: 20px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            gap: 30px; /* Espaçamento entre as caixas */
        }

        .box {
            background-color: white;
            padding: 20px;
            border-radius: 10px;
            width: 30%;
            text-align: center;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .button {
            margin-top: 15px;
            padding: 10px 20px;
            background-color: #0056b3;
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .button:hover {
            background-color: #003d7a; /* Cor ao passar o mouse */
        }
        
       /*Coisas alternaivas de interesse multuo*/
       
       
        /* Media Query para ajustes em dispositivos móveis */
        @media (max-width: 768px) {
            .box {
                width: 45%; /* Ajuste para tablets e telas menores */
               
            }
            .section{
                padding: 10%;
            }
            
        }

        @media (max-width: 580px) {
            .box {
                width: 100%; /* Ajuste para smartphones */
            }
            .radio-nome-desktop{
                font-size: 0px;
            }
            
            .container-banner-fundo{
                width: 100%;
                position: relative;
                .text-block {
                    position: absolute;
                    bottom: 40px;
                    right: 20px;
                    background-color: rgba(0, 0, 0, 0.658);
                    color: white;
                    padding-left: 20px;
                    padding-right: 20px;
                    width: 100px;
                  }
            }
        }
        


.texto-titulo-header{
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    font-weight: bold;
    color: white;
    text-decoration: none;
    font-size: 17px;
}

@media (max-width: 750px) {
    main {
        width: 92.5%;
    }

    ul,
    main > .container-fluid {
        padding: 0 !important;
        margin: 0 !important;
    }
    .seçao-main{
        text-align: center;
        padding: 15px;
    
    }
   
    
}


@media (min-width: 750px) and (max-width: 988px) {
    .texto-titulo-header{
        font-family: 'Bebas Neue', Arial, Helvetica, sans-serif;
        font-weight: bold;
        color: white;
        text-decoration: none;
        font-size: 30px;
    }
    
    .container-banner-fundo{
        width: 100%;
        position: relative;
        .text-block {
            position: absolute;
            bottom: 40px;
            right: 20px;
            background-color: rgba(0, 0, 0, 0.658);
            color: white;
            padding-left: 20px;
            padding-right: 20px;
          }
    }
}