/* style.css */

:root {
    /* Paleta de Cores */
    --color-bg: #0B0B0B;
    --color-bg-secondary: #141414;
    --color-white: #FFFFFF;
    --color-text-muted: #A0A0A0;
    --color-accent-yellow: #FFC107;
    --color-accent-blue: #0057FF;
    --color-gray: #F5F5F5;
    --color-whatsapp: #25D366;
    --color-whatsapp-hover: #1EBE5A;
    
    /* Gradientes e Sombras */
    --gradient-hero: linear-gradient(to right, rgba(11, 11, 11, 0.9) 0%, rgba(11, 11, 11, 0.4) 60%, rgba(11, 11, 11, 0.2) 100%);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.5);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.7);
    
    /* Tipografia */
    --font-main: 'Inter', sans-serif;
    
    /* Transições */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Reset Básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

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

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

ul {
    list-style: none;
}

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

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

.section-padding {
    padding: 100px 0;
}

/* =========================================
   Typography & Titles
========================================= */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

h1, .hero-title {
    opacity: 0.9;
}

h2 {
    opacity: 1;
    font-weight: 800;
    letter-spacing: -0.025em;
}

.section-title h2 {
    font-size: 2.85rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 16px;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.section-title h2 span {
    background: linear-gradient(135deg, #FFD54F 0%, var(--color-accent-yellow) 50%, #FFA000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.section-title p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* =========================================
   Buttons
========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--transition-normal);
    gap: 10px;
    border: none;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn:active {
    transform: translateY(0);
}

.btn-primary {
    background-color: var(--color-accent-blue);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: #0046CC;
}

.btn-whatsapp {
    background-color: var(--color-whatsapp);
    color: var(--color-white);
}

.btn-whatsapp:hover {
    background-color: var(--color-whatsapp-hover);
}

.btn-whatsapp-transparent {
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    color: var(--color-white);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-weight: 600;
}

.btn-whatsapp-transparent svg {
    fill: var(--color-white);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), fill 0.25s ease;
}

.btn-whatsapp-transparent:hover {
    background-color: var(--color-white);
    border-color: var(--color-white);
    color: #0B0B0B;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.25);
}

.btn-whatsapp-transparent:hover svg {
    fill: var(--color-whatsapp);
    transform: scale(1.15) rotate(-6deg);
}

.btn-danger {
    background: linear-gradient(135deg, #FF1744 0%, #D50000 100%);
    color: var(--color-white);
    font-weight: 700;
    animation: dangerPulse 2.5s infinite;
}

.btn-danger svg {
    transition: transform 0.3s ease;
}

.btn-danger:hover {
    background: linear-gradient(135deg, #FF3D00 0%, #E53935 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 28px rgba(213, 0, 0, 0.5);
}

.btn-danger:hover svg {
    animation: ringShake 0.5s ease-in-out;
}

.btn-danger-glow {
    box-shadow: 0 0 20px rgba(229, 57, 53, 0.45);
}

.btn-danger-glow:hover {
    box-shadow: 0 12px 28px rgba(213, 0, 0, 0.5);
}

@keyframes dangerPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 23, 68, 0.6);
    }
    70% {
        box-shadow: 0 0 0 14px rgba(255, 23, 68, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 23, 68, 0);
    }
}

@keyframes ringShake {
    0% { transform: rotate(0); }
    20% { transform: rotate(-12deg); }
    40% { transform: rotate(12deg); }
    60% { transform: rotate(-8deg); }
    80% { transform: rotate(8deg); }
    100% { transform: rotate(0); }
}

/* =========================================
   Preloader
========================================= */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-bg);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity var(--transition-slow);
}

.loader-content {
    text-align: center;
}

.loader-logo-img {
    max-height: 55px;
    width: auto;
    max-width: 220px;
    margin-bottom: 20px;
    object-fit: contain;
}

.progress-bar {
    width: 200px;
    height: 4px;
    background-color: var(--glass-border);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.progress {
    width: 0%;
    height: 100%;
    background-color: var(--color-accent-yellow);
    animation: progress 1s ease-in-out forwards;
}

@keyframes progress {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* =========================================
   Navbar
========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: all var(--transition-normal);
    background: transparent;
}

.navbar.scrolled {
    background-color: rgba(11, 11, 11, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 8px 0;
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--shadow-soft);
}

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

.logo {
    display: inline-flex;
    align-items: center;
    transition: var(--transition-normal);
}

.logo-img {
    height: 48px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: all var(--transition-normal);
}

.navbar.scrolled .logo-img {
    height: 38px;
}

.nav-menu {
    display: flex;
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--color-gray);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--color-accent-yellow);
    transition: width var(--transition-normal);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--color-white);
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: var(--color-white);
    transition: all var(--transition-normal);
    border-radius: 3px;
}

