:root {
    --cor: #d8eb5c;
    --bg: #050505;
    --texto: #fff;
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* IMAGENS */
img {
    max-width: 100%;
    height: auto;
}

/* BODY */
body {
    font-family: 'Dosis', sans-serif;
    color: var(--texto);
    background: var(--bg);
}

/* HEADER */
header {
    padding: 25px 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LOGO */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-fezadas {
    height: 60px;      /* 🔥 CORRIGIDO */
    width: auto;
    object-fit: contain;
    display: block;
}

/* LINKS */
.legal a {
    color: #aaa;
    text-decoration: none;
    margin-left: 15px;
    font-size: 0.9rem;
}

.legal a:hover {
    color: #fff;
}

/* MAIN */
main {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.center h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.center p {
    color: #aaa;
}