/* ============================================================
   JHON JHON ESTÉTICA AUTOMOTIVA — Premium Garage Design System
   DNA: Ultra Dark · Red Neon · Bold Automotive · Spark Energy
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,400;0,600;0,700;0,900;1,900&family=Inter:wght@300;400;500;600&display=swap');

:root {
    /* -- Colors (Automotive Dark Suite) -- */
    --red: #D51D24;
    --red-hot: #f0252d;
    --red-dim: rgba(213, 29, 36, 0.4);
    --red-glow: rgba(213, 29, 36, 0.25);
    --bg-0: #050505;
    --bg-1: #0A0A0A;
    --bg-2: #121212;
    --bg-3: #1A1A1A;
    --text: #F5F5F7;
    --text-muted: #A1A1A6;
    --text-faint: #6E6E73;
    --border: rgba(255, 255, 255, 0.08);
    --border-red: rgba(213, 29, 36, 0.3);

    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 8px;
    --radius-lg: 16px;
    --container-max: 1280px;
    --metal: rgba(255, 255, 255, 0.04);
    --metal-hover: rgba(255, 255, 255, 0.08);
}

/* ---- PREMIUM SHOWROOM UTILITIES ---- */
.grainy-texture {
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 0.03;
    /* Very subtle */
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.mirror-reflection {
    position: relative;
    padding-bottom: 3rem;
}

.mirror-reflection::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 10%;
    width: 80%;
    height: 120px;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(213, 29, 36, 0.08), transparent);
    filter: blur(40px);
    border-radius: 50%;
    z-index: -1;
    transform: scaleY(0.4);
}

.deep-black-gradient {
    background: linear-gradient(to bottom, #050505, #0A0A0A, #050505);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background-color: var(--bg-0);
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Texture overlay on body — carbon fiber feel */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        repeating-linear-gradient(0deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.012) 2px,
            rgba(255, 255, 255, 0.012) 4px);
    pointer-events: none;
    z-index: 0;
}

/* Bold headings use Barlow Condensed */
h1,
h2,
h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.05;
    text-transform: uppercase;
    text-wrap: balance;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* ---- GLOBAL UTILITIES ---- */
.red {
    color: var(--red);
}

.section-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    color: var(--red);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.section-label::before {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: var(--red);
}

/* ---- SCROLL PROGRESS ---- */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--red-hot));
    z-index: 10001;
    /* Above header */
    width: 0%;
    transition: width 0.1s ease-out;
    box-shadow: 0 0 10px var(--red-glow);
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar {
    width: 6px;
    background: var(--bg-2);
}

::-webkit-scrollbar-thumb {
    background: var(--red);
    border-radius: 3px;
}

/* ============================================================
   HEADER
   ============================================================ */
#main-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(6, 6, 6, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border);
    transition: background var(--transition), backdrop-filter var(--transition), border var(--transition), box-shadow var(--transition);
}

#main-header.scrolled {
    border-bottom-color: var(--border-red);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.6);
}

#main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
}

#header-logo {
    height: 54px;
    width: auto;
    object-fit: contain;
    filter: none;
    transition: transform var(--transition);
}

#header-logo:hover {
    transform: scale(1.05);
}

header nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

header nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: var(--transition);
    position: relative;
    padding-bottom: 2px;
}

header nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red);
    transition: var(--transition);
}

header nav a:hover {
    color: var(--text);
}

header nav a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--red) !important;
    color: white !important;
    padding: 0.55rem 1.3rem;
    border-radius: var(--radius);
    font-weight: 700 !important;
    box-shadow: 0 0 20px var(--red-glow);
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--red-hot) !important;
    transform: translateY(-1px);
}

/* Hamburger Mobile */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-nav {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    height: calc(100vh - 72px);
    background: rgba(8, 8, 8, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-top: 1px solid var(--border);
    padding: 3rem 2rem;
    gap: 1.5rem;
    z-index: 2000;
    overflow-y: auto;
}

.mobile-nav.open {
    display: flex;
}

.mobile-nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--border);
    padding-bottom: 1rem;
}

.mobile-nav a:last-child {
    border-bottom: none;
}

