@import url('https://fonts.googleapis.com/css2?family=Mozilla+Headline:wght@200..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Michroma&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Mozilla+Headline:wght@200..700&display=swap');

/* Utilizado em vários programados */

* {

    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;

}

.site {

    width: 100%;
    display: flex;
    flex-direction: column;
    
}

.container {
    
    width: 70vw;
    margin: 0 auto;
    
}


.col-1 {flex: 1 1 calc(100% / 12);}
.col-2 {flex: 1 1 calc(100% / 6);}
.col-3 {flex: 1 1 calc(100% / 4);}
.col-4 {flex: 1 1 calc(100% / 3);}
.col-5 {flex: 1 1 calc(100% / 12 * 5);}
.col-6 {flex: 1 1 calc(100% / 2);}
.col-7 {flex: 1 1 calc(100% / 12 * 7);}
.col-8 {flex: 1 1 calc(100% / 8);}
.col-9 {flex: 1 1 calc(100% / 12 * 9);}
.col-10 {flex: 1 1 calc(100% / 12 * 10);}
.col-11 {flex: 1 1 calc(100% / 12 * 11);}
.col-12 {flex: 1 1 100%;}

a {

    text-decoration: none;
    font-family: "Mozilla Headline", Arial, Helvetica, sans-serif;
    border-radius: 20px;
    
}


form select {
    padding: 8px;
    font-size: 16px;
    border: 1.5px solid black;
    border-radius: 4px;
    background-color: #FFF0C4;
    font-family: "Mozilla Headline", Arial, Helvetica, sans-serif;
}

form label {
    display: block;
    font-weight: bold;
    color: black;
    font-size: 18px;
    font-family: "Mozilla Headline", Arial, Helvetica, sans-serif;
}
form input, form textarea {
    padding: 8px;
    border: solid 1.5px black;
    border-radius: 4px;
    background-color: #FFF0C4;
    font-family: "Mozilla Headline", Arial, Helvetica, sans-serif;
    resize: none;
}
form button {
  background-color: #8C1007;
  border: none;
  border-radius: 15px;
  cursor: pointer;
}

form button a {
  display: block;
  padding: 15px 20px;
  font-family: "Mozilla Headline", Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 16px;
  text-decoration: none;
  color: white;
  letter-spacing: 1px;
  text-align: center;
}

form input:invalid, form select:invalid, form textarea:invalid {
  border: 2px solid red;
}

/* Cabeçalho */

header {
    width: 100%;
    height: 7.5vw;
    background-color: #3E0703;
    overflow: hidden;
    display: flex;
}

header .container {

    display: flex;
    justify-content: space-around;
    align-items: center;
}

header .logo {
    width: 7vw;
    border-radius: 50%;
}

.redes-sociais ul {

    display: flex;
    flex-direction: row;
    gap: 5px;
    color: white;
    
}

.redes-sociais i {

    font-size: 20px;
    color: #FFF0C4;
    transition: 0.3s;

}

header .redes-sociais i {
    
    padding: 10px;
    border-radius: 50%;
    background-color: #3E0703;

}

header .redes-sociais i:hover {

    color: #8C1007;
    
}

/* Menu */

.menu {
    
    width: 100%;
    display: flex;
    background-color: #660B05;
    padding: 10px;

}

.paginas {
    
    display: flex;
    flex-direction: row;
    gap: 10px;

}

    .paginas li {

        height: 3.5vh;
        display: flex;
        background-color: #8C1007;
        transition: all 0.3s ease;
        border-radius: 20px;

    }

    .paginas li a {
            
            color: #FFF0C4;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 100%;
            
    }

        .paginas li a:hover {

            background-color: #FFF0C4;
            color: #8C1007;
        
        }

/* Banner */

.banner {

    width: 100%;

}

    .banner img {

        height: 350px;
        width: 100%;
        
    }

/* Main */
    
main {

    width: 100%;
    flex: 1;
    min-height: 60vh;
    background-color: #FFF0C4;
    padding-bottom: 5%;
    
}

main h1 {
        
    font-family: "Mozilla Headline", Arial, Helvetica, sans-serif;
    font-size: 55px;
    color: black;

}

main .caixa-titulo {

    width: 100%;

    display: flex;
    justify-content: center;
    
}

    main .titulo {

        padding: 20px 0px;

        display: flex;
        flex-direction: column;
        align-items: center;

    }

        main .titulo .linha-titulo {

            width: 60%;

            border: 5px solid rgb(245, 231, 40);
            border-radius: 5px;

        }

/* Rodapé */

footer {

    width: 100%;
    min-height: 20vh;
    background-image: linear-gradient(180deg, #660B05 20%, #3E0703 100%);
    display: flex;

}

footer .container {

    display: flex;
    flex-direction: row;
    padding: 20px 0px;

}

        footer .container [class^="col-"] {
            
            height: 100%;
            padding: 5px;
            
        }

        footer .container .col-6 * {

            color: #FFF0C4;
            

        }

        footer .container .informacoes {

            border-right: 5px dotted rgba(136, 56, 15, 0.363);

        }


            footer .marca {

                display: flex;
                flex-direction: row;
                margin-bottom: 10px;
                align-items: baseline;
                gap: 10px;
            }

                footer .marca h6 {

                    font-size: 38px;
                    font-family: "Michroma", Arial, Helvetica, sans-serif;

                }

                footer .marca .direitos {

                    font-size: 16px;
                    
                }


            footer .redes-sociais {

                margin-bottom: 10px;
            }
            
                footer .redes-sociais ul {

                    justify-content: space-around;

                }

            footer .redes-sociais ul li a{
                
                width: 100%;
                height: 100%;
                display: block;
                padding: 10px;

            }

            footer .redes-sociais ul li a:hover {

                background-color: #FFF0C4;
                color: #8C1007;

            }

            footer .redes-sociais ul li a:hover *{

                color: #8C1007;

            }

            footer .redes-sociais ul li a i {

                display: flex;
                align-content: center;
                gap: 4px;

            }
            
            footer .redes-sociais span {

                font-size: 16px;

            }

            footer .adicoes h6 {

                font-size: 20px;
                margin-bottom: 5px;
                
            }

            footer .adicoes .local {

                display: flex;
                justify-content: space-between;
                margin-bottom: 2.5px;

            }

            footer .adicoes .contato {

                display: flex;
                justify-content: space-between;

            }

            footer .creditos .colaboradores {
                margin: 15px 5px;
            }

            footer .creditos .voltar a {

                padding: 10px;
                display: flex;
                transition: 0.3s;
                background-color: #FFF0C4;
                width: 180px;
                border-radius:300px;
                justify-content: center;
                color: #3E0703;
                font-weight: bold;
                
            }   

            footer .creditos .voltar a:hover {

                background-color: transparent;
                color: #FFF0C4;

            }
    
            footer .creditos h6 {

                font-family: "Michroma", Arial, Helvetica, sans-serif;
                font-size: 30px;
                color: #FFF0C4;
                
            }

                
