/* ==========================================
   RD AUTO PEÇAS - UNIFIED DARK LUXURY DESIGN SYSTEM
   Visual premium automotivo em modo escuro de alta classe
   ========================================== */

:root {
    /* Cores do Logo RD Auto Peças */
    --red-primary: #D31018;
    --red-bright: #FF2A3B;
    --red-dark: #7A000A;
    --red-gradient: linear-gradient(135deg, #FF2A3B 0%, #D31018 45%, #8B0000 100%);
    --red-glow: 0 0 25px rgba(211, 16, 24, 0.55);
    
    /* Neutros Dark Luxury */
    --bg-dark: #0A0C0F;
    --bg-surface: #12161F;
    --bg-card: #171C27;
    --bg-card-hover: #1F2635;
    --border-dark: rgba(255, 255, 255, 0.08);
    --border-red: rgba(211, 16, 24, 0.35);
    
    /* Tipografia */
    --text-primary: #FFFFFF;
    --text-secondary: #CBD5E1;
    --text-muted: #94A3B8;
    
    /* Ações */
    --whatsapp-color: #25D366;
    --whatsapp-hover: #1EBE57;
    --whatsapp-glow: 0 0 25px rgba(37, 211, 102, 0.45);
    
    /* Fontes */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Efeitos */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    --shadow-premium: 0 25px 50px -12px rgba(0, 0, 0, 0.85);
    --shadow-card-hover: 0 20px 40px -10px rgba(211, 16, 24, 0.35);
    --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background-color: var(--bg-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Tags e Títulos */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1.25rem;
    background: rgba(211, 16, 24, 0.15);
    border: 1px solid rgba(255, 42, 59, 0.4);
    color: #FF5C6C;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.1rem;
    box-shadow: 0 0 20px rgba(211, 16, 24, 0.2);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.85rem;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 720px;
    margin: 0 auto 3.5rem auto;
}

/* ==========================================
   HEADER GLASSMORPHIC
   ========================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 12, 15, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border-dark);
    padding: 0.85rem 0;
    transition: var(--transition);
}

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

.header-logo {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.header-logo-img-wrapper {
    background: #FFFFFF;
    padding: 3px 8px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.header-logo img {
    height: 38px;
    width: auto;
    object-fit: contain;
}

.header-logo-text {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 900;
    color: #FFFFFF;
    letter-spacing: -0.02em;
}

.header-logo-text span {
    background: var(--red-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 600;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a:not(.nav-cta):hover {
    color: #FFFFFF;
}

.nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red-gradient);
    transition: var(--transition);
    border-radius: 2px;
    box-shadow: var(--red-glow);
}

.nav-links a:not(.nav-cta):hover::after {
    width: 100%;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--whatsapp-color);
    color: #FFFFFF !important;
    font-weight: 800 !important;
    font-size: 0.95rem;
    padding: 0.65rem 1.4rem !important;
    border-radius: var(--radius-full);
    box-shadow: var(--whatsapp-glow);
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--whatsapp-hover);
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.6);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    gap: 6px;
    z-index: 1001;
}

.mobile-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background-color: #FFFFFF;
    transition: var(--transition);
    border-radius: 2px;
}

/* ==========================================
   HERO SECTION LUXO AUTOMOTIVO
   ========================================== */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 11rem 0 5rem 0;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    filter: contrast(1.2) brightness(0.65);
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 50% 30%, rgba(211, 16, 24, 0.22) 0%, transparent 65%),
        linear-gradient(180deg, rgba(10, 12, 15, 0.75) 0%, rgba(10, 12, 15, 0.95) 80%, #0A0C0F 100%);
    z-index: 2;
}

.hero-glow-left {
    position: absolute;
    top: 15%;
    left: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 42, 59, 0.25) 0%, transparent 70%);
    z-index: 2;
    pointer-events: none;
    filter: blur(50px);
}