/* =========================================
   Hero Section
========================================= */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: flex-start;
    overflow: hidden;
    padding-top: 140px; /* navbar offset + posição superior */
    padding-bottom: 40px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -190px;
    left: 0;
    width: 100%;
    height: calc(100% + 200px);
    background-image: var(--gradient-hero), url('bg-hero.webp');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    z-index: 1;
    transform: translate3d(0, var(--hero-parallax-y, 0px), 0);
    will-change: transform;
    pointer-events: none;
}

.hero-content {
    max-width: 550px;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease forwards;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(37, 211, 102, 0.15);
    border: 1px solid rgba(37, 211, 102, 0.3);
    color: #fff;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.pulsating-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-whatsapp);
    border-radius: 50%;
    margin-right: 10px;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.hero-title {
    font-size: 46px;
    font-weight: 900;
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-title .highlight {
    background: linear-gradient(45deg, var(--color-accent-yellow), #FFA000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 38px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 35px;
}

.btn-glow {
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
}

.btn-glow:hover {
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.6);
}

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

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-white);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stars-hero {
    color: var(--color-accent-yellow);
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.trust-badge span {
    font-size: 0.85rem;
    color: #A0A0A0;
}

.trust-badge strong {
    color: #fff;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 6px 14px 6px 8px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.hero-badge:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
}

.badge-icon-box {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

/* =========================================
   Serviços
========================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--color-bg-secondary);
    border: 1px solid var(--glass-border);
    padding: 40px 30px 90px 30px;
    border-radius: 16px;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    background-color: #1a1a1a;
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--color-accent-blue);
    transition: all var(--transition-normal);
}

.service-card:hover .service-icon {
    background: rgba(0, 87, 255, 0.15);
    transform: scale(1.05);
}

.service-card h3 {
    color: var(--color-white);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

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

.service-btn {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: all var(--transition-normal);
}

.service-card:hover .service-btn {
    background: var(--color-whatsapp);
    color: var(--color-bg);
    transform: rotate(45deg);
}

/* =========================================
   Como Funciona
========================================= */
.how-it-works {
    background-color: var(--color-bg-secondary);
    content-visibility: auto;
    contain-intrinsic-size: 0 800px;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.step-card {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--color-accent-yellow);
    color: var(--color-bg);
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin: 0 auto 25px;
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.3);
}

.step-card h3 {
    color: var(--color-white);
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.step-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.step-line {
    flex: 1;
    height: 2px;
    background: dashed 2px var(--color-accent-yellow);
    opacity: 0.3;
    margin-top: 30px;
    z-index: 1;
}

/* =========================================
   Diferenciais
========================================= */
.diff-carousel-wrapper {
    position: relative;
}

.differentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

/* Dots — ocultos no desktop */
.diff-dots {
    display: none;
}

/* Botões nav — ocultos no desktop */
.diff-nav-btn {
    display: none;
}

.diff-card {
    background: var(--color-bg-secondary);
    border: 1px solid var(--glass-border);
    border-top: 3px solid var(--color-accent-yellow);
    padding: 40px 30px;
    border-radius: 12px;
    transition: all var(--transition-normal);
    position: relative;
}

.diff-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
    border-color: rgba(255, 193, 7, 0.4);
    border-top: 3px solid var(--color-accent-yellow);
}

.diff-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition-normal);
}

.diff-card:hover .diff-icon {
    background: rgba(255, 193, 7, 0.2);
    transform: scale(1.05);
}

.diff-card h4 {
    color: var(--color-white);
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.diff-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* CTA Diferenciais */
.differentials-cta {
    margin-top: 50px;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95) 0%, rgba(30, 30, 30, 0.9) 100%);
    border: 1px solid rgba(255, 193, 7, 0.25);
    border-radius: 16px;
    padding: 35px 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.differentials-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--color-accent-yellow), var(--color-whatsapp));
}

.diff-cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.diff-cta-text h3 {
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 8px;
}