.mobile-nav a:hover {
    color: var(--red);
}

/* ============================================================
   HERO — Full Video, Aggressive Overlay
   ============================================================ */
.hero {
    height: 100svh;
    min-height: 650px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero .video-container {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: #050505 url('./hero-poster.jpg') no-repeat center center;
    background-size: cover;
}

.hero video,
.hero canvas {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    will-change: transform, opacity;
    transform: translateZ(0);
}

.hero .overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(6, 6, 6, 0.5) 0%, rgba(6, 6, 6, 0.2) 40%, rgba(6, 6, 6, 0.92) 100%),
        linear-gradient(90deg, rgba(6, 6, 6, 0.65) 0%, transparent 60%);
}

/* Animated red glow at bottom left — spark energy */
.hero-glow {
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(213, 29, 36, 0.25) 0%, transparent 70%);
    z-index: 1;
    animation: hero-glow-pulse 4s ease-in-out infinite alternate;
}

@keyframes hero-glow-pulse {
    from {
        transform: scale(1);
        opacity: 0.6;
    }

    to {
        transform: scale(1.3);
        opacity: 1;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-bottom: 2rem;
    padding-top: 90px;
    /* Safe space from header */
    width: 100%;
    max-height: 100%;
    overflow-y: auto;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 1rem;
    background: rgba(213, 29, 36, 0.1);
    border: 1px solid var(--border-red);
    padding: 0.4rem 1rem;
    border-radius: 2px;
}

.hero-eyebrow::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    background: var(--red);
    border-radius: 50%;
    animation: blink 1.2s ease-in-out infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.hero-content h1 {
    font-size: clamp(2.4rem, 10vw, 6rem);
    line-height: 0.95;
    max-width: 900px;
    margin-bottom: 1rem;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
}

/* Bebas Neue — fonte racing/automotiva para o hero */
.hero-content h1.hero-title {
    font-family: 'Bebas Neue', 'Barlow Condensed', sans-serif;
    font-size: clamp(2.8rem, 11vw, 6.5rem);
    letter-spacing: 0.04em;
    line-height: 1.0;
}

.hero-content h1 .stroke {
    -webkit-text-stroke: 2px white;
    color: transparent;
}

.hero-content h1 .red-word {
    color: var(--red);
    text-shadow: 0 0 40px rgba(213, 29, 36, 0.7);
}

.hero-sub {
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    color: var(--text-muted);
    max-width: 480px;
    margin-bottom: 1.5rem;
    font-weight: 400;
    line-height: 1.7;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.hero-services-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 3rem;
}

.pill {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    background: var(--metal);
    border: 1px solid var(--border);
    padding: 0.35rem 0.75rem;
    border-radius: 2px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--red);
    color: white;
    padding: 0.9rem 2rem;
    border-radius: var(--radius);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 0 25px rgba(213, 29, 36, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: var(--red-hot);
    box-shadow: 0 0 35px rgba(213, 29, 36, 0.7);
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: white;
    padding: 0.9rem 2rem;
    border-radius: var(--radius);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: var(--transition);
}

.btn-secondary:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #1DB954;
    color: white;
    padding: 0.9rem 2rem;
    border-radius: var(--radius);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 0 20px rgba(29, 185, 84, 0.3);
}

.btn-whatsapp:hover {
    background: #25D366;
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.5);
    transform: translateY(-2px);
}

/* WhatsApp Hero CTA Button */
.btn-whatsapp-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: #25D366;
    color: white;
    padding: 0.9rem 1.8rem;
    border-radius: var(--radius);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-hero:hover {
    background: #1ebe5d;
    box-shadow: 0 0 32px rgba(37, 211, 102, 0.55);
    transform: translateY(-2px);
}

/* ============================================================
   WHATSAPP LIGHTBOX WIZARD
   ============================================================ */
.wpp-lightbox-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    padding: 1rem;
    animation: wppFadeIn 0.3s ease;
}

.wpp-lightbox-overlay.active {
    display: flex;
}

