/* Variáveis de Cores e Estilos */
:root {
    --primary-color: #0b2c5c; /* Azul marinho institucional */
    --secondary-color: #f7b500; /* Amarelo/Dourado marcante */
    --accent-color: #d32f2f; /* Vermelho para alertas/denúncias */
    --bg-color: #f8f9fa;
    --text-color: #333333;
    --white: #ffffff;
    --font-main: 'Poppins', sans-serif;
}

/* Reset e Configurações Básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Tipografia */
h1, h2, h3 {
    font-weight: 800;
    line-height: 1.2;
}

/* Navegação */
.navbar {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-name {
    font-size: 1.2rem;
    font-weight: 600;
}

.logo-number {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 800;
    font-size: 1.2rem;
}

.nav-menu {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--secondary-color);
}

.btn-outline {
    border: 2px solid var(--secondary-color);
    padding: 8px 16px;
    border-radius: 30px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--white);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a4a8f 100%);
    color: var(--white);
    padding: 4rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.highlight {
    color: var(--secondary-color);
}

.subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.number-block {
    background-color: var(--white);
    color: var(--primary-color);
    display: inline-block;
    padding: 10px 30px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 2rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.number-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.number-value {
    display: block;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    color: var(--primary-color);
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.photo-placeholder {
    width: 100%;
    max-width: 400px;
    height: 500px;
    background-color: rgba(255,255,255,0.1);
    border: 2px dashed rgba(255,255,255,0.5);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    color: rgba(255,255,255,0.7);
}

/* Ações / Propostas */
.actions {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Denúncia */
.denuncia-section {
    background-color: #e9ecef;
    padding: 4rem 0;
    text-align: center;
}

.denuncia-content {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-top: 5px solid var(--accent-color);
}

.denuncia-content h2 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.denuncia-content p {
    margin-bottom: 2rem;
}

.btn-alert {
    background-color: var(--accent-color);
    color: var(--white);
}

/* Footer */
footer {
    background-color: #061833;
    color: rgba(255,255,255,0.7);
    padding: 3rem 0 1rem;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 2rem;
}

.footer-info h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-social a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

.tse-compliance {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1rem;
    font-size: 0.8rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: var(--primary-color);
        padding: 20px 0;
        text-align: center;
    }
    
    .nav-menu.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .number-block {
        margin: 0 auto 2rem;
    }
}

/* Adicione no final do style.css */
.hero-photo {
    width: 100%;
    max-width: 400px; /* Impede que a imagem fique gigante em telas de desktop */
    height: auto; /* Garante que a foto mantenha a proporção original e não achate */
    border-radius: 16px; /* Quebra as pontas duras do formato quadrado */
    box-shadow: 0 15px 35px rgba(0,0,0,0.3); /* Cria profundidade contra o fundo azul */
    object-fit: cover;
}