.diff-cta-text p {
    color: var(--color-text-muted);
    font-size: 0.98rem;
    margin: 0;
}

.diff-cta-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

/* =========================================
   Números / Stats
========================================= */
.stats {
    background: linear-gradient(rgba(11, 11, 11, 0.9), rgba(11, 11, 11, 0.9)), url('bg-hero.webp') center/cover no-repeat;
    padding: 80px 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    contain: paint;
    content-visibility: auto;
    contain-intrinsic-size: 0 300px;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-accent-yellow);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-white);
}

/* =========================================
   Avaliações (Carousel)
========================================= */
.testimonials {
    background-color: var(--color-bg-secondary);
}

.carousel-container {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.carousel-btn {
    background-color: var(--color-bg-secondary);
    border: 1px solid var(--glass-border);
    color: var(--color-white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.carousel-btn:hover {
    background-color: var(--color-accent-blue);
    border-color: var(--color-accent-blue);
    transform: scale(1.1);
}

.carousel-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    gap: 30px;
}

/* =========================================
   Galeria de Serviços (Marquee)
========================================= */
.gallery-marquee {
    width: 100%;
    position: relative;
    contain: content;
}

.swipe-indicator {
    display: none;
}

.marquee-track {
    display: flex;
    gap: 20px;
    padding: 0 20px; /* spacing on edges */
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
}

.marquee-track::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

@media (min-width: 769px) {
    .gallery-marquee {
        overflow: hidden;
    }
    .marquee-track {
        width: fit-content;
        animation: scroll 30s linear infinite;
        overflow-x: visible;
        padding: 0;
        will-change: transform;
    }
    .marquee-track:hover {
        animation-play-state: paused;
    }
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-320px * 10 - 20px * 10)); } /* 10 items width + gaps */
}

