/* DESIGN SYSTEM - DARK GOLD PREMIUM */
:root {
    --bg-black: #0a0a0a;
    --bg-dark: #121212;
    --gold: #c5a059;
    --gold-glow: rgba(197, 160, 89, 0.4);
    --gold-dark: #8e6d2d;
    --text-white: #ffffff;
    --text-gray: #a0a0a0;
    --border: rgba(197, 160, 89, 0.2);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-black);
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .logo {
    font-family: 'Cinzel', serif;
    letter-spacing: 1px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gold-text { color: var(--gold); }

/* HEADER */
header {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo { font-size: 1.4rem; font-weight: 700; }
.logo span { color: var(--gold); }

.nav-links { display: flex; list-style: none; gap: 30px; }
.nav-links a {
    text-decoration: none;
    color: var(--text-white);
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: var(--transition);
}
.nav-links a:hover { color: var(--gold); }

/* BUTTONS */
.btn-gold {
    background: var(--gold);
    color: #000;
    padding: 18px 35px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    display: inline-block;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn-gold:hover {
    background: var(--text-white);
    box-shadow: 0 0 20px var(--gold-glow);
    transform: translateY(-3px);
}

.btn-gold-outline {
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 10px 20px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition);
}

.btn-gold-outline:hover { background: var(--gold); color: #000; }

/* HERO SECTION */
.hero {
    height: 95vh;
    display: flex;
    align-items: center;
    position: relative;
    background: url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?q=80&w=1920') no-repeat center center/cover;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(0deg, var(--bg-black) 10%, rgba(0,0,0,0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    border: 1px solid var(--gold);
    display: inline-block;
    padding: 6px 15px;
    font-size: 0.8rem;
    color: var(--gold);
    margin-bottom: 25px;
    border-radius: 50px;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero h1 span { color: var(--gold); display: block; }

.hero p {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto 40px;
}

.hero-btns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.btn-text {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
}

.scroll-indicator .mouse {
    width: 25px; height: 40px;
    border: 2px solid var(--border);
    border-radius: 20px;
    margin: 50px auto;
    position: relative;
}
.scroll-indicator .mouse::after {
    content: ''; width: 4px; height: 8px; background: var(--gold);
    position: absolute; left: 50%; top: 10px; transform: translateX(-50%);
    border-radius: 2px; animation: scrollAnim 2s infinite;
}

@keyframes scrollAnim { 0% { opacity: 1; top: 10px; } 100% { opacity: 0; top: 25px; } }

/* NUMBERS */
.numbers { padding: 80px 0; background: var(--bg-dark); border-bottom: 1px solid var(--border); }
.numbers-grid { display: flex; justify-content: space-between; text-align: center; flex-wrap: wrap; gap: 30px; }
.number-item span { font-size: 3rem; font-weight: 700; display: block; font-family: 'Cinzel'; }

/* SPECIALTIES */
.specs { padding: 120px 0; }
.section-header { text-align: center; margin-bottom: 70px; }
.section-header h2 { font-size: 2.5rem; margin-bottom: 15px; }

.specs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }

.spec-card {
    background: var(--bg-dark);
    padding: 50px 40px;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.spec-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
}

.spec-glow {
    position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
    opacity: 0; transition: var(--transition);
}

.spec-card:hover .spec-glow { opacity: 1; }

.spec-card i { font-size: 3rem; color: var(--gold); margin-bottom: 25px; display: block; }
.spec-card h3 { margin-bottom: 15px; font-size: 1.5rem; }
.spec-card p { color: var(--text-gray); margin-bottom: 30px; }

.link-gold { color: var(--gold); text-decoration: none; font-weight: 700; text-transform: uppercase; font-size: 0.8rem; }

/* TIMELINE */
.how-it-works { padding: 100px 0; background: var(--bg-dark); }
.timeline { display: flex; gap: 40px; margin-top: 50px; flex-wrap: wrap; }
.timeline-item { flex: 1; min-width: 250px; background: var(--bg-black); padding: 40px; border-left: 3px solid var(--gold); }
.t-number { font-size: 2rem; font-family: 'Cinzel'; color: var(--gold); margin-bottom: 15px; opacity: 0.5; }

/* FAQ */
.faq { padding: 100px 0; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.faq-item h4 { color: var(--gold); margin-bottom: 10px; font-size: 1.1rem; }
.faq-item p { color: var(--text-gray); }

/* CONTACT */
.contact { padding: 100px 0; background: var(--bg-dark); }
.contact-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 80px; }
.contact-form input, .contact-form textarea {
    width: 100%; background: var(--bg-black); border: 1px solid var(--border);
    padding: 15px; margin-bottom: 20px; color: white; outline: none;
}
.btn-gold-full {
    width: 100%; background: var(--gold); border: none; padding: 20px; font-weight: 700; cursor: pointer;
}

.map-wrapper { border-radius: 8px; overflow: hidden; margin-top: 20px; border: 1px solid var(--border); }
.link-route { color: var(--gold); display: inline-block; margin-top: 15px; text-decoration: none; font-weight: 600; }

/* WA FLOAT */
.wa-float {
    position: fixed; bottom: 30px; right: 30px; background: #25d366; color: white;
    width: 65px; height: 65px; border-radius: 50%; display: flex; align-items: center;
    justify-content: center; font-size: 32px; z-index: 1000; box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

/* SEO TEXT BLOCK */
.seo-text-block { padding: 60px 0; text-align: center; background: #050505; color: #333; }
.seo-text-block h3 { margin-bottom: 15px; font-size: 1.2rem; }
.seo-text-block p { max-width: 900px; margin: 0 auto; font-size: 0.9rem; line-height: 1.8; }

/* FOOTER */
footer { padding: 80px 0 20px; border-top: 1px solid var(--border); }
.footer-content { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 40px; margin-bottom: 50px; }
.f-links { display: flex; flex-direction: column; gap: 10px; }
.f-links a { color: var(--text-gray); text-decoration: none; }
.footer-bottom { text-align: center; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.05); font-size: 0.8rem; color: var(--text-gray); }

/* RESPONSIVE */
@media (max-width: 768px) {
    .nav-links, header .btn-gold-outline { display: none; }
    .hero-btns { flex-direction: column; }
    .contact-grid { grid-template-columns: 1fr; }
    .numbers-grid { flex-direction: column; }
}
/* SEÇÃO AUTORIDADE */
.authority { padding: 100px 0; background: var(--bg-black); }
.authority-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center; }

.auth-img { position: relative; }
.auth-img img { width: 100%; border-radius: 8px; border: 1px solid var(--border); }
.auth-experience { 
    position: absolute; bottom: -20px; right: -20px; 
    background: var(--gold); color: #000; padding: 20px; 
    border-radius: 4px; text-align: center;
}
.auth-experience span { display: block; font-size: 1.5rem; font-weight: 800; font-family: 'Cinzel'; }

.auth-text h2 { font-size: 2.5rem; margin: 20px 0; line-height: 1.2; }
.auth-text p { color: var(--text-gray); margin-bottom: 20px; }

.auth-list { margin-top: 30px; }
.auth-list-item { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; font-weight: 600; }
.auth-list-item i { color: var(--gold); }

/* SEO KEYWORDS SECTION */
.seo-keywords-section { padding: 60px 0; border-top: 1px solid var(--border); }
.keywords-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; }
.keyword-item h4 { color: var(--gold); margin-bottom: 10px; border-bottom: 1px solid var(--border); padding-bottom: 10px; }
.keyword-item p { font-size: 0.9rem; color: var(--text-gray); }

/* AJUSTE RESPONSIVO EXTRA */
@media (max-width: 768px) {
    .authority-grid { grid-template-columns: 1fr; }
    .auth-img { margin-bottom: 40px; }
    .auth-experience { right: 0; bottom: 0; }
}