/* ============================================================
   Extreme Multimarcas - Dark Theme
   Baseado no modelo homepage-nova.html (Raff Car)
   Cores adaptadas: Amarelo (#fdf106) → Laranja (#FF6B35)
   ============================================================ */

/* ========================
   Global: Smooth Scroll & Scrollbar
   ======================== */
html {
    scroll-behavior: smooth;
}

*::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

*::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
}

*::-webkit-scrollbar-thumb {
    background: var(--brand-orange, #FF6B35);
    border-radius: 4px;
}

*::-webkit-scrollbar-thumb:hover {
    background: #ff8c5a;
}

* {
    scrollbar-width: thin;
    scrollbar-color: var(--brand-orange, #FF6B35) rgba(0, 0, 0, 0.3);
}

/* ========================
   CSS Variables / Design Tokens
   ======================== */
:root {
    /* Paleta Extreme Multimarcas - Laranja */
    --brand-orange: #FF6B35;
    --brand-orange-dark: #E65A28;
    --brand-orange-light: #FF8C5F;
    --brand-orange-hover: #FF7A45;

    /* Dark Theme */
    --brand-dark: #1a1a1a;
    --brand-dark-soft: #2d2d2d;
    --brand-gray-dark: #3a3a3a;
    --brand-gray: #4a4a4a;

    /* Backgrounds */
    --bg-dark: #1a1a1a;
    --bg-dark-soft: #2d2d2d;
    --bg-dark-lighter: #353535;
    --bg-light: #f8f9fa;
    --bg-cream: #FFF8F0;

    /* Text */
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.8);
    --text-muted: rgba(255, 255, 255, 0.5);
    --text-dark: #1a1a1a;

    /* Borders */
    --border-color: rgba(255, 255, 255, 0.1);
    --border-orange: rgba(255, 107, 53, 0.2);

    /* WhatsApp */
    --brand-whatsapp: #25D366;
    --whatsapp-green: #25D366;

    /* Spacing & Sizing */
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;

    /* Shadows */
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
    --shadow-orange: 0 4px 20px rgba(255, 107, 53, 0.3);
    --shadow-orange-strong: 0 8px 30px rgba(255, 107, 53, 0.4);

    /* Transitions */
    --transition: all 0.3s ease;
    --transition-fast: all 0.15s ease;
}

/* ========================
   Base / Typography
   ======================== */
* {
    font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
}

h1, h2, h3, h4, h5, h6,
.hero-title,
.section-title,
.footer-title {
    font-family: 'Outfit', 'DM Sans', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    transition: var(--transition);
}

/* ========================
   Utility Classes
   ======================== */
.text-brand,
.text-orange {
    color: var(--brand-orange) !important;
}

.text-yellow {
    color: var(--brand-orange) !important;
}

.bg-brand {
    background-color: var(--brand-orange) !important;
}

.accent-line {
    width: 60px;
    height: 4px;
    background: var(--brand-orange);
    margin: 0 auto 1rem;
    border-radius: 2px;
}

/* ========================
   Buttons
   ======================== */
.btn-primary-custom {
    background: var(--brand-orange);
    border: none;
    border-radius: var(--radius);
    padding: 0.875rem 2rem;
    font-weight: 600;
    color: #fff;
    transition: var(--transition);
}

.btn-primary-custom:hover {
    background: var(--brand-orange-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-orange);
}

.btn-dark-custom {
    background: var(--brand-dark);
    border: 2px solid var(--brand-orange);
    border-radius: var(--radius);
    padding: 0.875rem 2rem;
    font-weight: 600;
    color: var(--brand-orange);
    transition: var(--transition);
}

.btn-dark-custom:hover {
    background: var(--brand-orange);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-orange);
}

.btn-outline-custom {
    border: 2px solid var(--brand-orange);
    border-radius: var(--radius);
    padding: 0.875rem 2rem;
    font-weight: 600;
    color: var(--brand-orange);
    background: transparent;
    transition: var(--transition);
}