.gallery-item {
    scroll-snap-align: center;
    width: 320px;
    height: 220px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
    background-color: transparent;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.gallery-item img {
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    margin: -1px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.review-card {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    min-height: 280px;
    background-color: var(--color-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 35px 28px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.stars {
    color: var(--color-accent-yellow);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.review-text {
    color: var(--color-gray);
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
}

.avatar {
    width: 45px;
    height: 45px;
    background-color: var(--color-accent-blue);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.info strong {
    display: block;
    color: var(--color-white);
}

.info span {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* =========================================
   CTA Final
========================================= */
.cta-final {
    background: radial-gradient(circle at 50% 50%, rgba(255, 193, 7, 0.05) 0%, var(--color-bg) 75%);
    position: relative;
}

.cta-container {
    background: linear-gradient(135deg, rgba(28, 28, 35, 0.96) 0%, rgba(16, 16, 20, 0.98) 55%, rgba(42, 33, 14, 0.92) 100%);
    border: 1px solid rgba(255, 213, 79, 0.2);
    padding: 50px 50px;
    border-radius: 24px;
    max-width: 1050px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    text-align: left;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.65), inset 0 1px 1px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.cta-container::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-content {
    flex: 1;
    max-width: 540px;
}

.cta-container h2 {
    font-size: 2.85rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 16px;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.cta-container h2 span {
    background: linear-gradient(135deg, #FFD54F 0%, var(--color-accent-yellow) 50%, #FFA000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.cta-container p {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cta-image-wrapper {
    flex: 1;
    max-width: 420px;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 25px rgba(255, 193, 7, 0.1);
}

.cta-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.cta-image-wrapper:hover .cta-img {
    transform: scale(1.05);
}

.cta-btn {
    font-size: 1.1rem;
    padding: 16px 32px;
}

/* =========================================
   Localização / Onde Estamos
========================================= */
.location-section {
    background-color: var(--color-bg-secondary);
    border-top: 1px solid var(--glass-border);
    content-visibility: auto;
    contain-intrinsic-size: 0 600px;
}

.location-grid {
    display: flex;
    gap: 50px;
    align-items: stretch;
}

.location-info {
    flex: 1;
    min-width: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location-tag {
    color: var(--color-accent-yellow);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

.location-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 30px;
    letter-spacing: -0.025em;
}

.location-title span {
    background: linear-gradient(135deg, #FFD54F 0%, var(--color-accent-yellow) 50%, #FFA000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.location-list {
    margin-bottom: 30px;
}

.location-item {
    display: flex;
    gap: 18px;
    align-items: center;
    margin-bottom: 24px;
}

.location-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFD54F 0%, var(--color-accent-yellow) 100%);
    color: #0B0B0B;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 18px rgba(255, 193, 7, 0.3);
    transition: transform var(--transition-normal);
}

.location-item:hover .location-icon {
    transform: scale(1.08);
}

.location-text strong {
    display: block;
    font-size: 1.15rem;
    color: var(--color-white);
    font-weight: 700;
    margin-bottom: 4px;
}

.location-text p {
    color: var(--color-text-muted);
    font-size: 1rem;
    margin: 0 0 2px 0;
    font-weight: 500;
}

.location-text span {
    color: #a0a0a0;
    font-size: 0.9rem;
    display: block;
}

.location-text small {
    color: #777;
    font-size: 0.85rem;
    display: block;
    margin-top: 2px;
}

.location-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.location-btn-directions {
    background: linear-gradient(135deg, #FFD54F 0%, var(--color-accent-yellow) 100%);
    border-color: var(--color-accent-yellow);
    color: #0B0B0B;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 800;
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.3);
}

.location-btn-directions:hover {
    background: linear-gradient(135deg, #FFE082 0%, #FFC107 100%);
    border-color: #FFC107;
    color: #000;
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.45);
    transform: translateY(-3px);
}

.location-map-wrapper {
    flex: 1.1;
    min-height: 440px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    position: relative;
    width: 100%;
}

.location-map-wrapper iframe {
    width: 100%;
    height: 100%;
    min-height: 440px;
    border: 0;
    display: block;
}

/* =========================================
   Footer
========================================= */
.footer {
    background-color: var(--color-bg-secondary);
    padding-top: 80px;
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 15px;
}

.footer-logo .logo-img {
    height: 48px;
}

.footer-col p {
    color: var(--color-text-muted);
    margin-bottom: 20px;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--glass-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    border: 1px solid var(--glass-border);
}

.social-links a:hover {
    background-color: var(--color-accent-blue);
    border-color: var(--color-accent-blue);
}

.footer-col h3 {
    color: var(--color-white);
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-col ul li {
    color: var(--color-text-muted);
}

.footer-col ul li a:hover {
    color: var(--color-accent-yellow);
}

.footer-bottom {
    background-color: #050505;
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    color: #777;
    font-size: 0.9rem;
}

/* =========================================
   Responsividade
========================================= */
@media (max-width: 1024px) {
    .hero-title { font-size: 2.5rem; }
    .section-title h2,
    .cta-container h2 { font-size: 2.4rem; }
    .review-card { min-width: calc(50% - 15px); }
    .steps-container { flex-direction: column; align-items: center; gap: 40px; }
    .step-line { display: none; }
}

@media (max-width: 768px) {
    /* ── Diferenciais Carrossel Mobile ── */
    .diff-carousel-wrapper {
        position: relative;
        padding-bottom: 48px; /* espaço para os dots */
    }

    .differentials-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        gap: 16px;
        padding: 4px 4px 12px;
        /* Oculta barra de scroll */
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .differentials-grid::-webkit-scrollbar {
        display: none;
    }

    .diff-card {
        flex: 0 0 calc(100% - 8px);
        scroll-snap-align: center;
        min-width: calc(100% - 8px);
    }

    /* Dots indicadores */
    .diff-dots {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        position: absolute;
        bottom: 8px;
        left: 0;
        right: 0;
    }

    .diff-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
        border: none;
        cursor: pointer;
        padding: 0;
        transition: width 0.3s ease, background 0.3s ease, border-radius 0.3s ease;
    }

    .diff-dot.active {
        width: 24px;
        border-radius: 4px;
        background: var(--color-accent-yellow);
    }

    /* Botões nav */
    .diff-nav-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 50%;
        transform: translateY(calc(-50% - 24px));
        z-index: 10;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: rgba(20, 20, 20, 0.9);
        border: 1px solid rgba(255, 255, 255, 0.15);
        color: var(--color-white);
        cursor: pointer;
        transition: background 0.2s, border-color 0.2s, transform 0.2s;
        backdrop-filter: blur(6px);
    }

    .diff-nav-btn:active {
        transform: translateY(calc(-50% - 24px)) scale(0.92);
    }

    .diff-nav-prev {
        left: -4px;
    }

    .diff-nav-next {
        right: -4px;
    }

    .logo-img {
        height: 38px;
    }
    .navbar.scrolled .logo-img {
        height: 32px;
    }

    .section-padding {
        padding: 45px 0;
    }

    .section-title {
        margin-bottom: 30px;
    }

    .nav-btn { display: none; }
    .hamburger { display: flex; }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: rgba(11, 11, 11, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: right 0.4s ease;
        z-index: -1;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .nav-link {
        font-size: 1.2rem;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    .hero {
        height: auto;
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 30px;
        align-items: flex-start;
        overflow: hidden;
    }
    
    .hero::before {
        top: -150px;
        height: calc(100% + 80px);
        background-image: var(--gradient-hero), url('assets/heromobile.webp');
        background-position: center center;
    }
    
    .hero-title {
        font-size: 37px;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 0.98rem;
        line-height: 1.5;
        margin-bottom: 25px;
    }
    
    .section-title h2,
    .cta-container h2 {
        font-size: 2.15rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 18px;
        margin-bottom: 25px;
    }

    .hero-buttons .btn-whatsapp-transparent {
        margin-top: 10px;
    }
    
    .hero-badges {
        display: none;
    }
    
    .btn {
        width: 100%;
    }
    
    .stats {
        padding: 40px 0;
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 10px;
    }

    .swipe-indicator {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
        color: var(--color-text-muted);
        font-size: 0.9rem;
        margin-top: 15px;
        opacity: 0.7;
    }
    
    .review-card {
        padding: 24px 20px;
        min-height: 240px;
        border-radius: 14px;
    }

    .review-text {
        font-size: 0.92rem;
        line-height: 1.5;
        margin-bottom: 18px;
    }

    .differentials-cta {
        padding: 28px 20px;
        margin-top: 35px;
    }

    .diff-cta-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .diff-cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .footer {
        padding-top: 45px;
    }

    .cta-container {
        flex-direction: column-reverse;
        text-align: center;
        padding: 35px 24px;
        gap: 30px;
    }

    .cta-content {
        max-width: 100%;
    }

    .cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .cta-image-wrapper {
        max-width: 100%;
        width: 100%;
    }

    .cta-img {
        height: 220px;
    }

    .location-info {
        min-width: 0;
        width: 100%;
    }

    .location-grid {
        flex-direction: column;
        gap: 35px;
    }

    .location-map-wrapper {
        min-height: 380px;
        height: 380px;
        width: 100%;
        border-radius: 16px;
    }

    .location-map-wrapper iframe {
        min-height: 380px;
        height: 380px;
        width: 100%;
        border: 0;
    }

    .location-buttons {
        flex-direction: column;
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 35px;
    }
}

@media (max-width: 480px) {
    .section-padding {
        padding: 35px 0;
    }

    .section-title {
        margin-bottom: 25px;
    }

    .hero-buttons {
        gap: 20px;
    }

    .hero-buttons .btn-whatsapp-transparent {
        margin-top: 14px;
    }

    .hero-title { font-size: 37px; }
    .hero-subtitle { font-size: 0.92rem; }
    .section-title h2,
    .cta-container h2 { font-size: 1.85rem; }
    .cta-container { padding: 35px 20px; }
    .review-card {
        padding: 20px 18px;
        min-height: 240px;
    }

    .location-map-wrapper {
        min-height: 350px;
        height: 350px;
    }

    .location-map-wrapper iframe {
        min-height: 350px;
        height: 350px;
    }
}

/* ========================
   CTA "Fale Conosco" — Como Funciona
   ======================== */

.how-cta-block {
    margin-top: 56px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255,193,7,0.07) 0%, rgba(0,87,255,0.06) 100%);
    border: 1px solid rgba(255, 193, 7, 0.18);
    padding: 36px 40px 28px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(6px);
    transition: box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.how-cta-block::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 0% 50%, rgba(255,193,7,0.08) 0%, transparent 60%),
                radial-gradient(ellipse at 100% 50%, rgba(0,87,255,0.06) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.how-cta-block:hover {
    border-color: rgba(255, 193, 7, 0.35);
    box-shadow: 0 8px 40px rgba(255, 193, 7, 0.08), 0 0 0 1px rgba(255,193,7,0.1);
}

.how-cta-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.how-cta-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    min-width: 240px;
}

.how-cta-icon-wrap {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, #25D366 0%, #1EBE5A 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
    animation: how-cta-pulse 2.8s ease-in-out infinite;
}

@keyframes how-cta-pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35); transform: scale(1); }
    50%       { box-shadow: 0 4px 32px rgba(37, 211, 102, 0.55); transform: scale(1.04); }
}

.how-cta-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-accent-yellow);
    margin-bottom: 4px;
}

.how-cta-title {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: 6px;
}

.how-cta-sub {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    max-width: 320px;
}

.how-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.how-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 24px;
    border-radius: 12px;
    font-size: 0.93rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    border: none;
    white-space: nowrap;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.how-cta-btn svg {
    flex-shrink: 0;
}

.how-cta-btn--primary {
    background: linear-gradient(135deg, #25D366 0%, #1EBE5A 100%);
    color: #fff;
    box-shadow: 0 4px 18px rgba(37, 211, 102, 0.3);
}

.how-cta-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
}

.how-cta-btn--secondary {
    background: rgba(255, 255, 255, 0.06);
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.how-cta-btn--secondary:hover {
    background: rgba(255, 255, 255, 0.11);
    border-color: rgba(255, 255, 255, 0.28);
    transform: translateY(-2px);
}

/* Social proof badges */
.how-cta-badges {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.how-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-text-muted);
    letter-spacing: 0.01em;
}

.how-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--color-whatsapp);
    flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.2);
    animation: badge-pulse 2s ease-in-out infinite;
}

