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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0a0a0a;
    color: #e0e0e0;
    line-height: 1.6;
}

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

.main-header {
    background-color: #0a192f;
    padding: 20px 0;
    border-bottom: 2px solid #d4af37;
}

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

.main-header h1 {
    font-size: 1.5em;
    color: #d4af37;
}

nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #d4af37;
}

.hero-section {
    padding: 60px 0;
    text-align: center;
}

.hero-section .logo-img {
    width: 200px;
    height: 200px;
    margin-bottom: 20px;
}

.hero-section h2 {
    font-size: 2em;
    color: #d4af37;
    margin-bottom: 15px;
}

.btn-dourado {
    display: inline-block;
    background-color: #d4af37;
    color: #0a0a0a;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    margin-top: 20px;
    transition: background-color 0.3s;
}

.btn-dourado:hover {
    background-color: #b8941f;
}

.content-section {
    padding: 50px 0;
}

.content-section h2 {
    font-size: 1.8em;
    color: #d4af37;
    margin-bottom: 25px;
    text-align: center;
}

.bg-dark {
    background-color: #111;
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
    text-align: center;
}

.servico-item {
    background-color: #0a192f;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #333;
    transition: transform 0.3s, border-color 0.3s;
}

.servico-item:hover {
    transform: translateY(-5px);
    border-color: #d4af37;
}

footer {
    background-color: #0a192f;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid #d4af37;
    margin-top: 40px;
    color: #d4af37;
}
