@import url('https://fonts.googleapis.com/css2?family=Kalam:wght@300;400;700&display=swap');

:root {
    --cor-primaria: #d9d9d9;   /* cinza claro (destaque suave) */
    --cor-secundaria: #e6e6e6; /* cinza claro */
    --cor-escura: #1a1a1a;     /* cinza escuro */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Kalam", cursive;
}

body {
    min-height: 100vh;
    background: linear-gradient(
        0deg,
        #f2f2f2 0%,
        #fafafa 50%,
        #ffffff 100%
    );
}

/* ===== HEADER ===== */
.topo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    padding: 0 30px;
    border-bottom: 3px solid #3068cf;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    z-index: 10;
}

.titulo {
    font-size: 18px;
    font-weight: bold;
    color: #3068cf;
}

.logos {
    position: absolute;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo-conder {
    height: 26px;
}

.logo-governo {
    height: 60px;
}

/* ===== CONTAINER ===== */
.container {
    min-height: 100vh;
    padding-top: 110px;
    padding-bottom: 60px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;

    justify-items: center;
    align-items: start;
    text-align: center;
}

/* ===== COLUNAS ===== */
.coluna {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.coluna h4 {
    color: #3068cf;
}

/* ===== ESPAÇO RESERVADO ===== */
.espaco-imagem {
    height: 160px;
    margin-bottom: 10px;
}

.espaco-ultima {
    height: 160px;
    margin-bottom: 50px;
}



/* ===== IMAGEM CENTRAL ===== */
.img {
    height: 160px;
    width: 160px;
    background-image: url('./perfil.png');
    background-size: cover;
    border-radius: 50%;
    border: 3px solid var(--cor-primaria);
    animation: mudarCor 2s infinite;
    margin-bottom: 50px;
}

/* ===== BOTÕES ===== */
.botao {
    width: 320px;
    height: 35px;
    border: 2px solid #3068cf;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;

    background: linear-gradient(
        90deg,
        #ffffff,
        #e6e6e6
    );

    box-shadow: 5px 4px 2px rgba(0,0,0,0.15);
    transition: all 0.2s ease;
}

.botao span {
    font-size: 20px;
    color: #3068cf;
}

.botao:hover {
    background: #3068cf;
    transform: scale(0.97);
}

.botao:hover span {
    color: #ffffff;
}

/* ===== FOOTER ===== */
.rodape-fixo {
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 15px 0;
    text-align: center;
    background: #e0e0e0;
    color: #3068cf;
}

/* ===== ANIMAÇÃO ===== */
@keyframes mudarCor {
    0%   { border-color: #e0e0e0; }
    25%  { border-color: #3068cf; }
    50%  { border-color: #487bfb; }
    75%  { border-color: #3068cf; }
    100% { border-color: #e0e0e0; }
}
