/* ==========================================
   1. REGRAS GERAIS E RESET
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #fff;
    color: #000;
    line-height: 1.8;
}

/* ==========================================
   2. ESTILOS DA HOME (index.html)
   ========================================== */
body.home {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(180deg, #0d2577 0%, #020c2e 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    padding: 20px;
}

.logo-circle {
    background-color: #d46c30;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.logo-circle img {
    width: 110px;
}

.slogan {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 4px;
    line-height: 1.3;
    text-transform: uppercase;
}

body.home h1 {
    font-size: 20px;
    font-weight: 800;
    color: #ffff04;
    margin-bottom: 15px;
    text-transform: uppercase;
}

p.subtitle {
    font-family: 'Libre Baskerville', serif;
    font-size: 16px;
    line-height: 1.4;
    color: #fff;
    max-width: 350px;
    margin-bottom: 15px;
}

.highlight {
    color: #ffff04;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.btn {
    display: block;
    width: 100%;
    max-width: 350px;
    background-color: #d46c30;
    color: #fff;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 18px;
    padding: 9px;
    border-radius: 50px;
    margin-top: 20px;
    margin-bottom: 5px;
    transition: 0.3s;
}

.btn:hover {
    background-color: #b5531d;
    transform: scale(1.02);
}

.social-icons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.social-icons a {
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #ffff04;
}

/* ==========================================
   3. ESTILOS DE CABEÇALHO E RODAPÉ INTERNOS
   ========================================== */
header {
    background: linear-gradient(180deg, #0d2577 0%, #020c2e 100%);
    padding: 20px;
    text-align: center;
    color: #fff;
}

header a {
    color: #ffff04;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 14px;
}

.logo-mini {
    width: 120px;
    margin-bottom: 10px;
}

header h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #ffffff;
    margin-top: 10px;
}

footer {
    text-align: center;
    padding: 40px 20px;
    background: #23213b;
    margin-top: 50px;
}

footer a {
    display: inline-block;
    color: #fff;
    background: #d46c30;
    padding: 10px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/* ==========================================
   4. ESTILOS DA PÁGINA "PROPOSTAS"
   ========================================== */
body.propostas {
    font-family: 'Libre Baskerville', serif;
}

body.propostas header h1 {
    font-size: 42px;
    line-height: 1;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 10px 20px;
}

.eixo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 18px;
    color: #000;
    margin-bottom: 1px;
    margin-top: 50px;
}

.titulo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 200;
    font-size: 18px;
    color: #000;
    margin-bottom: 5px;
    text-transform: uppercase;
    line-height: 1;
    border-top: 3px solid #cccccc; /* Espessura de 1px e cor cinza claro */
    padding-top: 10px;             /* Espaçamento entre a linha e o texto do título */
}

.subtitulo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 24px;
    color: #0d2577;
    margin-top: 15px;
    margin-bottom: 30px;
    line-height: 1.2;
}

.proposta {
    margin-bottom: 25px;
}

.texto {
    font-size: 16px;
}

.numero {
    font-weight: bold;
    font-family: 'Libre Baskerville', serif;
}

/* ==========================================
   5. ESTILOS DA PÁGINA "QUEM SOMOS"
   ========================================== */
body.quem-somos {
    font-family: 'Libre Baskerville', serif;
}

body.quem-somos header h1 {
    line-height: 1.0;
    font-size: 46px;
}

.intro {
    max-width: 800px;
    margin: 20px auto;
    padding: 0 20px;
    text-align: left;
    font-size: 15px;
    line-height: 1.6;
}

.grupo {
    margin-top: 50px;
    padding: 0 10%;
}

.grupo h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #0d2577;
    border-bottom: 3px solid #d46c30;
    padding-bottom: 10px;
    margin-bottom: 40px;
    line-height: 1.3;
}

.grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 600px;
    margin: 0 auto;
}

.card {
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

.foto-candidato {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #23213b;
    display: block;
}

.info {
    padding: 20px;
    background: #f9f9f9;
    text-align: center;
}

.nome {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    margin-bottom: 10px;
    line-height: 1.2;
}

.nome .primeiro {
    font-weight: 800;
    color: #0d2577;
}

.nome .segundo {
    font-weight: 300;
    color: #0d2577;
}

.bio {
    font-family: 'Libre Baskerville', serif;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    text-align: left;
}