/* ============================================================
   XUXA AUTO CENTER — PREMIUM VISUAL v3
   Estilo: Playfair Display + Raleway | Dark + Gold/Orange
   ============================================================ */

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

:root {
    --primary: #1a1a1a;
    --primary-dark: #0a0a0a;
    --primary-light: #333333;
    --secondary: #d4af37;
    --secondary-dark: #b8941f;
    --accent: #FF5F1F;
    --accent-light: #FF7A42;
    --dark: #0a0a0a;
    --light: #f5f5f5;
    --gray: #666666;
    --gray-light: #e5e5e5;
    --white: #ffffff;
    --text: #1a1a1a;
    --text-secondary: #666666;
    --bg: #ffffff;
    --bg-alt: #f5f5f5;
    --border: #e5e5e5;
    --shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --radius: 5px;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Raleway', sans-serif;
    background-color: var(--light);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

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

/* ============================================================
   SCROLL PROGRESS BAR
   ============================================================ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary), var(--accent), var(--secondary));
    background-size: 200% 100%;
    z-index: 10001;
    animation: shimmerProgress 2s linear infinite;
}

@keyframes shimmerProgress {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ============================================================
   ANIMAÇÕES
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   HEADER — Premium escuro com borda gold
   ============================================================ */
.header {
    background: var(--primary);
    height: 90px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--secondary);
    transition: var(--transition);
}

.header.scrolled {
    height: 70px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

.brand {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.brand-icon {
    width: 48px;
    height: 48px;
    background: var(--secondary);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-weight: 800;
    font-size: 1.3rem;
    font-family: 'Playfair Display', serif;
    transition: var(--transition);
}

.brand:hover .brand-icon {
    transform: scale(1.05);
}

.brand-text {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--white);
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
}

.brand-text span { color: var(--secondary); }

.brand-sub {
    font-size: 0.65rem;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.nav { display: flex; gap: 35px; align-items: center; }

.nav a {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    color: var(--white);
    padding: 5px 0;
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--secondary);
    transition: width 0.3s;
}

.nav a:hover { color: var(--secondary); }
.nav a:hover::after { width: 100%; }

.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 28px;
    background: var(--secondary);
    color: var(--primary);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    border-radius: 2px;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.2);
    transition: var(--transition);
}

.header-cta:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(212, 175, 55, 0.3);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
}

/* ============================================================
   HERO — Full-screen premium com overlay
   ============================================================ */
.hero {
    min-height: 90vh;
    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.85)), var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 95, 31, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    max-width: 800px;
    padding: 20px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 25px;
    padding: 8px 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 2px;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 800;
}

.hero h1 span { color: var(--secondary); }

.hero p {
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-proof {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-proof span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-proof i { color: var(--secondary); }

/* ============================================================
   BOTÕES — Premium
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 14px 35px;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 2px;
}

.btn-primary {
    background: var(--secondary);
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    background: var(--secondary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-outline {
    border: 2px solid var(--secondary);
    color: var(--secondary);
    background: transparent;
}

.btn-outline:hover {
    background: var(--secondary);
    color: var(--primary);
    transform: translateY(-3px);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

.btn-outline-white {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    background: transparent;
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
}

/* ============================================================
   SEÇÕES — Padrão premium
   ============================================================ */
.section-padding { padding: 100px 0; }

.section-subtitle {
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
    font-family: 'Raleway', sans-serif;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header p {
    color: var(--gray);
    font-size: 16px;
    line-height: 1.8;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
}

.trust-bar .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--gray);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trust-item i { color: var(--secondary); font-size: 14px; }

/* ============================================================
   CARDS — Premium com borda superior
   ============================================================ */
.card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 30px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    height: 100%;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

/* ============================================================
   SOBRE — Stats premium
   ============================================================ */
.sobre-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.stat-card {
    text-align: center;
    padding: 40px 25px;
    background: var(--white);
    border-top: 4px solid var(--secondary);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--secondary);
    font-family: 'Playfair Display', serif;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 12px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* ============================================================
   SERVIÇOS — Cards com borda superior gold
   ============================================================ */
.services-section { background: var(--white); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    text-align: center;
    padding: 45px 30px;
    border-top: 4px solid var(--secondary);
}

.service-icon {
    font-size: 42px;
    color: var(--secondary);
    margin-bottom: 25px;
    display: block;
    transition: var(--transition);
}

.card:hover .service-icon {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary);
}

.service-card p {
    font-size: 15px;
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-link {
    color: var(--secondary);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.service-link:hover {
    gap: 12px;
}

/* ============================================================
   AVALIAÇÕES — Cards premium
   ============================================================ */
.reviews-section { background: var(--bg-alt); }

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.review-card {
    padding: 40px;
    border-left: 4px solid var(--secondary);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    background: var(--white);
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.review-stars {
    color: var(--secondary);
    margin-bottom: 15px;
    font-size: 16px;
    letter-spacing: 3px;
}

.review-text {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-style: italic;
    margin-bottom: 25px;
    color: #555;
    line-height: 1.7;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--secondary);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.review-author strong {
    display: block;
    font-size: 15px;
    color: var(--primary);
    font-family: 'Playfair Display', serif;
}

.review-author span {
    font-size: 12px;
    color: var(--gray);
}

/* ============================================================
   DIFERENCIAIS — Feature items
   ============================================================ */
.features-section { background: var(--light); }

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    background: rgba(212, 175, 55, 0.1);
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 24px;
    flex-shrink: 0;
    transition: var(--transition);
}

.feature-item:hover .feature-icon {
    background: var(--secondary);
    color: var(--primary);
    transform: scale(1.1);
}

.feature-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary);
}

.feature-content p {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.7;
}

/* ============================================================
   CONTATO — Layout premium
   ============================================================ */
.contact-section { background: var(--white); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    padding: 40px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius);
    border-top: 4px solid var(--secondary);
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--white);
}

