/* ESTILO ULTRA-PROFISSIONAL - DETETIVE FALCÃO NEGRO V4 */
:root {
    --bg-black-pure: #070708;
    --bg-dark-card: #131316;
    --bg-dark-gray: #1a1a1f;
    --gold-premium: #D4AF37;   
    --gold-bright: #F3E5AB;    
    --gold-dark: #aa841c;      
    --text-pure-white: #ffffff;
    --text-silver: #cfcfd6;
    --text-muted: #8e8e93;
    --font-luxury: 'Playfair Display', serif;
    --font-main: 'Montserrat', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-main);
    background-color: var(--bg-black-pure);
    color: var(--text-silver);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

h1, h2, h3, h4 {
    font-family: var(--font-luxury);
    color: var(--text-pure-white);
}

.highlight, .gold-text {
    color: var(--gold-premium);
    background: linear-gradient(135deg, var(--gold-premium), var(--gold-bright));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section { padding: 120px 0; }
.dark-bg { background-color: var(--bg-dark-gray); }
.black-bg { background-color: var(--bg-black-pure); }

.section-title { margin-bottom: 60px; }
.section-title.center { text-align: center; }

.section-tagline {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gold-premium);
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
}

.section-title h2 { font-size: 2.8rem; font-weight: 700; letter-spacing: 1px; }

.divider {
    height: 2px; width: 70px;
    background-color: var(--gold-premium);
    margin: 20px 0;
}
.divider.center { margin: 20px auto; }

.subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 650px;
    margin: 10px auto 0 auto;
    font-weight: 300;
}

/* HEADER & LOGO HIGHLIGHT */
header {
    background-color: rgba(7, 7, 8, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    position: fixed; width: 100%; top: 0; z-index: 1000;
    transition: var(--transition-smooth);
}

.header-container { display: flex; justify-content: space-between; align-items: center; height: 95px; }

.logo { display: flex; align-items: center; gap: 15px; }
.logo img { height: 60px; width: auto; filter: drop-shadow(0px 0px 8px rgba(214, 175, 55, 0.3)); object-fit: contain; }

.logo-text {
    font-family: var(--font-luxury);
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: 3px;
    background: linear-gradient(135deg, var(--gold-premium), var(--gold-bright), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0px 2px 4px rgba(0,0,0,0.8));
    text-transform: uppercase;
}

nav ul { list-style: none; display: flex; gap: 35px; }
nav a {
    font-weight: 500; text-transform: uppercase; font-size: 0.85rem;
    letter-spacing: 1.5px; color: var(--text-silver);
    transition: var(--transition-smooth);
}
nav a:hover { color: var(--gold-premium); }

/* BUTTONS */
.btn-gold {
    background: linear-gradient(135deg, var(--gold-premium), var(--gold-dark));
    color: var(--bg-black-pure);
    padding: 12px 24px; border-radius: 3px;
    font-weight: 700; font-size: 0.85rem; text-transform: uppercase;
    letter-spacing: 1px; transition: var(--transition-smooth);
    border: 1px solid var(--gold-premium);
    display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
    box-shadow: 0 4px 15px rgba(214, 175, 55, 0.2);
}
.btn-gold:hover {
    background: transparent; color: var(--gold-premium);
    box-shadow: 0 4px 20px rgba(214, 175, 55, 0.4); transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent; color: var(--gold-premium);
    padding: 12px 26px; border-radius: 3px;
    font-weight: 700; font-size: 0.85rem; text-transform: uppercase;
    letter-spacing: 1px; transition: var(--transition-smooth);
    border: 1px solid rgba(214, 175, 55, 0.6);
    display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline:hover {
    background-color: rgba(214, 175, 55, 0.1); border-color: var(--gold-premium);
    transform: translateY(-2px);
}
.btn-large { padding: 16px 36px; font-size: 0.95rem; }

/* HERO SECTION & BADGES */
.hero {
    height: 100vh; display: flex; align-items: center; position: relative;
    background: url('https://images.unsplash.com/photo-1519501025264-65ba15a82390?auto=format&fit=crop&q=80&w=1920') center/cover no-repeat fixed;
    padding-top: 95px; overflow: hidden;
}
.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(7, 7, 8, 0.95) 40%, rgba(7, 7, 8, 0.6) 100%);
    z-index: 1;
}
.hero-content { position: relative; z-index: 2; max-width: 850px; }

.badges-wrapper {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.badge {
    background-color: rgba(214, 175, 55, 0.15);
    border: 1px solid var(--gold-premium);
    color: var(--gold-premium);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    border-radius: 2px;
    transition: var(--transition-smooth);
}

.badge-link { cursor: pointer; }
.badge-link:hover {
    background-color: var(--gold-premium);
    color: var(--bg-black-pure);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(214, 175, 55, 0.3);
}

.hero h1 { font-size: 4.2rem; line-height: 1.15; margin-bottom: 25px; font-weight: 900; }
.hero p { font-size: 1.25rem; color: var(--text-silver); margin-bottom: 45px; max-width: 650px; font-weight: 300; }
.hero-buttons { display: flex; gap: 20px; }

/* SOBRE NOS */
.sobre-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; align-items: center; }
.sobre-text p { margin-bottom: 20px; font-size: 1.05rem; color: var(--text-silver); font-weight: 300; }
.features-list { list-style: none; margin-top: 35px; }
.features-list li { margin-bottom: 20px; font-size: 1.05rem; display: flex; align-items: center; gap: 15px; font-weight: 500; }
.features-list i { color: var(--gold-premium); font-size: 1.2rem; }
.sobre-stats { display: flex; flex-direction: column; gap: 25px; }
.stat-box {
    background-color: var(--bg-dark-card); border: 1px solid rgba(214, 175, 55, 0.1);
    border-left: 4px solid var(--gold-premium); padding: 40px; text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3); transition: var(--transition-smooth);
}
.stat-box:hover { border-color: rgba(214, 175, 55, 0.3); transform: translateY(-5px); }
.stat-number { display: block; font-family: var(--font-luxury); font-size: 3.5rem; font-weight: 900; color: var(--gold-premium); line-height: 1; margin-bottom: 5px; }
.stat-desc { text-transform: uppercase; font-size: 0.8rem; letter-spacing: 2px; color: var(--text-muted); font-weight: 600; }