.btn-outline-custom:hover {
    background: var(--brand-orange);
    color: #fff;
}

.btn-whatsapp {
    background: var(--whatsapp-green);
    border: none;
    border-radius: var(--radius);
    padding: 0.875rem 2rem;
    font-weight: 600;
    color: #fff;
    transition: var(--transition);
}

.btn-whatsapp:hover {
    background: #20ba5a;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

/* ========================
   Hero Section
   ======================== */
.hero-section {
    position: relative;
    padding: 3.5rem 0 3rem;
    display: flex;
    align-items: center;
    background-color: var(--bg-dark);
    background-size: cover;
    background-position: center 65%;
    background-repeat: no-repeat;
    overflow: hidden;
}

/* Subtle noise texture overlay */
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 70% 20%, rgba(255, 107, 53, 0.07) 0%, transparent 50%),
        radial-gradient(ellipse at 30% 80%, rgba(255, 107, 53, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Decorative accent line */
.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        var(--brand-orange) 0%, 
        rgba(255, 107, 53, 0.4) 30%, 
        transparent 60%);
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

/* Decorative vertical accent */
.hero-content {
    position: relative;
    z-index: 1;
    padding-left: 1.5rem;
    border-left: 3px solid var(--brand-orange);
}

.hero-eyebrow {
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--brand-orange);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.hero-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    letter-spacing: -0.5px;
}

.hero-title em {
    font-style: normal;
    color: var(--brand-orange);
    font-weight: 700;
}

.hero-divider {
    width: 50px;
    height: 3px;
    background: var(--brand-orange);
    border: none;
    margin: 1rem 0;
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.55);
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    max-width: 440px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.25rem;
}

.hero-buttons .btn-primary-custom {
    padding: 0.75rem 1.75rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 8px;
    letter-spacing: 0.3px;
}

.hero-buttons .btn-outline-custom {
    padding: 0.75rem 1.75rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 8px;
    letter-spacing: 0.3px;
    border-width: 1.5px;
}

/* Hero logo column */
.hero-logo-wrap {
    position: relative;
}

.hero-logo-wrap::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* ========================
   Sections
   ======================== */
.section {
    padding: 5rem 0;
}

.section-padding {
    padding: 5rem 0;
}

.section-dark {
    background: var(--brand-dark);
}

.section-dark-soft {
    background: var(--brand-dark-soft);
}

.section-cream {
    background: var(--bg-cream);
    color: var(--text-dark);
}

.section-cream p {
    color: #555;
}

.section-title {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-size: 2rem;
    letter-spacing: -0.3px;
}

.section-title.center {
    text-align: center;
}

.section-title span {
    color: var(--brand-orange);
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.125rem;
    max-width: 700px;
    margin: 0 auto;
}

/* ========================
   Car Cards
   ======================== */
.car-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: rgba(30, 30, 30, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                border-color 0.35s ease;
    text-decoration: none;
    color: inherit;
}

.car-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 107, 53, 0.15);
    border-color: rgba(255, 107, 53, 0.25);
    color: inherit;
    text-decoration: none;
}

.car-card-img-wrapper {
    position: relative;
    overflow: hidden;
    background: #111;
}