@keyframes wppFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.wpp-lightbox-panel {
    background: var(--bg-2);
    border: 1px solid var(--border-red);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2rem;
    position: relative;
    box-shadow: 0 0 60px rgba(213, 29, 36, 0.2), 0 30px 80px rgba(0, 0, 0, 0.9);
    animation: wppSlideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes wppSlideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.wpp-lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--bg-3);
    border: 1px solid var(--border);
    color: var(--text-muted);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.wpp-lightbox-close:hover {
    background: var(--red);
    color: white;
    border-color: var(--red);
}

.wpp-lightbox-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.wpp-lightbox-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: rgba(37, 211, 102, 0.12);
    border: 1px solid rgba(37, 211, 102, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #25D366;
}

.wpp-lightbox-header h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text);
    margin: 0 0 0.25rem;
}

.wpp-lightbox-header p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

/* Success Step */
.wpp-success-step {
    display: none;
}

.wpp-success-step.active {
    display: block;
}

.wpp-success-content {
    text-align: center;
    padding: 1.5rem 0;
}

.wpp-success-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.wpp-success-content h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.wpp-success-content p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.btn-wpp-final {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #25D366;
    color: white;
    padding: 1.1rem 2.5rem;
    border-radius: var(--radius);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.4);
    animation: wppPulse 2s ease-in-out infinite;
}

.btn-wpp-final:hover {
    background: #1ebe5d;
    box-shadow: 0 0 50px rgba(37, 211, 102, 0.7);
    transform: scale(1.02);
}

@keyframes wppPulse {

    0%,
    100% {
        box-shadow: 0 0 30px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 0 50px rgba(37, 211, 102, 0.7);
    }
}

/* ============================================================
   STATS STRIP — after hero
   ============================================================ */
.stats-strip {
    background: var(--bg-1);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: clamp(2rem, 5vw, 2.5rem) 0;
    position: relative;
    z-index: 2;
}

.stats-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--red), transparent);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.stat-item {
    text-align: center;
    padding: 1rem 2rem;
    border-right: 1px solid var(--border);
    position: relative;
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--red);
    line-height: 1;
    text-shadow: 0 0 30px var(--red-glow);
    text-transform: uppercase;
}

.stat-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-top: 0.4rem;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services {
    padding: clamp(5rem, 10vw, 9rem) 0;
    background: var(--bg-0);
    position: relative;
}

/* Ambient background glow */
.services::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -200px;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(213, 29, 36, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.services-header {
    margin-bottom: 3.5rem;
}

.services-header h2 {
    font-size: clamp(2.5rem, 6vw, 5rem);
}

.category-tabs {
    display: flex;
    gap: 0.5rem;
    margin-top: 2rem;
    border-bottom: 1px solid var(--border);
    padding-bottom: 0;
    overflow-x: auto;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: var(--text-muted);
    padding: 0.8rem 1.8rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    opacity: 0.5;
    margin: 0 0.5rem;
}

.tab-btn.active {
    color: #fff;
    background: var(--red);
    border-color: var(--red);
    opacity: 1;
    box-shadow: 0 4px 15px rgba(213, 29, 36, 0.4);
    transform: translateY(-2px);
}

.tab-btn:hover:not(.active) {
    color: var(--text);
    background: rgba(255, 255, 255, 0.08);
    opacity: 0.9;
    border-color: rgba(255, 255, 255, 0.2);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5px;
    background: var(--border);
    border: 1px solid var(--border);
}

.service-card {
    border-radius: var(--radius-lg);
    background: var(--bg-1);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: background var(--transition), transform var(--transition), border var(--transition), box-shadow var(--transition);
    border: 1px solid var(--border);
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: var(--bg-2);
    border-color: var(--border-red);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 20px var(--red-dim);
}

/* Elite Light Sweep Animation */
.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent 45%,
            rgba(255, 255, 255, 0.05) 50%,
            transparent 55%);
    transition: all 0.6s ease-in-out;
    pointer-events: none;
}

.service-card:hover::after {
    left: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--red);
    transition: height 0.4s ease;
}

.service-card:hover::before {
    height: 100%;
}

.service-card:hover {
    background: var(--bg-2);
    transition: background var(--transition), border var(--transition), transform var(--transition);
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 1.25rem;
    display: block;
    filter: grayscale(1) contrast(1.5);
}

