/* Reset e variáveis CSS */
:root {
    --primary-color: #F2C017; /* Amarelo dourado principal */
    --secondary-color: #2c2c2c; /* Cinza escuro */
    --accent-color: #4a4a4a; /* Cinza médio */
    --text-color: #F2C017; /* Amarelo dourado para texto */
    --light-text: #ffffff; /* Branco */
    --dark-text: #ffffff; /* Branco para texto escuro */
    --whatsapp-green: #25d366;
    --gradient-primary: linear-gradient(135deg, #2c2c2c 0%, #4a4a4a 50%, #666666 100%);
    --gradient-secondary: linear-gradient(135deg, #F2C017 0%, #F4D03F 100%);
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 8px 15px rgba(0, 0, 0, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background: var(--light-text);
    margin: 0;
    padding: 0;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: var(--gradient-primary);
    box-shadow: var(--shadow);
    border-bottom: 3px solid var(--primary-color);
    margin: 0;
    padding: 0;
}

.top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo a {
    text-decoration: none;
    color: var(--light-text);
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.logo-text {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Section */
.hero {
    margin-top: 0;
    background: var(--secondary-color);
    color: var(--light-text);
    padding: 9rem 2rem 4rem;
    display: flex;
    align-items: center;
    min-height: 60vh;
    position: relative;
    overflow: hidden;
    border-top: none;
    box-sizing: border-box;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="%232c2c2c" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    flex: 1;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--whatsapp-green);
    color: var(--light-text);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    animation: pulse 2s infinite;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    background: #128c7e;
}

.hero-placeholder {
    flex: 1;
    background: linear-gradient(135deg, rgba(44, 44, 44, 0.9) 0%, rgba(74, 74, 74, 0.7) 100%);
    border-radius: 20px;
    margin-left: 2rem;
    min-height: 300px;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(242, 192, 23, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-placeholder::before {
    content: '🕵️‍♂️';
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.2);
    font-size: 4rem;
    opacity: 0.8;
    animation: float 3s ease-in-out infinite, pulse 4s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(242, 192, 23, 0.5));
}

/* Elementos decorativos do detetive */
.hero-placeholder::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 15%;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(242, 192, 23, 0.8) 0%, rgba(242, 192, 23, 0.4) 70%, transparent 100%);
    border-radius: 50%;
    animation: rotate 8s linear infinite;
    opacity: 0.6;
}

.hero-placeholder .detective-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

/* Lupa de aumento */
.hero-placeholder .magnifying-glass {
    position: absolute;
    top: 15%;
    left: 20%;
    width: 40px;
    height: 40px;
    opacity: 0.7;
    animation: bounce 5s ease-in-out infinite;
}

.hero-placeholder .magnifying-glass::before {
    content: '🔍';
    font-size: 2rem;
    position: absolute;
    animation: spin 6s linear infinite;
}

/* Documentos */
.hero-placeholder .documents {
    position: absolute;
    bottom: 25%;
    right: 20%;
    opacity: 0.6;
    animation: slideUp 4s ease-in-out infinite;
}

.hero-placeholder .documents::before {
    content: '📄';
    font-size: 1.8rem;
    position: absolute;
    animation: wiggle 3s ease-in-out infinite;
}

.hero-placeholder .documents::after {
    content: '📋';
    font-size: 1.5rem;
    position: absolute;
    top: -20px;
    left: -15px;
    animation: wiggle 3s ease-in-out infinite 0.5s;
}

/* Câmera */
.hero-placeholder .camera {
    position: absolute;
    bottom: 40%;
    left: 15%;
    opacity: 0.7;
    animation: flash 7s ease-in-out infinite;
}

.hero-placeholder .camera::before {
    content: '📷';
    font-size: 1.6rem;
    position: absolute;
}

/* Mapa */
.hero-placeholder .map {
    position: absolute;
    top: 60%;
    right: 25%;
    opacity: 0.6;
    animation: scale 6s ease-in-out infinite;
}

.hero-placeholder .map::before {
    content: '🗺️';
    font-size: 1.4rem;
    position: absolute;
}

/* Luva */
.hero-placeholder .glove {
    position: absolute;
    top: 25%;
    right: 30%;
    opacity: 0.8;
    animation: rotate 10s linear infinite reverse;
}

.hero-placeholder .glove::before {
    content: '🧤';
    font-size: 1.2rem;
    position: absolute;
}

/* Partículas de fundo */
.hero-placeholder .particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(242, 192, 23, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(242, 192, 23, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(242, 192, 23, 0.1) 0%, transparent 50%);
    animation: particleFloat 12s ease-in-out infinite;
}

/* WhatsApp Flutuante */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: var(--light-text);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.5rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    animation: bounceIn 1s ease-out, pulse-glow 2s infinite;
}

.whatsapp-float a:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-hover);
}

/* Seções de Conteúdo */
.seo-content {
    padding: 4rem 2rem;
    background: var(--secondary-color);
    color: var(--light-text);
    border-top: 3px solid var(--primary-color);
}

.google-maps {
    padding: 4rem 2rem;
    background: var(--secondary-color);
    color: var(--light-text);
    border-top: 3px solid var(--primary-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.seo-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-align: center;
}

.seo-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--light-text);
}

.seo-content a {
    color: var(--light-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.seo-content a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.cta-section {
    text-align: center;
    margin: 3rem 0;
}

/* Google Maps */
.google-maps h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.map-container {
    display: flex;
    justify-content: center;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-container iframe {
    width: 100%;
    max-width: 800px;
    height: 450px;
    border: none;
}

/* Footer */
footer {
    background: var(--secondary-color);
    color: var(--light-text);
    padding: 3rem 2rem 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-section p, .footer-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: var(--light-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--text-color);
}

.business-hours p {
    margin-bottom: 0.3rem;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Mapa do Site */
.sitemap {
    padding: 6rem 2rem 4rem;
    background: var(--light-text);
    border-top: 3px solid var(--primary-color);
}

.sitemap h1 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--secondary-color);
    font-size: 2.5rem;
}

.sitemap-section {
    margin-bottom: 3rem;
}

.sitemap-section h2 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

.sitemap-section h3 {
    color: var(--primary-color);
    margin: 1.5rem 0 1rem;
    font-size: 1.3rem;
    font-weight: bold;
}

.sitemap-section ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 0.5rem;
}

.sitemap-section li a {
    color: var(--secondary-color);
    text-decoration: none;
    padding: 0.5rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.sitemap-section li a:hover {
    background-color: rgba(233, 69, 96, 0.1);
}

/* Utilitários */
.container {
    max-width: 1200px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* Scrollbar customizada */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-text);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}
