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

body {
    font-family: 'Rawline', 'Raleway', sans-serif;
    background-color: #f2f2f2;
    color: #333;
}

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

/* Header Estilo GOV.BR Imperial */
#header-gov {
    background-color: #ffffff;
    border-bottom: 4px solid #c5a059; /* Faixa Ouro */
    padding: 15px 0;
}

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

.logo-area {
    display: flex;
    align-items: center;
}

.main-logo {
    height: 60px;
}

.divider {
    width: 1px;
    height: 40px;
    background: #ccc;
    margin: 0 15px;
}

.portal-title .sub {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    color: #666;
}

.portal-title .main {
    font-weight: 700;
    font-size: 18px;
    color: #00441b; /* Verde Imperial */
}

/* Hero Section */
.hero-section {
    padding: 60px 0;
    text-align: center;
}

.hero-section h1 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #111;
}

.search-bar {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
}

.search-bar input {
    flex: 1;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 4px 0 0 4px;
}

.search-bar button {
    padding: 15px 30px;
    background-color: #00441b;
    color: white;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-weight: bold;
}

/* Grid de Serviços */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: 0.3s;
    border-top: 5px solid #00441b;
}

.card:hover {
    transform: translateY(-5px);
    border-top-color: #c5a059;
}

/* Footer */
#footer-gov {
    background-color: #00441b;
    color: white;
    padding: 30px 0;
    text-align: center;
    margin-top: 50px;
}