.car-card-img {
    aspect-ratio: 16/10;
    object-fit: cover;
    width: 100%;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.car-card:hover .car-card-img {
    transform: scale(1.06);
}

.car-card-year {
    position: absolute;
    top: 0.65rem;
    right: 0.65rem;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    letter-spacing: 0.3px;
    z-index: 2;
}

.car-card-body {
    padding: 1rem 1.1rem 1.1rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.car-card-brand {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.35rem;
}

.car-card-brand img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    opacity: 0.7;
}

.car-card-brand span {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.car-card-title {
    font-family: 'Outfit', 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.25;
    margin: 0 0 0.55rem;
    color: var(--text-primary);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.car-card-price {
    font-family: 'Outfit', 'DM Sans', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--brand-orange);
    margin-bottom: 0.65rem;
    letter-spacing: -0.3px;
}

.car-card-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-top: auto;
    padding-top: 0.65rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.car-card-specs span {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.45);
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.car-card-specs span i {
    font-size: 0.8rem;
    color: rgba(255, 107, 53, 0.5);
}

/* Featured Section Layout */
.featured-section {
    padding: 3.5rem 0 4rem;
}

.featured-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.featured-eyebrow {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--brand-orange);
    margin-bottom: 0.3rem;
}

.featured-header .section-title {
    margin-bottom: 0;
    font-size: 1.65rem;
}

.btn-ver-todos {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.5rem 0;
    transition: color 0.25s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-ver-todos:hover {
    color: var(--brand-orange);
}

.btn-ver-todos i {
    transition: transform 0.25s ease;
}

.btn-ver-todos:hover i {
    transform: translateX(3px);
}

@media (max-width: 767px) {
    .featured-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .featured-header .section-title {
        font-size: 1.35rem;
    }
}

/* ========================
   About Section (Dark)
   ======================== */
.about-section-dark {
    background: var(--bg-dark);
    position: relative;
}

.about-section-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(255, 107, 53, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.about-section-dark .container {
    position: relative;
    z-index: 1;
}

.section-eyebrow {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--brand-orange);
    margin-bottom: 0.4rem;
}

.about-img-wrap {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.about-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    pointer-events: none;
}

.about-img {
    border-radius: 10px;
    width: 100%;
    display: block;
}

.about-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 440px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.about-item {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.85rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    transition: border-color 0.25s ease;
}

.about-item:hover {
    border-color: rgba(255, 107, 53, 0.2);
}

.about-item > i {
    font-size: 1.15rem;
    color: var(--brand-orange);
    margin-top: 2px;
    flex-shrink: 0;
}

.about-item strong {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.15rem;
}

.about-item span {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.4;
}

.btn-link-arrow {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--brand-orange);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: gap 0.25s ease;
}

.btn-link-arrow:hover {
    color: var(--brand-orange-light);
    gap: 0.6rem;
}

@media (max-width: 767px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-img-wrap {
        margin-bottom: 1rem;
    }
}

/* ========================
   Testimonials
   ======================== */
.testimonials-section {
    background: rgba(22, 22, 22, 1);
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 107, 53, 0.15) 50%, transparent 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 1.5rem;
    transition: border-color 0.3s ease, transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    border-color: rgba(255, 107, 53, 0.2);
    transform: translateY(-3px);
}

.testimonial-stars {
    color: var(--brand-orange);
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
    display: flex;
    gap: 1px;
}

.testimonial-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.65;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.testimonial-author {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-primary);
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

@media (max-width: 991px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid .testimonial-card:nth-child(n+5) {
        display: none;
    }
}

@media (max-width: 575px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid .testimonial-card:nth-child(n+4) {
        display: none;
    }
}

/* ========================
   Contact
   ======================== */
.contact-section {
    background: var(--bg-dark);
}

.contact-col {
    display: flex;
    flex-direction: column;
    gap: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.contact-item:last-of-type {
    border-bottom: none;
    margin-bottom: 0.75rem;
}

.contact-item > i {
    font-size: 1.1rem;
    color: var(--brand-orange);
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.15rem;
}

.contact-item span {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.5;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-item a:hover {
    color: var(--brand-orange);
}

.contact-col .btn-whatsapp {
    margin-top: auto;
    padding: 0.75rem;
    font-size: 0.85rem;
    border-radius: 8px;
}

.contact-map {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    height: 100%;
    min-height: 380px;
}

/* ========================
   Internal Pages (Sobre, Contato)
   ======================== */

/* Page Hero - with background image (set via inline style) */
.page-hero {
    position: relative;
    padding: 7rem 0 3rem;
    background-size: cover;
    background-position: center 70%;
    background-repeat: no-repeat;
    overflow: hidden;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
        var(--brand-orange) 0%,
        rgba(255, 107, 53, 0.4) 35%,
        transparent 65%);
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.page-hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}

.page-hero-title span {
    color: var(--brand-orange);
}

.page-hero-desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    margin: 0;
}