.hero-glow-right {
    position: absolute;
    bottom: 5%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(211, 16, 24, 0.22) 0%, transparent 70%);
    z-index: 2;
    pointer-events: none;
    filter: blur(60px);
}

.hero .container {
    position: relative;
    z-index: 10;
    text-align: center;
}

.hero-content {
    max-width: 920px;
    margin: 0 auto 4rem auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.55rem 1.4rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 42, 59, 0.4);
    color: #FF5C6C;
    font-size: 0.92rem;
    font-weight: 800;
    border-radius: var(--radius-full);
    margin-bottom: 1.75rem;
    box-shadow: 0 0 20px rgba(211, 16, 24, 0.25);
    letter-spacing: 0.03em;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 4.2rem;
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.hero h1 .highlight {
    background: var(--red-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    filter: drop-shadow(0 4px 15px rgba(211, 16, 24, 0.45));
}

.hero-description {
    color: var(--text-secondary);
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 2.25rem;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: var(--red-gradient);
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.15rem;
    padding: 1.15rem 2.6rem;
    border-radius: var(--radius-full);
    box-shadow: var(--red-glow), 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: var(--transition);
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 100%
    );
    transform: rotate(30deg) translateY(-100%);
    transition: transform 0.8s ease;
}

.btn-primary:hover::before {
    transform: rotate(30deg) translateY(100%);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 35px rgba(255, 42, 59, 0.75), 0 15px 35px rgba(0, 0, 0, 0.6);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1.15rem 2.4rem;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

/* ESTATÍSTICAS DA HERO (PADRÃO SUCATINHA / DESMANCHE SÃO JORGE) */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding: 2.5rem 1rem 1rem 1rem;
    margin-top: 3.5rem;
    position: relative;
    background: transparent;
    border: none;
    box-shadow: none;
    border-top: 1px solid rgba(255, 42, 59, 0.25);
}

.hero-stats::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 20%;
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #FF2A3B, transparent);
    box-shadow: 0 0 12px rgba(255, 42, 59, 0.8);
}

.hero-stat {
    text-align: center;
    position: relative;
}

.hero-stat:not(:last-child)::after {
    display: none;
}

.hero-stat h3 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 2.4vw, 2.5rem);
    font-weight: 900;
    line-height: 1.1;
    color: #FF2A3B !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: #FF2A3B !important;
    margin-bottom: 0.35rem;
    letter-spacing: -0.02em;
    white-space: nowrap;
    filter: drop-shadow(0 4px 15px rgba(255, 42, 59, 0.4));
}

.hero-stat p {
    color: #94A3B8;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.01em;
}

/* ==========================================
   TRUST BAR METÁLICA (SEGUNDA DOBRA)
   ========================================== */
.trust-bar {
    background: #07090C;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.35rem 0;
}

.trust-items {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 1.05rem;
}

.trust-item svg {
    color: #FF5C6C;
    filter: drop-shadow(0 0 8px rgba(255, 42, 59, 0.6));
    flex-shrink: 0;
}

/* ==========================================
   SOBRE NÓS SECTION
   ========================================== */
.about {
    padding: 7.5rem 0;
    background: var(--bg-surface) !important;
    color: var(--text-primary) !important;
    position: relative;
    border-bottom: 1px solid var(--border-dark);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.9);
    border: 1px solid var(--border-red);
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.about-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.03);
}

.about-image-badge-left {
    position: absolute !important;
    bottom: 1rem !important;
    left: 1rem !important;
    z-index: 10;
}

.about-image-badge-left a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.35rem !important;
    background: #181D28 !important;
    color: #FFFFFF !important;
    padding: 0.45rem 1rem !important;
    border-radius: 30px !important;
    font-family: var(--font-heading) !important;
    font-weight: 800 !important;
    font-size: 0.825rem !important;
    border: 1px solid rgba(255, 42, 59, 0.6) !important;
    box-shadow: 0 0 15px rgba(255, 42, 59, 0.5), 0 5px 15px rgba(0, 0, 0, 0.6) !important;
    transition: var(--transition);
}

