*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Inter',sans-serif;
    line-height:1.6;
    color:#333;
}

.container{
    width:90%;
    max-width:1100px;
    margin:auto;
}

header{
    position:absolute;
    width:100%;
    top:0;
    left:0;
    z-index:100;
}

header a{
    color:white;
}

header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 0;
}

nav{
    display:flex;
    gap:20px;
}

nav a{
    text-decoration:none;
    color:#333;
}

.btn{
    display:inline-block;

    padding:14px 28px;

    background:var(--primary);
    color:white;

    text-decoration:none;

    border-radius:8px;

    transition:.25s;
}

.btn:hover{
    transform:translateY(-2px);
}

.hero{
    min-height:70vh;

    background:
        linear-gradient(
            rgba(0,0,0,.45),
            rgba(0,0,0,.45)
        ),
        url("../images/hero.jpg");

    background-size:cover;
    background-position:center;

    display:flex;
    align-items:center;

    color:white;
}

.hero .container{
    max-width:700px;
}

.hero h1{
    font-size:clamp(3rem,6vw,5rem);
    line-height:1.1;
    margin-bottom:20px;
}

.hero p{
    font-size:1.2rem;
    line-height:1.7;
    margin-bottom:30px;
}

.contacto,
.relatorios{
    padding:80px 0;
}

.contacto h2,
.relatorios h2{
    margin-bottom:25px;
}

form{
    display:flex;
    flex-direction:column;
    gap:15px;
}

input,
textarea{
    padding:12px;
    border:1px solid #ccc;
    border-radius:6px;
}

textarea{
    min-height:150px;
}

button{
    padding:12px;
    border:none;
    background:#005a9c;
    color:white;
    cursor:pointer;
    border-radius:6px;
}

.relatorios ul{
    list-style:none;
}

.relatorios li{
    margin-bottom:10px;
}

footer{
    background:#222;
    color:white;
    text-align:center;
    padding:40px 0;
}

footer a{
    color:white;
}

#formMessage{
    margin-top:15px;
    font-weight:600;
}

.success{
    color:green;
}

.error{
    color:#c62828;
}

.lista-relatorios{
    list-style:none;
    padding:0;
    margin-top:30px;
}

.lista-relatorios li{
    margin-bottom:15px;
}

.lista-relatorios a{
    display:block;
    padding:15px 20px;
    background:#f5f5f5;
    border-radius:8px;
    text-decoration:none;
    color:#333;
    transition:.2s;
}

.lista-relatorios a:hover{
    transform:translateY(-2px);
}

.logo img{
    max-height:70px;
}

#relatorioSelect{
    margin-top:20px;
    padding:12px 16px;
    font-size:16px;
    width:100%;
    max-width:300px;
    border:1px solid #ccc;
    border-radius:8px;
    background:white;
}

.servicos{
    padding:80px 0;
    background:#fafafa;
}

.servicos h2{
    text-align:center;
    margin-bottom:40px;
}

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

.card{
    background:white;
    padding:30px;
    border-radius:12px;
    box-shadow:0 4px 12px rgba(0,0,0,.08);
}

.card h3{
    margin-bottom:15px;
}

.sobre{
    padding:80px 0;
}

.sobre p{
    max-width:800px;
    margin:auto;
    text-align:center;
    line-height:1.8;
}

:root{

    --primary:#0b5c8e;
    --primary-dark:#08476d;

    --text:#222;
    --light:#f7f8fa;

}

.icon{
    font-size:2rem;
    margin-bottom:15px;
}

html{
    scroll-behavior:smooth;
}