/* Reset básico adicional para garantir consistência */
html, body {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    font-family: 'Roboto', sans-serif;
    text-align: center;
}

/* Hero Section Fullscreen */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(230, 240, 255, 0.7)),
                url('https://www.mvber.eu/perma/safe/assets/image/11.jpg') no-repeat center center;
    background-size: cover;
}


/* Secções largura total */
section {
    width: 100%;
    padding: 4rem 1rem;
}

/* Estilo para os títulos */
section h2, section h3 {
    font-weight: 700;
    color: #1e3a8a;
}

/* Botões ativos das tabs */
.tab-button.active {
    background-color: #1e3a8a;
    color: white;
}

/* Ícones Bootstrap (substituir emojis) */
.part-card h4::before {
    display: inline-block;
    font-family: "Bootstrap Icons";
    font-weight: normal;
    font-style: normal;
    line-height: 1;
    margin-right: 0.5rem;
}



/* Rodapé */
footer {
    background-color: #1f2937; /* Cinzento escuro */
    color: white;
}

/* Media Queries para ajustes finos em mobile */
@media (max-width: 768px) {
    section {
        padding: 2rem 1rem;
    }
}

.chart-container {
    max-width: 700px;
    margin: 0 auto;
}

.chart-container canvas {
    width: 100% !important;
    height: auto !important;
}