.contact-info > p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    font-size: 15px;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-item-icon {
    background: rgba(212, 175, 55, 0.15);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 18px;
    flex-shrink: 0;
}

.contact-item-text strong {
    display: block;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
    font-weight: 600;
}

.contact-item-text span {
    font-size: 15px;
    color: var(--white);
}

.contact-item a {
    color: var(--secondary);
    transition: var(--transition);
}

.contact-item a:hover { color: var(--accent-light); }

.contact-hours {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-hours h4 {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-hours p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.contact-map {
    border-radius: var(--radius);
    overflow: hidden;
    height: 100%;
    min-height: 450px;
    box-shadow: var(--shadow);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ============================================================
   CTA — Final premium
   ============================================================ */
.cta-section {
    background: var(--primary);
    color: var(--white);
    padding: 100px 0;
    text-align: center;
    border-top: 2px solid var(--secondary);
    border-bottom: 2px solid var(--secondary);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 95, 31, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.cta-section h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 20px;
    color: var(--white);
    position: relative;
}

.cta-section p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

/* ============================================================
   FOOTER — Premium
   ============================================================ */
.footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 70px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--white);
    font-family: 'Playfair Display', serif;
}

.footer-brand span { color: var(--secondary); }

.footer-about {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.8;
}

.footer-title {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-nav a {
    display: block;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    transition: var(--transition);
}

.footer-nav a:hover { color: var(--secondary); }

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-link {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--secondary);
    color: var(--primary);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

/* ============================================================
   WHATSAPP FLUTUANTE
   ============================================================ */
.whatsapp-fixo {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: var(--transition);
    animation: whatsappPulse 2.5s infinite;
}

.whatsapp-fixo::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.3);
    animation: whatsappRing 2.5s infinite;
}

@keyframes whatsappRing {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.15); opacity: 0; }
}

.whatsapp-fixo:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 6px 35px rgba(37, 211, 102, 0.6), 0 0 0 12px rgba(37, 211, 102, 0.08); }
}

/* ============================================================
   LOADING SCREEN
   ============================================================ */
.loading-screen {
    position: fixed;
    inset: 0;
    background: var(--primary-dark);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s var(--ease), visibility 0.5s;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(212, 175, 55, 0.15);
    border-top-color: var(--secondary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================================
   RESPONSIVIDADE
   ============================================================ */
@media (max-width: 992px) {
    .section-title { font-size: 36px; }
    .hero h1 { font-size: 48px; }
    .sobre-stats { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-map { min-height: 350px; }
}

@media (max-width: 768px) {
    .nav, .header-cta { display: none; }
    .menu-toggle { display: block; }

    .nav.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 90px;
        left: 0;
        right: 0;
        background: var(--primary);
        padding: 30px;
        border-top: 2px solid var(--secondary);
        gap: 20px;
    }

    .hero h1 { font-size: 38px; }
    .hero p { font-size: 16px; }
    .section-title { font-size: 32px; }
    .section-padding { padding: 70px 0; }
    .sobre-stats { grid-template-columns: 1fr 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .features-container { grid-template-columns: 1fr; }
    .trust-bar .container { flex-direction: column; gap: 12px; }
    .footer-content { grid-template-columns: 1fr; text-align: center; }
    .social-links { justify-content: center; }
}

@media (max-width: 576px) {
    .hero { min-height: 80vh; padding: 100px 0 60px; }
    .hero h1 { font-size: 32px; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-proof { flex-direction: column; gap: 15px; align-items: center; }
    .section-padding { padding: 60px 0; }
    .btn { padding: 12px 30px; }
    .sobre-stats { grid-template-columns: 1fr; }
    .stat-card { padding: 30px 20px; }
    .stat-number { font-size: 2.2rem; }
    .cta-section { padding: 70px 0; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .whatsapp-fixo { width: 58px; height: 58px; bottom: 20px; right: 20px; }
}

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--light); }
::-webkit-scrollbar-thumb { background: #bbb; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #999; }

/* ============================================================
   SELEÇÃO DE TEXTO
   ============================================================ */
::selection {
    background: rgba(212, 175, 55, 0.2);
    color: var(--primary);
}