.about-image-badge-left a:hover {
    background: #FF2A3B !important;
    border-color: transparent !important;
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(255, 42, 59, 0.8) !important;
}

.about-image-badge {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 10;
}

.about-image-badge a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #181D28 !important;
    color: #FFFFFF !important;
    padding: 0.85rem 1.8rem !important;
    border-radius: 50px !important;
    font-family: var(--font-heading) !important;
    font-weight: 800 !important;
    font-size: 1.1rem !important;
    border: 1.5px solid rgba(255, 42, 59, 0.6) !important;
    box-shadow: 0 0 25px rgba(255, 42, 59, 0.65), 0 10px 25px rgba(0, 0, 0, 0.8) !important;
    transition: var(--transition);
}

.about-image-badge a:hover {
    background: #FF2A3B !important;
    border-color: transparent !important;
    transform: scale(1.05);
    box-shadow: 0 0 35px rgba(255, 42, 59, 0.9) !important;
}

.about-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 2.5vw, 2.6rem);
    font-weight: 900;
    margin-bottom: 1.25rem;
    line-height: 1.25;
    color: #FFFFFF !important;
}

.about-content p {
    color: var(--text-secondary) !important;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 0.95rem;
    color: #FFFFFF !important;
    background: #161C28 !important;
    padding: 0.85rem 1.1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    min-height: 56px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: var(--transition);
}

.about-feature:hover {
    border-color: rgba(255, 42, 59, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

.about-feature-icon {
    width: 28px;
    height: 28px;
    background: rgba(255, 42, 59, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-feature-icon svg {
    width: 14px;
    height: 14px;
    color: #FF2A3B;
}

/* ==========================================
   DIFERENCIAIS (TAMANHO EQUILIBRADO)
   ========================================== */
.features {
    padding: 5.5rem 0 !important;
    background: var(--bg-dark);
    text-align: center;
    border-bottom: 1px solid var(--border-dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem !important;
    margin-top: 3rem !important;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-dark);
    border-radius: 18px !important;
    padding: 2.1rem 1.75rem !important;
    text-align: left;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--red-gradient);
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-6px);
    background: var(--bg-card-hover);
    border-color: var(--border-red);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.65);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 52px !important;
    height: 52px !important;
    background: rgba(211, 16, 24, 0.12);
    border: 1px solid rgba(211, 16, 24, 0.25);
    border-radius: 12px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem !important;
    color: #FF5C6C;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--red-gradient);
    color: #FFFFFF;
    transform: scale(1.06);
    box-shadow: var(--red-glow);
}

.feature-icon svg {
    width: 26px !important;
    height: 26px !important;
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.28rem !important;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 0.65rem !important;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
}

/* ==========================================
   ESTOQUE DE PEÇAS / CATEGORIAS
   ========================================== */
.categories {
    padding: 7.5rem 0;
    background: var(--bg-surface);
    color: var(--text-primary);
    text-align: center;
    border-bottom: 1px solid var(--border-dark);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.category-card {
    background: var(--bg-card);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-lg);
    padding: 1.6rem;
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.category-card:hover {
    transform: translateY(-10px);
    border-color: #FF5C6C;
    box-shadow: var(--shadow-card-hover);
    background: var(--bg-card-hover);
}

.category-img {
    width: 100%;
    height: 200px;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 1.5rem;
    position: relative;
    background: #000000;
}

.category-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.category-card:hover .category-img img {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.category-card h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 0.6rem;
}

.category-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.category-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.85rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 800;
    transition: var(--transition);
}

.category-card:hover .category-btn {
    background: var(--red-gradient);
    border-color: transparent;
    box-shadow: var(--red-glow);
}

/* ==========================================
   COMO COMPRAR SECTION
   ========================================== */
/* ==========================================
   COMO FUNCIONA A COMPRA (LUMI NÔNE & HIGH GLOW)
   ========================================== */
.how-it-works {
    padding: 6.5rem 0 !important;
    background: #090C11 !important;
    text-align: center;
    border-bottom: 1px solid var(--border-dark);
}

.how-it-works-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 42, 59, 0.08);
    border: 1px solid rgba(255, 42, 59, 0.4);
    color: #FF5C6C;
    padding: 0.4rem 1.1rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 1.25rem;
    box-shadow: 0 0 15px rgba(255, 42, 59, 0.2);
}