.service-card h3 {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    margin-bottom: 0.75rem;
    color: var(--text);
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    text-wrap: pretty;
}

/* ---- Services Image Banner (Fachada + lista de serviços) ---- */
.services-image-banner {
    position: relative;
    width: 100%;
    height: clamp(280px, 40vw, 480px);
    overflow: hidden;
    margin-bottom: 0;
}

.services-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    filter: brightness(0.55);
}

.services-banner-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    background: linear-gradient(to top, rgba(6, 6, 6, 0.9) 0%, rgba(6, 6, 6, 0.3) 60%, transparent 100%);
    padding-bottom: 2.5rem;
}

.services-banner-overlay h2 {
    font-size: clamp(2.5rem, 7vw, 5rem);
    margin-bottom: 0.5rem;
}

.services-banner-overlay p {
    font-size: clamp(0.85rem, 1.5vw, 1rem);
    color: var(--text-muted);
    letter-spacing: 0.1em;
}

/* ---- Reel Tag ---- */
.reel-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: var(--red);
    color: white;
    padding: 0.3rem 0.6rem;
    border-radius: 2px;
    margin-bottom: 0.5rem;
}

/* ---- Qualidade & Garantia Section ---- */
.qualidade-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
}

.qualidade-image {
    position: relative;
    overflow: hidden;
}

.qualidade-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.8s ease;
}

.qualidade-section:hover .qualidade-image img {
    transform: scale(1.04);
}

.container-qualidade {
    background: var(--bg-1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 4rem;
    position: relative;
}

.container-qualidade::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--red);
}

.container-qualidade h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    line-height: 1.05;
}

.container-qualidade p {
    color: var(--text-muted);
    font-size: clamp(0.9rem, 1.5vw, 1.05rem);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 480px;
}

/* ---- Endereços Section ---- */
.enderecos-section {
    position: relative;
    overflow: hidden;
}

.enderecos-image {
    position: relative;
    width: 100%;
    min-height: clamp(600px, 80vw, 780px);
    overflow: hidden;
}

.enderecos-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: brightness(0.12) saturate(0.5);
    position: absolute;
    inset: 0;
}

.enderecos-overlay {
    position: relative;
    z-index: 2;
    padding: clamp(4rem, 10vw, 8rem) 2rem;
    max-width: var(--container-max);
    margin: 0 auto;
    min-height: inherit;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Footer category cards wider layout */
.footer-category-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-category-cards .category-card {
    cursor: pointer;
}

@media (max-width: 480px) {
    .footer-category-cards {
        grid-template-columns: 1fr;
    }
}

.enderecos-overlay h2 {
    font-size: clamp(2.5rem, 7vw, 5rem);
    margin-bottom: 3rem;
}

.enderecos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.endereco-card {
    background: rgba(10, 10, 10, 0.85);
    border: 1px solid var(--border);
    border-top: 3px solid var(--red);
    backdrop-filter: blur(12px);
    padding: 2.5rem;
    border-radius: var(--radius);
    transition: var(--transition);
}

.endereco-card:hover {
    border-color: var(--red);
    background: rgba(20, 20, 20, 0.92);
    transform: translateY(-4px);
}

.endereco-icon {
    font-size: 1.8rem;
    display: block;
    margin-bottom: 1rem;
}

.endereco-card h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 0.75rem;
}

.endereco-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* btn-white-outline for footer banner */
.btn-white-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: white;
    padding: 0.9rem 2rem;
    border-radius: var(--radius);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid white;
    transition: var(--transition);
}

.btn-white-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

/* Mobile for new sections */
@media (max-width: 900px) {
    .qualidade-section {
        grid-template-columns: 1fr;
    }

    .qualidade-image {
        height: auto;
        aspect-ratio: 4/3;
    }

    .container-qualidade {
        padding: 3.5rem 2rem;
    }

    .enderecos-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   SHOWCASE — Full Bleed Video Reel
   ============================================================ */
.showcase {
    padding: clamp(5rem, 10vw, 9rem) 0 0;
    position: relative;
    overflow: hidden;
}

.showcase-header {
    margin-bottom: 4rem;
}

.showcase-header h2 {
    font-size: clamp(2.5rem, 6vw, 5rem);
}

.showcase-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: var(--text-muted);
    max-width: 500px;
    margin-top: 1rem;
    line-height: 1.7;
}

