/* Reset Básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: #0f1115; /* Fundo bem escuro */
    color: #e0e0e0; /* Texto claro */
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Cabeçalho */
header {
    background-color: #08090a;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #222;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    color: #fff;
    font-weight: 300;
}

.logo span {
    color: #d4af37; /* Dourado */
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #d4af37;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url("https://www.elitedetetives.com.br/blog/wp-content/uploads/2013/04/o.jpg")
      center/cover;
  height: 80vh;
  display: flex;
  align-items: center;
  text-align: center;
}
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #fff;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #bbb;
}

/* Botões */
.btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: #d4af37;
    color: #111;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #b5952f;
}

/* Títulos das Seções */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #d4af37;
}

/* Serviços */
.services {
    padding: 80px 0;
    background-color: #14171c;
}

.services-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.service-card {
    background-color: #1f2329;
    padding: 30px;
    border-radius: 8px;
    width: 30%;
    min-width: 300px;
    text-align: center;
    border-top: 4px solid #d4af37;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card h3 {
    margin-bottom: 15px;
    color: #fff;
}

/* Sobre */
.about {
    padding: 80px 0;
    text-align: center;
}

.about p {
    max-width: 800px;
    margin: auto;
    font-size: 1.1rem;
}

/* Contato */
.contact {
    padding: 80px 0;
    background-color: #14171c;
}

.contact p {
    text-align: center;
    margin-bottom: 30px;
}

form {
    max-width: 600px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input, textarea {
    width: 100%;
    padding: 15px;
    background-color: #0f1115;
    border: 1px solid #333;
    color: #fff;
    border-radius: 5px;
    font-size: 1rem;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #d4af37;
}

/* Rodapé */
footer {
    background-color: #08090a;
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #222;
    font-size: 0.9rem;
    color: #777;
}

/* Responsividade Básica */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
    }
    .hero-content h2 {
        font-size: 2rem;
    }
    .service-card {
        width: 100%;
    }
}