.how-it-works-badge svg {
    color: #FF2A3B;
}

.steps-timeline-wrapper {
    position: relative;
    margin-top: 4.5rem;
}

.steps-connecting-line {
    position: absolute;
    top: 29px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: rgba(255, 42, 59, 0.4);
    z-index: 1;
    box-shadow: 0 0 12px rgba(255, 42, 59, 0.6);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
    position: relative;
    z-index: 2;
}

.step-card {
    background: transparent;
    border: none;
    padding: 0 0.5rem;
    text-align: center;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.step-number {
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, #FF2A3B 0%, #D31018 100%);
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 900;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.6rem auto;
    box-shadow: 0 0 25px rgba(255, 42, 59, 0.75), 0 0 45px rgba(255, 42, 59, 0.35);
    border: 3px solid #090C11;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* EFEITO DE LUZ NOS NÚMEROS AO PASSAR O MOUSE */
.step-card:hover .step-number {
    transform: scale(1.22);
    background: #FF2A3B !important;
    box-shadow: 0 0 35px #FF2A3B, 0 0 70px rgba(255, 42, 59, 0.9), inset 0 0 10px #FFFFFF !important;
    border-color: #FF5C6C;
}

.step-card:hover h3 {
    color: #FF5C6C;
    transform: translateY(-2px);
}

.step-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 0.65rem;
    transition: all 0.3s ease;
}

.step-card p {
    color: #94A3B8;
    font-size: 0.925rem;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .steps-connecting-line {
        display: none;
    }
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ==========================================
   PROVA SOCIAL / AVALIAÇÕES GOOGLE
   ========================================== */
.reviews-section {
    padding: 6.5rem 0;
    background: var(--bg-surface);
    text-align: center !important;
    border-bottom: 1px solid var(--border-dark);
}

.reviews-section .section-tag,
.reviews-section .section-title,
.reviews-section .section-subtitle {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* ==========================================
   FAQ SECTION
   ========================================== */
.faq {
    padding: 7.5rem 0;
    background: var(--bg-surface);
    text-align: center;
    border-bottom: 1px solid var(--border-dark);
}

.faq-list {
    max-width: 860px;
    margin: 4rem auto 0 auto;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active {
    border-color: #FF5C6C;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    background: var(--bg-card-hover);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 1.75rem;
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    text-align: left;
    gap: 1.25rem;
}

.faq-question svg {
    transition: var(--transition);
    color: #FF5C6C;
    flex-shrink: 0;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
}

.faq-answer-content {
    padding: 0 1.75rem 1.5rem 1.75rem;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.75;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
    padding-top: 1.25rem;
}

/* ==========================================
   LOCALIZAÇÃO E CONTATO
   ========================================== */
.location {
    padding: 7.5rem 0;
    background: var(--bg-dark);
    text-align: center;
}

.location-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3.5rem;
    margin-top: 4rem;
    align-items: center;
}

.location-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.9);
    border: 1px solid var(--border-red);
    height: 460px;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.location-info {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.location-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    background: var(--bg-card);
    padding: 1.35rem 1.6rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-dark);
}

.location-item-icon {
    width: 52px;
    height: 52px;
    background: rgba(211, 16, 24, 0.12);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF5C6C;
    flex-shrink: 0;
}

.location-item-icon svg {
    width: 26px;
    height: 26px;
}

.location-item h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 0.35rem;
}

.location-item p, .location-item a {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.65;
}

.location-item a:hover {
    color: #FF5C6C;
}

/* ==========================================
   PRE-FOOTER CTA SECTION
   ========================================== */