/* CARDS */
.especialidade-content { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 60px; }
.card-feature {
    background-color: var(--bg-dark-card); padding: 50px 35px;
    border: 1px solid rgba(255, 255, 255, 0.03); border-radius: 4px; text-align: center;
    transition: var(--transition-smooth); position: relative; overflow: hidden;
}
.card-feature::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold-premium), transparent); opacity: 0; transition: var(--transition-smooth);
}
.card-feature:hover::before, .card-feature.active::before { opacity: 1; }
.card-feature:hover, .card-feature.active { transform: translateY(-10px); border-color: rgba(214, 175, 55, 0.3); box-shadow: 0 15px 40px rgba(0,0,0,0.5); }
.icon-wrapper {
    width: 80px; height: 80px; background-color: rgba(214, 175, 55, 0.05);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    margin: 0 auto 25px auto; border: 1px solid rgba(214, 175, 55, 0.15); transition: var(--transition-smooth);
}
.card-feature:hover .icon-wrapper, .card-feature.active .icon-wrapper { background-color: var(--gold-premium); border-color: var(--gold-premium); }
.card-feature:hover .icon-wrapper i, .card-feature.active .icon-wrapper i { color: var(--bg-black-pure); }
.icon-wrapper i { font-size: 2.2rem; color: var(--gold-premium); transition: var(--transition-smooth); }
.card-feature h3 { margin-bottom: 15px; font-size: 1.4rem; letter-spacing: 0.5px; }
.card-feature p { color: var(--text-muted); font-size: 0.95rem; font-weight: 300; }

/* OUTROS SERVIÇOS */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.service-card {
    background-color: var(--bg-black-pure); padding: 40px;
    border: 1px solid rgba(255,255,255,0.02); border-top: 3px solid var(--gold-premium);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2); transition: var(--transition-smooth);
}
.service-card:hover { transform: scale(1.02); border-top-color: var(--gold-bright); }
.service-card i { font-size: 2rem; color: var(--gold-premium); margin-bottom: 20px; display: block; }
.service-card h4 { font-size: 1.25rem; margin-bottom: 12px; letter-spacing: 0.5px; }
.service-card p { color: var(--text-muted); font-size: 0.95rem; font-weight: 300; }

/* GALERIA */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 25px; margin-top: 50px; }
.gallery-item { position: relative; overflow: hidden; border-radius: 2px; aspect-ratio: 16/10; border: 1px solid rgba(214, 175, 55, 0.1); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.gallery-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(transparent 30%, rgba(7, 7, 8, 0.95));
    display: flex; align-items: flex-end; padding: 30px; opacity: 0.85; transition: var(--transition-smooth);
}
.gallery-overlay span { font-family: var(--font-luxury); font-weight: 700; font-size: 1.3rem; color: var(--gold-premium); letter-spacing: 1px; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover .gallery-overlay { opacity: 1; background: linear-gradient(transparent 10%, rgba(7, 7, 8, 0.98)); }

/* FOOTER */
footer { background-color: #030304; border-top: 1px solid rgba(214, 175, 55, 0.2); padding-top: 80px; }
.footer-container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 50px; margin-bottom: 60px; }
.footer-info { max-width: 450px; }
.footer-info h3 { font-size: 1.6rem; letter-spacing: 3px; margin-bottom: 20px; }
.footer-desc { color: var(--text-muted); font-size: 0.95rem; font-weight: 300; }
.footer-contact h4 { font-size: 1.2rem; margin-bottom: 20px; color: var(--text-pure-white); }
.footer-contact p { margin-bottom: 12px; color: var(--text-silver); display: flex; align-items: center; gap: 12px; font-size: 1rem; }
.footer-contact i { color: var(--gold-premium); width: 20px; }
.working-hours { margin-top: 20px; font-weight: 700; color: var(--gold-premium) !important; }
.footer-bottom { background-color: #000000; text-align: center; padding: 25px 0; color: var(--text-muted); font-size: 0.85rem; border-top: 1px solid rgba(255,255,255,0.02); }

/* WHATSAPP FLOAT */
.whatsapp-float {
    position: fixed; width: 65px; height: 65px; bottom: 40px; right: 40px;
    background-color: #25d366; color: #FFF; border-radius: 50%;
    text-align: center; font-size: 34px; box-shadow: 0px 6px 20px rgba(0,0,0,0.6);
    z-index: 1000; display: flex; align-items: center; justify-content: center;
    transition: var(--transition-smooth);
}
.whatsapp-float:hover { transform: scale(1.1) rotate(10deg); background-color: #20ba5a; }

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .sobre-grid { grid-template-columns: 1fr; gap: 40px; }
    .sobre-stats { flex-direction: row; }
    .stat-box { flex: 1; }
    .especialidade-content { grid-template-columns: 1fr; max-width: 600px; margin: 50px auto 0 auto; }
}
@media (max-width: 768px) {
    .hero h1 { font-size: 2.8rem; }
    nav ul { display: none; }
    .hero-buttons { flex-direction: column; }
    .section-title h2 { font-size: 2.2rem; }
    .logo-text { font-size: 1.3rem; }
}