/* =========================
   RESET GLOBAL
========================= */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* =========================
   BODY
========================= */
body{
    background: #f0f2f5;
    font-family: Arial, Helvetica, sans-serif;
    color: #333;
}

/* =========================
   TIPOGRAFIA
========================= */
h1, h2, h3, h4{
    font-weight: 600;
    color: #222;
}

p{
    font-size: 14px;
    line-height: 1.5;
}

/* =========================
   LINKS
========================= */
a{
    text-decoration: none;
    color: inherit;
}

/* =========================
   BOTÕES PADRÃO
========================= */
button{
    cursor: pointer;
    border: none;
    border-radius: 8px;
    padding: 10px 15px;
    font-weight: bold;
    transition: 0.2s;
}

button:hover{
    opacity: 0.9;
}

/* =========================
   INPUTS
========================= */
input, select, textarea{
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
    outline: none;
    margin-bottom: 10px;
    font-size: 14px;
}

input:focus, textarea:focus, select:focus{
    border-color: #ff6600;
}

/* =========================
   CONTAINER PADRÃO
========================= */
.container{
    padding: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

/* =========================
   CENTRALIZAR (LOGIN)
========================= */
.center{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* =========================
   CARD PADRÃO
========================= */
.card{
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.card.destaque{
    border-left: 5px solid #ff6600;
}

/* =========================
   GRID (DEPARTAMENTOS)
========================= */
.grid-lideranca{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
}

/* =========================
   FEED (BASE)
========================= */
.feed{
    max-width: 600px;
    margin: 0 auto;
}

/* =========================
   SCROLL SUAVE
========================= */
html{
    scroll-behavior: smooth;
}