body {
    font-family: Helvetica, sans-serif;
    background-color: #ffffff;
}

/* Cabeçalho */
header {
    background-color: #ffffff;
}

header a {
    color: #000000;
    text-decoration: none;
    font-weight: bold;
}

/* Hero */
.hero {
    position: relative;
    width: 100%;
    min-height: 80vh;
    background-image: url('assets/img/trulha-hero.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Letras com sombra sem contorno */
.hero h1 .bestiario {
    color: rgb(255, 255, 255);
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.881);
}

.hero h1 .presidencial {
    color: rgb(255, 255, 255);
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.896);
}

.hero h1 .ano {
    color: rgb(255, 0, 0);
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.89);
}

.hero h1 {
    position: relative;
    z-index: 1;
    font-family: 'Anton', Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: clamp(2.2rem, 6vw, 5rem);
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0 1rem;
}

.seccao.display-1 {
    font-family: 'Anton', Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}

p {
    padding-left: 50px;
    padding-right: 50px;
    font-size: 1.3em;
}



.seccao.display-5 {
    font-family: 'Anton', Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}


.footer-bestiario {
    background: #f8f9fa;
    color: #444;
}

.footer-frase {
    font-family: 'Anton', sans-serif;
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    letter-spacing: 0.5px;
    color: #222;
}

.footer-nota {
    max-width: 720px;
    margin: 0 auto;
    color: #666;
}

.footer-creditos {
    color: #777;
}

.footer-link {
    color: #444;
    text-decoration: none;
    border-bottom: 1px dotted #999;
}

.footer-link:hover {
    color: #000;
    border-color: #000;
}



/* Card geral */
.candidato-card {
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Imagem circular */
.candidato-img {
    width: 130px;
    height: 130px;
    object-fit: cover;
    border-radius: 50%;
    margin: 1rem auto 0.5rem auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover leve */
.candidato-card:hover .candidato-img {
    transform: scale(1.05);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

/* Card-body */
.candidato-card .card-body {
    padding: 0.5rem 1rem 1rem;
}

/* Ajustes para mobile */
@media (max-width: 576px) {
    .candidato-img {
        width: 180px;
        height: 180px;
    }

    .candidato-card .seccao {
        font-size: 1.2rem;
    }
}



.destaque-amarelo {
    background: linear-gradient(transparent 60%,
            #ffd500 60%);
    color: #000;
}