/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

/* Header */
.main-header {
    background: #001f3f; /* Dark blue, military-style */
    color: #fff;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
}

.main-nav .nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.main-nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #ffd700; /* Gold */
}

/* Language Switcher */
.lang-switcher select {
    padding: 0.5rem;
    border-radius: 5px;
    border: none;
}

/* Adicione esta regra ao seu arquivo style.css */
.logo-img {
    height: 40px; /* Ajuste a altura conforme necessário */
    width: auto;
}

/* Hamburger Menu for Mobile */
.menu-toggle {
    display: none; /* Hidden by default */
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background: #fff;
    transition: all 0.3s;
}

/* Responsive Menu */
@media (max-width: 768px) {
    .main-nav {
        display: none;
        width: 100%;
        order: 1; /* Puts the menu below the logo on mobile */
        flex-direction: column;
        text-align: center;
        margin-top: 1rem;
    }
    
    .main-nav.active {
        display: flex;
    }

    .main-nav .nav-links {
        flex-direction: column;
        gap: 1rem;
    }

    .menu-toggle {
        display: flex;
    }
}

/* Main Content and Sections */
.main-content {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

#hero {
    text-align: center;
    padding: 4rem 2rem;
    background: #e9ecef;
    margin-bottom: 2rem;
    border-radius: 8px;
}

#hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #001f3f;
}

.report-list {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.report-item {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.report-item h3 {
    color: #001f3f;
    margin-bottom: 0.5rem;
}

.read-more {
    display: inline-block;
    margin-top: 1rem;
    color: #001f3f;
    text-decoration: none;
    font-weight: bold;
}

.read-more:hover {
    text-decoration: underline;
}

/* Footer */
.main-footer {
    text-align: center;
    padding: 1rem;
    background: #001f3f;
    color: #fff;
    margin-top: 2rem;
}