@import url('https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --cor-verde: #2b3d2f;
    --cor-verde-claro: #3f5444;
    --cor-bege: #f4f0e3;
    --cor-destaque: #dbcdac;
    --cor-alerta: #fff4e5;
    --cor-alerta-borda: #f0a500;
    --fonte-main: "Exo 2", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--fonte-main);
    line-height: 1.6;
    background-color: #fff;
    color: #333;
}

/* HEADER */
header {
    background: linear-gradient(135deg, var(--cor-verde), var(--cor-verde-claro));
    color: white;
    text-align: center;
    padding: 2.5rem 1rem;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
header img {
    max-width: 140px;
    margin-bottom: 1rem;
        border-radius: 50%;
    border: 3px solid white;
}
header h1 {
    font-size: 2.6rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}
header p {
    max-width: 750px;
    margin: 0 auto;
    font-size: 1.15rem;
}

/* SEÇÕES */
main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem;
}

section {
    margin: 2.5rem 0;
    padding: 1.5rem 2rem;
    background: var(--cor-bege);
    border-radius: 12px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.08);
}

h2 {
    font-size: 1.9rem;
    color: var(--cor-verde);
    margin-bottom: 1rem;
    border-left: 6px solid var(--cor-verde);
    padding-left: 12px;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

/* RESULTADOS */
#resultados h3 {
    background: white;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    margin: 0.6rem 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    font-weight: 500;
}

/* GIT / REDES */
#git {
    text-align: center;
}
#git a {
    display: inline-block;
    margin: 0.5rem;
    padding: 0.9rem 1.8rem;
    background: var(--cor-verde);
    color: white;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, background 0.3s;
}
#git a:hover {
    transform: translateY(-3px);
    background: var(--cor-verde-claro);
}

/* ALERTA FINAL */
section:last-of-type {
    background: var(--cor-alerta);
    border: 2px solid var(--cor-alerta-borda);
    color: #5c3b00;
    font-weight: 600;
    text-align: center;
}

/* FOOTER */
footer {
    background: var(--cor-verde);
    color: white;
    text-align: center;
    padding: 1.2rem;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    margin-top: 2rem;
}
footer a {
    color: var(--cor-destaque);
    text-decoration: none;
    font-weight: bold;
}
footer a:hover {
    text-decoration: underline;
}