.video-reel {
    position: relative;
    max-width: 100vw;
    overflow-x: hidden;
}

.reel-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    padding: 2rem 5vw;
}

.reel-item {
    width: 100%;
    aspect-ratio: 9 / 16;
    max-height: 80vh;
    position: relative;
    overflow: hidden;
    background: var(--bg-2);
    border-radius: var(--radius-lg);
    cursor: pointer;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.reel-item video,
.reel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.reel-item:hover video,
.reel-item:hover img {
    transform: scale(1.05);
}

.reel-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.5rem 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
}

.reel-info h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: white;
}

/* Red accent line on hover reel item */
.reel-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--red);
    transition: width 0.4s ease;
}

.reel-item:hover::after {
    width: 100%;
}

/* ============================================================
   DIFERENCIAIS SECTION
   ============================================================ */
.diferenciais {
    padding: clamp(5rem, 10vw, 9rem) 0;
    background: var(--bg-1);
    position: relative;
    overflow: hidden;
}

.diferenciais::after {
    content: '';
    position: absolute;
    bottom: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(213, 29, 36, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--border);
    margin-top: 3.5rem;
}

.diferencial-card {
    background: var(--bg-1);
    padding: 3rem 2.5rem;
    transition: var(--transition);
    position: relative;
}

.diferencial-card:hover {
    background: var(--bg-2);
}

.diferencial-number {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    color: var(--red-dim);
    line-height: 1;
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    transition: var(--transition);
}

.diferencial-card:hover .diferencial-number {
    color: rgba(213, 29, 36, 0.2);
}

.diferencial-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1.5rem;
}

.diferencial-card h3 {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    margin-bottom: 0.75rem;
}

.diferencial-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ============================================================
   FOOTER — CTA + Forms + Info
   ============================================================ */
footer#contato {
    background: var(--bg-0);
    border-top: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

/* Dramatic red line at top of footer */
footer#contato::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--red) 40%, var(--red) 60%, transparent 100%);
}

footer::after {
    content: '';
    position: absolute;
    top: -300px;
    left: -300px;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(213, 29, 36, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.footer-cta-banner {
    background: var(--red);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer-cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg,
            transparent,
            transparent 10px,
            rgba(0, 0, 0, 0.08) 10px,
            rgba(0, 0, 0, 0.08) 20px);
}

.footer-cta-banner h2 {
    font-size: clamp(2rem, 5vw, 4rem);
    position: relative;
    z-index: 1;
    margin-bottom: 1.5rem;
}

.footer-cta-banner p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.footer-cta-banner .btn-group {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.footer-cta-banner .btn-white {
    background: white;
    color: var(--red);
    padding: 0.9rem 2rem;
    border-radius: var(--radius);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition);
}

.footer-cta-banner .btn-white:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

/* Footer Content Area */
.footer-content {
    padding: 5rem 0 3rem;
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    margin-bottom: 4rem;
}

.footer-logo-img {
    height: 70px;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px var(--red-glow));
}

.footer-description {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.8;
    max-width: 380px;
    margin-bottom: 2rem;
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-contact-item span:first-child {
    color: var(--red);
    font-size: 1rem;
}

.instagram-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 1.4rem;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: white;
    text-decoration: none;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: var(--transition);
}

.instagram-cta:hover {
    border-color: #E1306C;
    color: #E1306C;
    background: rgba(225, 48, 108, 0.08);
    transform: translateY(-2px);
}

/* ---- Form Panel ---- */
.form-panel-wrapper h3 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin-bottom: 0.5rem;
}

.form-panel-wrapper .form-subtitle {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 2rem;
}

.form-tabs {
    display: flex;
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--radius) var(--radius) 0 0;
    overflow: hidden;
    margin-bottom: 0;
}

.form-tab-btn {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 1rem 1.25rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 2px solid transparent;
}

.form-tab-btn.active {
    color: var(--text);
    background-color: #050505;
    overflow-x: hidden;
    position: relative;
    border-bottom-color: var(--red);
}