.how-badge:nth-child(2) .how-badge-dot { animation-delay: 0.4s; }
.how-badge:nth-child(3) .how-badge-dot { animation-delay: 0.8s; }

@keyframes badge-pulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.2); }
    50%       { box-shadow: 0 0 0 5px rgba(37, 211, 102, 0.35); }
}

/* Responsive */
@media (max-width: 768px) {
    .how-cta-block {
        padding: 28px 24px 22px;
        margin-top: 40px;
    }

    .how-cta-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .how-cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .how-cta-btn {
        width: 100%;
        justify-content: center;
    }

    .how-cta-title {
        font-size: 1.2rem;
    }

    .how-cta-badges {
        gap: 14px;
    }
}

/* ========================
   Botão Flutuante WhatsApp
   ======================== */

.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366 0%, #128C4E 100%);
    color: #fff;
    text-decoration: none;

    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45), 0 2px 8px rgba(0,0,0,0.25);
    transition: transform 0.25s cubic-bezier(.34,1.56,.64,1), box-shadow 0.25s ease;

    /* Entrada com slide-up */
    animation: wafloat-in 0.6s cubic-bezier(.34,1.56,.64,1) 1.2s both;
}

@keyframes wafloat-in {
    from { opacity: 0; transform: translateY(30px) scale(0.7); }
    to   { opacity: 1; transform: translateY(0)   scale(1);   }
}

.whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 10px 36px rgba(37, 211, 102, 0.6), 0 4px 12px rgba(0,0,0,0.3);
}

/* Ícone */
.whatsapp-float__icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    transition: transform 0.25s ease;
}

.whatsapp-float:hover .whatsapp-float__icon {
    transform: rotate(-8deg) scale(1.08);
}

/* Anéis de pulso */
.whatsapp-float__ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2.5px solid rgba(37, 211, 102, 0.55);
    animation: wafloat-ring 2.4s ease-out infinite;
    pointer-events: none;
}

.whatsapp-float__ring--delay {
    animation-delay: 1.2s;
}

@keyframes wafloat-ring {
    0%   { transform: scale(1);   opacity: 0.7; }
    80%  { transform: scale(1.7); opacity: 0;   }
    100% { transform: scale(1.7); opacity: 0;   }
}

/* Tooltip */
.whatsapp-float__tooltip {
    position: absolute;
    right: calc(100% + 14px);
    top: 50%;
    transform: translateY(-50%) translateX(6px);
    background: rgba(20, 20, 20, 0.95);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    white-space: nowrap;
    padding: 7px 14px;
    border-radius: 10px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

/* seta */
.whatsapp-float__tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent transparent transparent rgba(20,20,20,0.95);
}

.whatsapp-float:hover .whatsapp-float__tooltip {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
    }

    .whatsapp-float__icon {
        width: 28px;
        height: 28px;
    }

    /* Oculta tooltip em mobile (espaço reduzido) */
    .whatsapp-float__tooltip {
        display: none;
    }
}