.cta {
    padding: 6.5rem 0;
    background: var(--bg-surface);
    position: relative;
}

.cta-box {
    background: linear-gradient(135deg, rgba(23, 28, 39, 0.95) 0%, rgba(31, 38, 53, 0.95) 100%);
    border: 1px solid var(--border-red);
    border-radius: var(--radius-lg);
    padding: 4.5rem 2.5rem;
    text-align: center;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.8);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 42, 59, 0.18) 0%, transparent 70%);
    pointer-events: none;
}

.cta-subtitle {
    color: #FF5C6C;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.95rem;
    display: block;
    margin-bottom: 1rem;
}

.cta-box h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    color: #FFFFFF;
    margin-bottom: 1.25rem;
}

.cta-box p {
    color: var(--text-muted);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2.5rem auto;
}

.cta-actions {
    display: flex;
    justify-content: center;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: #050608;
    color: var(--text-muted);
    padding: 5.5rem 0 2.5rem 0;
    border-top: 1px solid var(--border-dark);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3.5rem;
    margin-bottom: 4.5rem;
}

.footer-logo-wrapper {
    width: 76px;
    height: 76px;
    background: #FFFFFF;
    border-radius: 16px;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    margin-bottom: 1.25rem;
}

.footer-logo-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
    color: #94A3B8;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.footer-social a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #CBD5E1;
    transition: all 0.3s ease;
}

.footer-social a.social-instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%) !important;
    border-color: transparent !important;
    color: #FFFFFF !important;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(214, 36, 159, 0.6) !important;
}

.footer-social a.social-facebook:hover {
    background: #1877F2 !important;
    border-color: transparent !important;
    color: #FFFFFF !important;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(24, 119, 242, 0.6) !important;
}

.footer-social a.social-whatsapp:hover {
    background: #25D366 !important;
    border-color: transparent !important;
    color: #FFFFFF !important;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.6) !important;
}

.footer-social a.social-maps:hover {
    background: #EA4335 !important;
    border-color: transparent !important;
    color: #FFFFFF !important;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(234, 67, 53, 0.6) !important;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 1.75rem;
    position: relative;
    padding-bottom: 0.6rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background: var(--red-gradient);
    border-radius: 3px;
}

.footer-col a {
    display: block;
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 0.85rem;
}

.footer-col a:hover {
    color: #FFFFFF;
    padding-left: 6px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.95rem;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.footer-legal-links a:hover {
    color: #FF5C6C;
}

/* ==========================================
   BOTÃO FLUTUANTE DO WHATSAPP
   ========================================== */
.floating-whatsapp {
    position: fixed;
    bottom: 2.5rem;
    right: 2.5rem;
    width: 64px;
    height: 64px;
    background: var(--whatsapp-color);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--whatsapp-glow), 0 10px 25px rgba(0, 0, 0, 0.5);
    z-index: 990;
    transition: var(--transition);
    cursor: pointer;
}

.floating-whatsapp:hover {
    transform: scale(1.12);
    background: var(--whatsapp-hover);
    box-shadow: 0 0 35px rgba(37, 211, 102, 0.7);
}

.floating-whatsapp svg {
    width: 36px;
    height: 36px;
}

.floating-whatsapp::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: var(--whatsapp-color);
    opacity: 0.5;
    z-index: -1;
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* ==========================================
   MODAL LOCAL REQUEST™ ELEGANT
   ========================================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(4, 6, 10, 0.78);
    backdrop-filter: blur(12px);
    z-index: 2000;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    padding: 1rem 3rem 1rem 1rem !important;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1 !important;
    visibility: visible !important;
}

.local-request-modal {
    background: #111622 !important;
    width: 350px !important;
    max-width: 90vw !important;
    border-radius: 20px !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    box-shadow: -15px 30px 60px rgba(0, 0, 0, 0.85), 0 0 40px rgba(255, 170, 0, 0.05) !important;
    padding: 1.25rem 1.4rem !important;
    position: relative !important;
    margin-left: auto !important;
    margin-right: 0 !important;
    transform: translateX(50px) scale(0.95);
    transition: var(--transition);
}

