@charset "utf8";


@font-face {
    font-family: 'chaparall';
    src: url(fonts/chaparral-pro-bold-caption.otf);
}

:root{

    --cor1: #A61B26;
    --cor2: #8C2703;
    --cor3: #D9AA1E;
    --cor4: #F2A444;

    --fonttitle: 'chaparall', cursive;



}

/* Reset geral */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    margin: 0;
}

/* Estilos gerais */
body {
    font-family: Arial, sans-serif;
    text-align: center;
    
}

/* HEADER */
header {
    background-color: #8C2703;
    width: 100vw;
    height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100vw; 
}

.left-text, .right-text {
    font-size: 1rem;
    color: white;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.header-content img {
    height: 150px;
}

/* NAV - Menu */

nav {
    background-color: var(--cor3);   
    display: none;
    flex-direction: column;
    width: 100vw;
    position: absolute;
    top: 100px;
    left: 0;
    z-index: 999;
    box-shadow: 0px 4px 6px rgba(0,0,0,0.1);
}

span#burguer {
    background-color: #f1ba12;
    color: white;
    display: block;
    text-align: center;
    padding: 10px;
    cursor: pointer;
    width: 100%;
    font-size: 1.5rem;
}

span#burguer:hover {
    background-color: var(--cor3);
}

nav > ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

nav > ul > li > a {
    display: block;
    padding: 12px 20px;
    text-decoration: none;
    text-align: center;
    color: #ffffff;
    font-size: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

nav > ul > li > a:hover {
    background-color: var(--cor4);
}



/*tela projeto*/


  
    