/* Page Sections */
.page-section {
    background: var(--bg-dark);
    padding: 4rem 0;
    position: relative;
}

.page-section-alt {
    background: rgba(22, 22, 22, 1);
}

.page-section-alt::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 60% 30%, rgba(255, 107, 53, 0.04) 0%, transparent 55%);
    pointer-events: none;
}

/* Page Image */
.page-img-wrap {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.page-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    pointer-events: none;
}

.page-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

/* Page Text */
.page-text {
    font-family: 'DM Sans', sans-serif;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.93rem;
    line-height: 1.7;
}

.page-text p {
    margin-bottom: 1rem;
}

.page-text p:last-child {
    margin-bottom: 0;
}

/* Features Grid */
.page-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.page-feature-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.page-feature-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 107, 53, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.page-feature-card i {
    font-size: 1.6rem;
    color: var(--brand-orange);
    margin-bottom: 0.75rem;
    display: block;
}

.page-feature-card h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.35rem;
}

.page-feature-card p {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
    line-height: 1.5;
}

/* Generic Buttons */
.btn-accent {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    background: var(--brand-orange);
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-accent:hover {
    background: #ff8c5a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    color: #fff;
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--brand-orange);
    color: var(--brand-orange);
    transform: translateY(-2px);
}

/* CTA Bar */
.page-cta-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 2rem 2.5rem;
}

.page-cta-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
}

.page-cta-desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

.page-cta-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

/* Contact Page - Glass Card */
.contact-card-glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 1.75rem;
}

.contact-card-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.contact-card-item:first-child {
    padding-top: 0;
}

.contact-card-item:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 1.25rem;
}

.contact-card-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255, 107, 53, 0.1);
    color: var(--brand-orange);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-card-item strong {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.15rem;
}

.contact-card-item span,
.contact-card-item a {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    line-height: 1.5;
}

.contact-card-item a:hover {
    color: var(--brand-orange);
}

.contact-whats-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.8rem;
    background: #25D366;
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-whats-btn:hover {
    background: #20bd5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.25);
    color: #fff;
}

/* Contact Map */
.contact-map-wrap {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    height: 100%;
    min-height: 450px;
}

.contact-map-wrap iframe {
    width: 100%;
    height: 100%;
    min-height: 450px;
    filter: brightness(0.85) contrast(1.1);
}

/* Responsive - Internal Pages */
@media (max-width: 991px) {
    .page-cta-bar {
        flex-direction: column;
        text-align: center;
        padding: 1.75rem;
    }

    .page-cta-actions {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .page-hero {
        padding: 6rem 0 2rem;
    }

    .page-hero-content {
        text-align: center;
        max-width: 100%;
    }

    .page-hero-content .section-eyebrow {
        text-align: center;
    }

    .page-features-grid {
        grid-template-columns: 1fr 1fr;
    }

    .page-cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .contact-map-wrap {
        min-height: 300px;
    }

    .contact-map-wrap iframe {
        min-height: 300px;
    }
}

@media (max-width: 575px) {
    .page-features-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================
   Listing Page (Estoque)
   ======================== */
.listing-hero {
    background: var(--bg-dark);
    padding: 7rem 0 2.5rem;
    position: relative;
}

.listing-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(255, 107, 53, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.listing-hero .section-eyebrow {
    margin-bottom: 0.3rem;
}

.listing-hero .section-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

/* Filter Bar */
.listing-filter-bar {
    display: flex;
    gap: 1rem;
    align-items: flex-end;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
}

.listing-search-form {
    flex: 1;
    min-width: 0;
}

.listing-search-form .input-group {
    display: flex;
}

.listing-search-form .form-control {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border-radius: 8px 0 0 8px;
    padding: 0.6rem 1rem;
    font-size: 0.875rem;
}

.listing-search-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.listing-search-form .form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--brand-orange);
    box-shadow: none;
    outline: none;
}

.listing-search-form .btn-primary-custom {
    background: var(--brand-orange);
    border: none;
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.6rem 1.25rem;
    border-radius: 0 8px 8px 0;
    white-space: nowrap;
    transition: var(--transition);
}

.listing-search-form .btn-primary-custom:hover {
    background: #ff8c5a;
}

.listing-filter-selects {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 130px;
}

.filter-group label {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 500;
}

.filter-group .form-select {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border-radius: 8px;
    padding: 0.55rem 2rem 0.55rem 0.75rem;
    font-size: 0.85rem;
    appearance: auto;
    cursor: pointer;
    transition: var(--transition);
}

.filter-group .form-select:focus {
    border-color: var(--brand-orange);
    box-shadow: none;
    outline: none;
    background: rgba(255, 255, 255, 0.08);
}

.filter-group .form-select option {
    background: #1a1a1a;
    color: #fff;
}

/* Listing Section */
.listing-section {
    background: var(--bg-dark);
    padding: 1.5rem 0 4rem;
}

/* Brands */
.listing-brands {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.listing-brands a,
.listing-brands .brand-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 0.6rem 1.2rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.72rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}

.listing-brands a:hover,
.listing-brands .brand-link:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: var(--brand-orange);
    color: var(--brand-orange);
    transform: translateY(-2px);
}