/* ============================================
   JR Pneus e Rodas — Cross-Promo Section
   ============================================ */

.jr-pneus-section {
    background: var(--color-bg);
}

.jr-pneus-card {
    position: relative;
    border-radius: 24px;
    padding: 48px 52px 36px;
    overflow: hidden;

    /* Borda degradê amarelo → azul */
    background: var(--color-bg-secondary);
    border: 1px solid transparent;
    background-clip: padding-box;
    box-shadow:
        0 0 0 1px rgba(255, 193, 7, 0.25),
        0 24px 64px rgba(0, 0, 0, 0.45);

    transition: box-shadow var(--transition-normal);
}

.jr-pneus-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255,193,7,0.45) 0%, rgba(0,87,255,0.25) 60%, transparent 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* Glow suave no hover */
.jr-pneus-card:hover {
    box-shadow:
        0 0 0 1px rgba(255, 193, 7, 0.45),
        0 32px 80px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(255, 193, 7, 0.06);
}

/* Eyebrow — etiqueta de atenção */
.jr-pneus-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-accent-yellow);
    margin-bottom: 28px;
    padding: 6px 14px 6px 10px;
    background: rgba(255, 193, 7, 0.08);
    border: 1px solid rgba(255, 193, 7, 0.2);
    border-radius: 999px;
}

.jr-pneus-eyebrow-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--color-accent-yellow);
    animation: badge-pulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

/* Body layout */
.jr-pneus-body {
    display: flex;
    align-items: center;
    gap: 36px;
}

/* Conteúdo textual */
.jr-pneus-content {
    flex: 1;
    min-width: 0;
}

.jr-pneus-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-white);
    line-height: 1.25;
    margin-bottom: 18px;
}

.jr-pneus-highlight {
    background: linear-gradient(90deg, #FFC107 0%, #FFD54F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.jr-pneus-desc {
    font-size: 0.97rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 520px;
}

.jr-pneus-desc strong {
    color: var(--color-white);
    font-weight: 700;
}

/* Chips de serviços */
.jr-pneus-chips {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    list-style: none;
    margin: 0 0 32px;
    padding: 0;
}

.jr-chip {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 8px 6px;
    transition: background var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
    cursor: default;
}

.jr-chip:hover {
    background: rgba(255, 193, 7, 0.1);
    border-color: rgba(255, 193, 7, 0.3);
    transform: translateY(-1px);
}

/* CTAs */
.jr-pneus-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.jr-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 14px 26px;
    border-radius: 12px;
    font-size: 0.93rem;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.22s cubic-bezier(.34,1.56,.64,1), box-shadow 0.22s ease;
    white-space: nowrap;
}

.jr-btn--whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C4E 100%);
    color: #fff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}

.jr-btn--whatsapp:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}

.jr-btn--instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
    box-shadow: 0 4px 20px rgba(220, 39, 67, 0.35);
}

.jr-btn--instagram:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 32px rgba(220, 39, 67, 0.5);
}

/* Lado visual decorativo */
.jr-pneus-visual {
    flex-shrink: 0;
    position: relative;
    width: 420px;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    overflow: hidden;
}

.jr-pneus-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 193, 7, 0.2);
    transition: transform var(--transition-normal);
}

.jr-pneus-card:hover .jr-pneus-img {
    transform: scale(1.05);
}

/* Rodapé do card */
.jr-pneus-footer {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.jr-pneus-brand-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-text-muted);
}

.jr-pneus-divider {
    color: rgba(255, 255, 255, 0.2);
    font-size: 1rem;
}

/* Mobile Image Container */
.jr-pneus-visual-mobile {
    display: none;
}

/* ── Responsivo ── */
@media (max-width: 900px) {
    .jr-pneus-visual {
        display: none;
    }
}

@media (max-width: 768px) {
    .jr-pneus-card {
        padding: 32px 24px 28px;
        border-radius: 18px;
    }

    .jr-pneus-title {
        font-size: 1.5rem;
    }

    .jr-pneus-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .jr-pneus-chips {
        display: none;
    }

    .jr-pneus-visual-mobile {
        display: block;
        width: 100%;
        height: 220px;
        margin-bottom: 24px;
        border-radius: 16px;
        overflow: hidden;
    }

    .jr-btn {
        justify-content: center;
    }

    .jr-pneus-footer {
        justify-content: center;
        text-align: center;
    }
}