.form-tab-btn:hover:not(.active) {
    color: var(--text);
    background: var(--metal);
}

.dynamic-form {
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-top: none;
    padding: 2rem;
    border-radius: 0 0 var(--radius) var(--radius);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: var(--bg-3);
    border: 1px solid var(--border);
    padding: 0.85rem 1rem;
    color: white;
    font-size: 0.9rem;
    border-radius: var(--radius);
    outline: none;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
    -webkit-appearance: none;
    appearance: none;
}


background: var(--red);
color: white;
border: none;
padding: 1rem;
font-family: 'Barlow Condensed',
sans-serif;
font-size: 1.1rem;
font-weight: 700;
letter-spacing: 0.1em;
text-transform: uppercase;
cursor: pointer;
border-radius: var(--radius);
transition: var(--transition);
position: relative;
overflow: hidden;
box-shadow: 0 0 20px rgba(213, 29, 36, 0.3);
margin-top: 0.5rem;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23999' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--red);
    background: var(--bg-2);
    box-shadow: 0 0 0 2px rgba(213, 29, 36, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 90px;
}

.btn-submit:hover {
    background: var(--red-hot);
    box-shadow: 0 0 30px rgba(213, 29, 36, 0.5);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* ============================================================
   WIZARD LEAD FORM
   ============================================================ */
.wizard-step {
    display: none;
    animation: stepFadeIn 0.6s var(--transition) forwards;
    padding: 1rem 0;
}

.wizard-step.active {
    display: block;
}

@keyframes stepFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-header {
    margin-bottom: 2rem;
}

.step-header h3 {
    font-size: 1.5rem;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

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

/* Category Cards Choice */
.category-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (max-width: 600px) {
    .category-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.category-card {
    background: var(--bg-1);
    border: 1px solid var(--border);
    padding: 2rem 1.5rem;
    border-radius: var(--radius-lg);
    cursor: pointer;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.category-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(213, 29, 36, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-5px);
    border-color: var(--red);
    background: var(--bg-2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px var(--red-dim);
}

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

.card-icon {
    font-size: 2.2rem;
    margin-bottom: 0.75rem;
    display: block;
    color: var(--red);
    transition: var(--transition);
}

.category-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 8px var(--red-glow));
}

.category-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.category-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Wizard Navigation */
.wizard-nav {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-next,
.btn-prev {
    padding: 0.85rem 1.5rem;
    border-radius: var(--radius);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-next {
    background: var(--red);
    color: white;
    border: none;
    flex: 2;
    box-shadow: 0 0 15px rgba(213, 29, 36, 0.2);
}

.btn-next:hover {
    background: var(--red-hot);
    box-shadow: 0 0 25px rgba(213, 29, 36, 0.4);
    transform: translateX(5px);
}

.btn-prev {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border);
    flex: 1;
}

.btn-prev:hover {
    background: var(--bg-3);
    color: var(--text);
    border-color: var(--text-muted);
}

#form-msg p {
    padding: 0.75rem;
    border-radius: var(--radius);
    font-size: 0.85rem;
    font-weight: 600;
}

.footer-logo-img {
    max-width: 280px;
    height: auto;
    display: block;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.footer-logo-img:hover {
    filter: drop-shadow(0 0 10px var(--red-dim));
}

/* Footer Bottom Bar */
.footer-bottom {
    padding: 2.5rem 0;
    border-top: 1px solid var(--border);
}

.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3.5rem;
    flex-wrap: wrap;
}

.partner-link {
    display: flex;
    align-items: center;
    transition: var(--transition);
    opacity: 0.7;
}

.partner-link:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.partner-logo {
    height: 28px;
    width: auto;
    display: block;
}

/* Adjust size for Jumperz logo if it's too small/large compared to NewTrend */
.partner-logo[alt="Jumperz.io"] {
    height: 24px;
}

.footer-bottom p {
    color: var(--text-faint);
    font-size: 0.8rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: var(--text-faint);
    text-decoration: none;
    font-size: 0.8rem;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--red);
}

/* ---- Premium Instagram Buttons ---- */
.btn-instagram {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.8rem;
    border-radius: var(--radius);
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(220, 39, 67, 0.2);
    text-transform: uppercase;
    font-size: 0.9rem;
    font-family: 'Barlow Condensed', sans-serif;
    letter-spacing: 0.05em;
}

.btn-instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(220, 39, 67, 0.4);
    filter: brightness(1.1);
}