.listing-brands a img,
.listing-brands .brand-link img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    opacity: 0.7;
    transition: var(--transition);
}

.listing-brands a:hover img,
.listing-brands .brand-link:hover img {
    opacity: 1;
}

/* Pagination */
.listing-pagination {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.listing-pagination .pagination {
    display: flex;
    gap: 0.35rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.listing-pagination .pagination li a,
.listing-pagination .pagination li span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.75rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
}

.listing-pagination .pagination li a:hover {
    background: rgba(255, 107, 53, 0.15);
    border-color: var(--brand-orange);
    color: var(--brand-orange);
}

.listing-pagination .pagination li.active a,
.listing-pagination .pagination li.active span {
    background: var(--brand-orange);
    border-color: var(--brand-orange);
    color: #fff;
}

/* Responsive Listing */
@media (max-width: 991px) {
    .listing-filter-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .listing-filter-selects {
        flex-wrap: wrap;
    }

    .filter-group {
        flex: 1;
        min-width: 100px;
    }
}

@media (max-width: 575px) {
    .listing-hero {
        padding: 6rem 0 1.5rem;
    }

    .listing-filter-bar {
        padding: 1rem;
    }

    .listing-filter-selects {
        flex-direction: column;
    }

    .filter-group {
        min-width: 100%;
    }
}

/* ========================
   Footer
   ======================== */
.site-footer {
    position: relative;
    background: rgba(14, 14, 14, 1);
    color: #fff;
    padding: 3.5rem 0 1.5rem;
}

.footer-accent {
    height: 2px;
    background: linear-gradient(90deg, var(--brand-orange) 0%, rgba(255, 107, 53, 0.3) 40%, transparent 70%);
    margin-bottom: 2.5rem;
}

.footer-logo {
    max-width: 70px;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.footer-desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.65;
    margin-bottom: 1.25rem;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 0.5rem;
}

.footer-social a {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
    transition: all 0.25s ease;
}

.footer-social a:hover {
    background: var(--brand-orange);
    border-color: var(--brand-orange);
    color: #fff;
    transform: translateY(-2px);
}

.footer-heading {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.25rem;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.footer-nav a {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    padding: 0.3rem 0;
    transition: color 0.2s ease;
}

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

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-contact > div {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.footer-contact i {
    font-size: 0.9rem;
    color: rgba(255, 107, 53, 0.5);
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contact span,
.footer-contact a {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.45;
    text-decoration: none;
}

.footer-contact a:hover {
    color: var(--brand-orange);
}

.footer-hours {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.footer-hours > div {
    display: flex;
    justify-content: space-between;
    padding: 0.35rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-hours > div:last-child {
    border-bottom: none;
}

.footer-hours span {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-hours span:last-child {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 1.5rem;
    margin-top: 2.5rem;
}

.footer-bottom p {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.25);
    text-align: center;
    margin: 0;
}

.footer-dev {
    margin-top: 0.6rem !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
}

.footer-dev a {
    display: inline-flex;
    align-items: center;
    transition: opacity 0.25s ease;
}

.footer-dev a:hover {
    opacity: 0.7;
}

.footer-dev-logo {
    height: 18px;
    width: auto;
    opacity: 0.5;
    transition: opacity 0.25s ease;
}

.footer-dev a:hover .footer-dev-logo {
    opacity: 0.85;
}

/* ========================
   Forms (global dark)
   ======================== */
.form-control,
.form-select {
    background-color: var(--bg-dark-soft);
    border-color: var(--border-color);
    color: var(--text-primary);
}

.form-control:focus,
.form-select:focus {
    background-color: var(--bg-dark-soft);
    border-color: var(--brand-orange);
    color: var(--text-primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
}

.form-control::placeholder {
    color: var(--text-muted);
}

/* ========================
   Map
   ======================== */
.map-container {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 3px solid var(--brand-orange);
}

.map-container iframe {
    width: 100%;
    height: 350px;
    border: 0;
}

/* ========================
   Newsletter Popup
   ======================== */
.newsletter-popup {
    position: fixed;
    bottom: 100px;
    right: 25px;
    width: 320px;
    background: var(--brand-dark);
    border-radius: var(--radius);
    box-shadow: var(--shadow-hover);
    z-index: 999;
    padding: 1.5rem;
    display: none;
    border: 2px solid var(--brand-orange);
}

.newsletter-popup h3 {
    color: var(--brand-orange);
}

.newsletter-popup p {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-popup.show {
    display: block;
    animation: slideUp 0.3s ease;
}

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

.newsletter-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-close:hover {
    color: var(--brand-orange);
}

.newsletter-popup .form-control {
    background: var(--brand-dark-soft);
    border: 1px solid var(--border-orange);
    color: #fff;
}

.newsletter-popup .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-popup .form-control:focus {
    border-color: var(--brand-orange);
    box-shadow: none;
    background: var(--brand-dark-soft);
}

/* ========================
   Pagination
   ======================== */
.pagination .page-link {
    background: var(--bg-dark-soft);
    border-color: var(--border-color);
    color: var(--text-secondary);
    transition: var(--transition);
}

.pagination .page-link:hover {
    background: var(--brand-orange);
    border-color: var(--brand-orange);
    color: #fff;
}

.pagination .page-item.active .page-link {
    background: var(--brand-orange);
    border-color: var(--brand-orange);
    color: #fff;
}

/* ========================
   Breadcrumb
   ======================== */
.breadcrumb {
    background: transparent;
    padding: 0;
}

.breadcrumb-item a {
    color: var(--brand-orange);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: var(--brand-orange-light);
}

.breadcrumb-item.active {
    color: var(--text-muted);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--text-muted);
}

/* ========================
   Accessibility / Focus States
   ======================== */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.form-control:focus-visible {
    outline: 2px solid var(--brand-orange);
    outline-offset: 2px;
}

/* ========================
   Responsive
   ======================== */
@media (max-width: 991px) {
    .hero-section {
        padding: 2.5rem 0 2rem;
    }

    .section,
    .section-padding {
        padding: 3rem 0;
    }

    .carousel-control-prev {
        left: -25px;
    }

    .carousel-control-next {
        right: -25px;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 2rem 0 1.5rem;
        text-align: center;
    }

    .hero-content {
        border-left: none;
        padding-left: 0;
        border-top: 3px solid var(--brand-orange);
        padding-top: 1.25rem;
    }

    .hero-divider {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-section .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }

    .navbar-toggler {
        border-color: var(--brand-orange);
    }

    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23FF6B35' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
}