.modal-overlay.active .local-request-modal {
    transform: translateX(0) scale(1) !important;
}

.modal-close {
    position: absolute !important;
    top: 1rem !important;
    right: 1rem !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    width: 28px !important;
    height: 28px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer;
    color: #94A3B8 !important;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--red-primary) !important;
    color: #FFFFFF !important;
    border-color: transparent !important;
}

.lr-header {
    display: flex !important;
    align-items: center !important;
    gap: 0.65rem !important;
    margin-bottom: 0.75rem !important;
}

.lr-logo-wrapper {
    position: relative !important;
    background: #FFFFFF !important;
    padding: 3px 6px !important;
    border-radius: 50% !important;
    width: 38px !important;
    height: 38px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2) !important;
}

.lr-logo {
    height: 24px !important;
    width: auto !important;
    object-fit: contain !important;
}

.lr-status-dot {
    position: absolute !important;
    bottom: -1px !important;
    right: -1px !important;
    width: 10px !important;
    height: 10px !important;
    background: #10B981 !important;
    border: 2px solid #111622 !important;
    border-radius: 50% !important;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.8) !important;
}

.lr-header-text h4 {
    font-family: var(--font-heading) !important;
    font-size: 1.05rem !important;
    font-weight: 900 !important;
    line-height: 1.15 !important;
    color: #FFFFFF !important;
}

.lr-subtitle-red {
    font-size: 0.78rem !important;
    color: #FF5C6C !important;
    font-weight: 800 !important;
    display: block !important;
}

