*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Segoe UI, Arial, sans-serif;
    background:#f3f5f7;
    color:#333;
    min-height:100vh;
    display:flex;
    flex-direction:column;
}

/* HEADER */

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:#fff;
    box-shadow:0 2px 10px rgba(0,0,0,.08);
    z-index:999;
}

.header-container{
    max-width:1200px;
    margin:auto;
    padding:25px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

/* LOGO */

.logo a{
    text-decoration:none !important;
    color:#005ca9 !important;
    font-size:2rem;
    font-weight:700;
}

.logo a:visited{
    color:#005ca9 !important;
}

.logo a:hover{
    color:#0076d1 !important;
}

/* MENU */

nav ul{
    list-style:none;
    display:flex;
    gap:30px;
}

nav a{
    text-decoration:none;
    color:#005ca9;
    font-weight:600;
}

nav a:hover{
    color:#0094d8;
}

/* CONTEÚDO */

main{
    flex:1;
    width:95%;
    max-width:1200px;
    margin:auto;
    padding-top:120px;
    padding-bottom:40px;
}

h1{
    color:#005ca9;
    margin-bottom:20px;
}

h2{
    color:#005ca9;
    margin-bottom:15px;
}

p{
    margin-bottom:15px;
}

/* FORMULÁRIOS */

input,
select,
textarea{
    width:100%;
    padding:12px;
    border:1px solid #ddd;
    border-radius:8px;
    margin-bottom:10px;
}

button{
    background:#005ca9;
    color:white;
    border:none;
    padding:12px 20px;
    border-radius:8px;
    cursor:pointer;
}

button:hover{
    background:#0076d1;
}

/* FOOTER */

footer{
    background:#003d73;
    color:white;
    width:100%;
    margin-top:auto;
}

.footer-container{
    max-width:1200px;
    margin:auto;
    padding:20px;

    display:flex;
    flex-direction:column;
    align-items:center;
}

.footer-container a{
    color:white;
    text-decoration:none;
}

.footer-container a:hover{
    color:#9fd7ff;
}

/* RESPONSIVO */

@media(max-width:768px){

    .header-container{
        flex-direction:column;
        gap:15px;
    }

    .footer-container{
        flex-direction:column;
        gap:10px;
    }

    nav ul{
        gap:15px;
    }
}