.btn-instagram-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(45deg, #f09433, #dc2743, #bc1888);
    color: white;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn-instagram-circle:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 8px 25px rgba(220, 39, 67, 0.5);
}

/* ============================================================
   FLOATING CTA (REMOVED WHATSAPP)
   ============================================================ */
.fixed-whatsapp-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 58px;
    height: 58px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 2px 12px rgba(0, 0, 0, 0.3);
    text-decoration: none;
}

.fixed-whatsapp-cta:hover {
    transform: scale(1.12);
}

.fixed-whatsapp-cta svg {
    width: 26px;
    height: 26px;
}

.fixed-whatsapp-cta .pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #25D366;
    z-index: -1;
    animation: cta-pulse 2.5s ease-in-out infinite;
}

@keyframes cta-pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.7);
        opacity: 0;
    }
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
    will-change: opacity, transform;
}

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

.reveal-delay-1 {
    transition-delay: 0.15s;
}

.reveal-delay-2 {
    transition-delay: 0.3s;
}

.reveal-delay-3 {
    transition-delay: 0.45s;
}

/* ============================================================
   RESPONSIVE — MOBILE FIRST
   ============================================================ */
.form-footer-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 1rem;
    font-style: italic;
}

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

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item {
        border-bottom: 1px solid var(--border);
    }
}

@media (max-width: 768px) {

    /* Header */
    header nav ul {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

    /* Hero */
    .hero {
        align-items: flex-end;
        overflow: hidden;
        max-width: 100%;
    }

    .hero-content {
        padding-bottom: clamp(5rem, 12vw, 8rem);
        width: 100%;
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-cta-group a {
        width: 100%;
        justify-content: center;
    }

    /* Grid adjustments */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .diferenciais-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    /* Services — 2 columns on mobile/tablet */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Reel - Mobile Stacking */
    .reel-track {
        grid-template-columns: 1fr;
        padding: 2rem 5vw;
        gap: 2rem;
    }

    .reel-item {
        width: 100%;
        max-width: 380px;
        height: auto;
        aspect-ratio: 9/16;
        flex: none;
    }
}

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

    .category-tabs {
        flex-direction: column;
        gap: 0.25rem;
        border-bottom: none;
    }

    .tab-btn {
        border-bottom: 1px solid var(--border);
        text-align: left;
        padding: 0.75rem 1rem;
    }

    .tab-btn.active {
        border-bottom: 1px solid var(--red);
        border-left: 3px solid var(--red);
        padding-left: 1.5rem;
    }

    .form-tabs {
        flex-direction: column;
    }

    .footer-cta-banner .btn-group {
        flex-direction: column;
    }

    .footer-cta-banner .btn-group a {
        text-align: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .section-label {
        font-size: 0.6rem;
    }
}

/* ============================================================
   MOBILE STICKY BAR — Thumb Zone
   ============================================================ */
.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-top: 1px solid var(--border-red);
    padding: 0.6rem 1rem;
    z-index: 9998;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.9);
}

@media (max-width: 768px) {
    .mobile-sticky-bar {
        display: flex;
        justify-content: center;
    }

    body {
        padding-bottom: 60px;
    }

    /* Space for the thinner bar */
}

.sticky-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: var(--transition);
}

.sticky-btn-estimate {
    background: var(--red);
    color: white;
    box-shadow: 0 0 20px var(--red-glow);
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
    position: fixed;
    bottom: 90px;
    /* Above sticky bar/whatsapp */
    right: 20px;
    width: 45px;
    height: 45px;
    background: var(--bg-3);
    border: 1px solid var(--border);
    color: var(--text);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9997;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-deep);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--red);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 0 20px var(--red-glow);
    border-color: var(--red);
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 140px;
    }

    /* Adjust for mobile sticky bar */
}