.lr-progress-container {
    margin-bottom: 0.85rem !important;
    padding-top: 0.4rem !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.lr-progress-info {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    font-size: 0.78rem !important;
    font-weight: 800 !important;
    color: #FF5C6C !important;
    margin-bottom: 0.35rem !important;
}

.lr-red-text {
    color: #FF5C6C !important;
    font-weight: 800 !important;
}

.lr-progress-bar {
    width: 100% !important;
    height: 5px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 10px !important;
    overflow: hidden !important;
}

.lr-progress-fill {
    height: 100% !important;
    width: 33% !important;
    background: linear-gradient(90deg, #FF2A3B 0%, #D31018 100%) !important;
    border-radius: 10px !important;
    transition: width 0.4s ease !important;
    box-shadow: 0 0 10px rgba(255, 42, 59, 0.5) !important;
}

.lr-title-block {
    margin-bottom: 0.85rem !important;
}

.lr-title {
    font-family: var(--font-heading) !important;
    font-size: 1.2rem !important;
    font-weight: 900 !important;
    color: #FFFFFF !important;
    margin-bottom: 0.1rem !important;
}

.lr-subtitle {
    font-size: 0.8rem !important;
    color: #94A3B8 !important;
    margin-bottom: 0 !important;
}

.lr-form-group {
    margin-bottom: 0.65rem !important;
    text-align: left !important;
}

.lr-label {
    display: flex !important;
    align-items: center !important;
    gap: 0.4rem !important;
    font-size: 0.8rem !important;
    font-weight: 800 !important;
    color: #FFFFFF !important;
    margin-bottom: 0.25rem !important;
}

.lr-icon-red {
    color: #FF5C6C !important;
}

.lr-input {
    width: 100% !important;
    padding: 0.55rem 0.8rem !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 10px !important;
    font-family: var(--font-body) !important;
    font-size: 0.85rem !important;
    color: #FFFFFF !important;
    transition: var(--transition) !important;
    background: rgba(255, 255, 255, 0.05) !important;
}

.lr-input::placeholder {
    color: #64748B !important;
}

.lr-input:focus {
    outline: none !important;
    border-color: #FF2A3B !important;
    background: rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 0 0 3px rgba(255, 42, 59, 0.25) !important;
}

.lr-input.error {
    border-color: #EF4444 !important;
    background: rgba(239, 68, 68, 0.1) !important;
}

.lr-btn {
    width: 100% !important;
    padding: 0.75rem !important;
    background: #25D366 !important;
    color: #FFFFFF !important;
    font-family: var(--font-heading) !important;
    font-size: 0.9rem !important;
    font-weight: 900 !important;
    border: none !important;
    border-radius: 12px !important;
    cursor: pointer !important;
    transition: var(--transition) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    margin-top: 0.85rem !important;
    box-shadow: 0 0 25px rgba(37, 211, 102, 0.4) !important;
    letter-spacing: 0.03em !important;
}

.lr-btn:hover {
    background: #1EBE57 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 0 35px rgba(37, 211, 102, 0.6) !important;
}

.lr-note-box {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    background: rgba(16, 185, 129, 0.1) !important;
    border: 1px solid rgba(16, 185, 129, 0.3) !important;
    border-radius: 10px !important;
    padding: 0.55rem 0.75rem !important;
    margin-top: 0.75rem !important;
    font-size: 0.75rem !important;
    color: #E2E8F0 !important;
    line-height: 1.35 !important;
}

.lr-icon-check {
    color: #10B981 !important;
    flex-shrink: 0 !important;
}

.lr-value-prop {
    font-size: 0.775rem;
    color: #64748B;
    text-align: center;
    margin-top: 0.75rem;
    line-height: 1.4;
}

/* Modais Legais */
.legal-modal-content {
    background: #FFFFFF;
    width: 100%;
    max-width: 720px;
    max-height: 85vh;
    border-radius: var(--radius-lg);
    padding: 2.75rem;
    overflow-y: auto;
    position: relative;
    text-align: left;
}

.legal-modal-content h3 {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 900;
    margin-bottom: 1.25rem;
    color: #0F172A;
}

.legal-modal-content p {
    margin-bottom: 1.1rem;
    color: #475569;
    line-height: 1.75;
}

/* RESPONSIVIDADE */
@media (max-width: 1024px) {
    .hero h1 { font-size: 3.2rem; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .hero-stat:not(:last-child)::after { display: none; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .location-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 82%;
        max-width: 340px;
        height: 100vh;
        background: rgba(8, 10, 13, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        padding: 2.5rem;
        transition: var(--transition);
        box-shadow: -15px 0 40px rgba(0,0,0,0.8);
    }
    
    .nav-links.active { right: 0; }
    .mobile-toggle { display: flex; }
    .hero { padding: 8.5rem 0 3.5rem 0; }
    .hero h1 { font-size: 2.5rem; }
    .hero-description { font-size: 1.05rem; }
    .about-grid { grid-template-columns: 1fr; }
    .about-image img { height: 350px; }
    .features-grid { grid-template-columns: 1fr; }
    .categories-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .hero-stats { grid-template-columns: 1fr; padding: 1.5rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .cta-box h2 { font-size: 2.2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

/* ==========================================
   NOVOS COMPONENTES VISUAIS & INTERATIVOS
   ========================================== */

/* 1. FILTROS E BUSCA DO CATÁLOGO DE PEÇAS */
.catalog-filters-wrapper {
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.search-box-container {
    position: relative;
    width: 100%;
    max-width: 650px;
}

.search-box-container svg {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    transition: var(--transition);
}

.search-box-container input {
    width: 100%;
    padding: 1.1rem 1.25rem 1.1rem 3.4rem;
    background: rgba(23, 28, 39, 0.85);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-full);
    color: #FFFFFF;
    font-size: 1rem;
    font-family: var(--font-body);
    outline: none;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.search-box-container input:focus {
    border-color: var(--red-bright);
    box-shadow: 0 0 25px rgba(255, 42, 59, 0.35);
    background: rgba(23, 28, 39, 0.95);
}

.search-box-container input:focus + svg,
.search-box-container input:not(:placeholder-shown) ~ svg {
    color: var(--red-bright);
}

.category-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem;
}

.cat-tab {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-dark);
    color: var(--text-muted);
    padding: 0.6rem 1.35rem;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.cat-tab:hover {
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.cat-tab.active {
    background: var(--red-gradient);
    color: #FFFFFF;
    border-color: transparent;
    box-shadow: var(--red-glow);
}

.category-card {
    position: relative;
}

.card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 5;
    background: rgba(10, 12, 15, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 42, 59, 0.4);
    color: #FF5C6C;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.3rem 0.85rem;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.no-results-msg {
    text-align: center;
    padding: 3rem 1.5rem;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px dashed var(--border-red);
    margin-top: 1.5rem;
}

.no-results-msg p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* 2. PROVA SOCIAL & GOOGLE REVIEWS */
.reviews-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-surface) 100%);
    position: relative;
}

.google-rating-banner {
    display: flex;
    justify-content: center;
    margin-bottom: 3.5rem;
}

.google-badge-box {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: var(--bg-card);
    padding: 1.25rem 2.5rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.google-badge-box svg {
    color: #4285F4;
}

.google-score {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.score-num {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    color: #FFFFFF;
}

.stars-gold {
    color: #F4B400;
    font-size: 1.3rem;
    letter-spacing: 2px;
}

.score-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
}

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

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 42, 59, 0.4);
    box-shadow: var(--shadow-card-hover);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--red-gradient);
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: var(--red-glow);
}

.review-header h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #FFFFFF;
}

.review-stars {
    color: #F4B400;
    font-size: 0.9rem;
}

.review-card p {
    color: var(--text-secondary);
    font-size: 0.98rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.review-date {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* 3. AÇÕES DE LOCALIZAÇÃO (MAPA & COPY) */
.location-action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.75rem;
}

.btn-copy-address {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-dark);
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 0.9rem 1.5rem;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-copy-address:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* 4. TOAST NOTIFICATION */
.toast-notification {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #10B981;
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.95rem;
    padding: 0.9rem 1.8rem;
    border-radius: var(--radius-full);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.4);
    z-index: 10000;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.toast-notification.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

@media (max-width: 992px) {
    .reviews-grid { grid-template-columns: 1fr; }
    .google-badge-box { flex-direction: column; text-align: center; padding: 1.5rem; }
}

/* ==========================================
   BOTÕES DE FECHAR MODAL (VERMELHO SÓLIDO RD)
   ========================================== */
.modal-close-btn,
.modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 32px !important;
    height: 32px !important;
    background: #D31018 !important;
    color: #FFFFFF !important;
    border: 1.5px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.25rem !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    cursor: pointer !important;
    z-index: 100 !important;
    box-shadow: 0 0 12px rgba(211, 16, 24, 0.7), 0 4px 10px rgba(0, 0, 0, 0.5) !important;
    transition: all 0.25s ease !important;
    padding: 0 !important;
}

.modal-close-btn svg,
.modal-close svg {
    color: #FFFFFF !important;
    stroke: #FFFFFF !important;
}

.modal-close-btn:hover,
.modal-close:hover {
    background: #FF2A3B !important;
    transform: scale(1.15) rotate(90deg) !important;
    box-shadow: 0 0 20px rgba(255, 42, 59, 0.9), 0 6px 15px rgba(0, 0, 0, 0.7) !important;
}

/* ==========================================
   MODAIS LEGAIS (TERMOS DE USO & PRIVACIDADE)
   ========================================== */
.legal-modal-content {
    position: relative;
    background: #111622;
    border: 1px solid var(--border-red);
    border-radius: var(--radius-lg);
    width: 90%;
    max-width: 650px;
    max-height: 85vh;
    overflow-y: auto;
    padding: 2.5rem 2rem;
    color: #CBD5E1;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 42, 59, 0.2);
}

.legal-modal-content h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 900;
    color: #FFFFFF;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 42, 59, 0.3);
}

.legal-modal-content p,
.legal-modal-content ul {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #94A3B8;
}

