/* ==========================================================================
           1. APPLE TYPOGRAPHY & MONOLITH DESIGN SYSTEM BASE
           ========================================================================== */
        :root {
            --font-primary: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;

            /* Cinematic Automotive Palette */
            --color-bg: #030303;
            --color-surface: rgba(255, 255, 255, 0.02);
            --color-border: rgba(255, 255, 255, 0.06);
            --color-text-primary: #f5f5f7;
            --color-text-secondary: rgba(245, 245, 247, 0.6);
            --color-accent: #ff4500;
            /* Magma Orange */
            --color-accent-hover: #ff6633;
            --color-accent-glow: rgba(255, 69, 0, 0.15);
        }

        body,
        html {
            margin: 0;
            padding: 0;
            font-family: var(--font-primary);
            background-color: var(--color-bg);
            color: var(--color-text-primary);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* ==========================================================================
           2. CINEMATIC BACKGROUND & AMBIENT EFFECTS
           ========================================================================== */
        .ambient-glow {
            position: absolute;
            top: 40%;
            left: 5%;
            width: 70vw;
            height: 70vw;
            /* Usar um gradiente mais esfumaçado para evitar o uso de filter: blur pesado */
            background: radial-gradient(circle, var(--color-accent-glow) 0%, rgba(255, 69, 0, 0.05) 30%, transparent 60%);
            border-radius: 50%;
            transform: translateY(-50%);
            z-index: 0;
            opacity: 0.8;
            pointer-events: none;
        }

        /* ==========================================================================
           3. HERO LAYOUT (SÍNTESE VISUAL STYLE)
           ========================================================================== */
        .hero-sintese {
            position: relative;
            display: flex;
            align-items: flex-start;
            overflow: hidden;
            background-color: var(--color-bg);
            padding: 2rem 0 4rem 0;
            box-sizing: border-box;
        }

        .hero-bg-grid {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: linear-gradient(var(--color-border) 1px, transparent 1px),
                linear-gradient(90deg, var(--color-border) 1px, transparent 1px);
            background-size: 50px 50px;
            opacity: 0.3;
            z-index: 0;
        }

        .hero-sintese-container {
            position: relative;
            z-index: 10;
            width: 100%;
            max-width: 1800px;
            margin: 0 auto;
            padding: 0 4vw;
            display: grid;
            grid-template-columns: 1.2fr 1.5fr 0.8fr;
            align-items: stretch;
            gap: 3rem;
        }

        /* LEFT COLUMN */
        .hero-sintese-left {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .sintese-logo {
            max-width: 120px;
            margin-bottom: 0.5rem;
        }

        .sintese-title {
            font-size: clamp(3rem, 5vw, 6.5rem);
            font-weight: 800;
            line-height: 0.95;
            letter-spacing: -0.04em;
            margin: 0;
            color: var(--color-text-primary);
        }

        .sintese-title .sintese-sub {
            display: block;
            font-size: clamp(1rem, 2vw, 1.8rem);
            font-weight: 600;
            color: var(--color-text-secondary);
            margin-top: 1rem;
            letter-spacing: -0.02em;
            line-height: 1.2;
        }

        .sintese-desc {
            font-size: clamp(1rem, 1.2vw, 1.1rem);
            color: var(--color-text-secondary);
            line-height: 1.6;
            margin: 0;
            max-width: 450px;
        }

        .sintese-cta-group {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            margin-top: 1rem;
        }

        .btn-sintese {
            background: transparent;
            color: var(--color-text-primary);
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 1.25rem 2rem;
            font-weight: 700;
            font-size: 0.9rem;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            display: inline-flex;
            align-items: center;
            justify-content: space-between;
            width: fit-content;
            gap: 1.5rem;
            transition: all 0.3s;
            cursor: pointer;
            text-decoration: none;
        }

        .btn-sintese:hover {
            border-color: var(--color-accent);
            background: rgba(255, 69, 0, 0.05);
            color: var(--color-accent);
        }

        .sintese-cta-subtext {
            font-size: 0.75rem;
            color: var(--color-text-muted);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            font-weight: 600;
        }

        /* CENTER COLUMN: COLLAGE */
        .hero-sintese-center {
            position: relative;
            height: 600px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .collage-wrapper {
            position: relative;
            width: 100%;
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .collage-img {
            position: absolute;
            background: #111;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .collage-img:hover {
            transform: scale(1.05) translateZ(10px) !important;
            z-index: 50 !important;
        }

        .c-img-1 {
            width: 180px;
            height: 180px;
            margin-top: -190px;
            margin-left: -260px;
            transform: rotate(-10deg);
            z-index: 10;
            filter: none;
        }

        .c-img-2 {
            width: 160px;
            height: 220px;
            margin-top: -190px;
            margin-left: 280px;
            transform: rotate(12deg);
            z-index: 10;
            filter: none;
        }

        .c-img-3 {
            width: 260px;
            height: 260px;
            z-index: 30;
            transform: rotate(-5deg);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
        }

        .c-img-4 {
            width: 220px;
            height: 160px;
            margin-top: 200px;
            margin-left: -260px;
            transform: rotate(-6deg);
            z-index: 10;
            filter: none;
            object-position: center 20%;
        }

        .c-img-5 {
            width: 180px;
            height: 180px;
            margin-top: 210px;
            margin-left: 260px;
            transform: rotate(8deg);
            z-index: 10;
            filter: none;
        }

        .sintese-info-card {
            position: relative;
            background: #111;
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 1rem 1.5rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            border-radius: 8px;
            z-index: 60;
            width: max-content;
            max-width: 300px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
            margin-top: 1rem;
            margin-bottom: 2rem;
            text-decoration: none;
            color: inherit;
            cursor: pointer;
            transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
        }

        .sintese-info-card:hover {
            transform: translateY(-5px);
            border-color: var(--color-accent);
            box-shadow: 0 15px 40px rgba(255, 69, 0, 0.15);
        }

        .sintese-info-card strong {
            transition: color 0.3s ease;
        }

        .sintese-info-card:hover strong {
            color: var(--color-accent);
        }

        .info-icon {
            background: var(--color-accent);
            color: #fff;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            border-radius: 4px;
            flex-shrink: 0;
        }

        .info-text {
            font-size: 0.8rem;
            color: var(--color-text-secondary);
            line-height: 1.4;
        }

        .info-text strong {
            display: block;
            color: #fff;
            margin-bottom: 0.25rem;
        }

        /* RIGHT COLUMN: STATS & GLOWING LINE */
        .hero-sintese-right {
            display: flex;
            align-items: flex-start;
            justify-content: flex-start;
            gap: 4rem;
            height: 100%;
            padding-left: 2rem;
            position: relative;
        }

        .sintese-stats {
            display: flex;
            flex-direction: column;
            gap: 2.5rem;
            margin-top: 4rem;
        }

        .stat-item {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .stat-number {
            font-size: 1.5rem;
            font-weight: 300;
            color: var(--color-text-secondary);
            line-height: 1;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 0.75rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            font-weight: 700;
            color: var(--color-text-primary);
        }

        .sintese-google-reviews {
            margin-top: 2rem;
            display: inline-flex;
            flex-direction: column;
            gap: 0.5rem;
            padding: 1rem;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.05);
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            align-items: flex-start;
        }

        .sintese-google-reviews:hover {
            background: rgba(255, 255, 255, 0.06);
            border-color: rgba(255, 255, 255, 0.15);
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
        }

        .google-score-row {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .google-score-number {
            font-size: 1.8rem;
            font-weight: 800;
            color: #fff;
            line-height: 1;
        }

        .sintese-stars {
            display: flex;
            gap: 2px;
            font-size: 1.2rem;
        }

        .star-full {
            color: #fbbc05;
        }

        .star-half {
            background: linear-gradient(90deg, #fbbc05 50%, rgba(255, 255, 255, 0.2) 50%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .glowing-line-container {
            position: relative;
            width: 1px;
            height: 80%;
            margin-top: auto;
            margin-bottom: auto;
        }

        .glowing-line-track {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(255, 255, 255, 0.05);
        }

        .glowing-line-glow {
            position: absolute;
            top: 0;
            left: -1px;
            width: 3px;
            height: 100px;
            background: linear-gradient(to bottom, transparent, var(--color-accent), transparent);
            box-shadow: 0 0 15px var(--color-accent), 0 0 30px var(--color-accent);
            animation: lineGlowDrop 4s infinite linear;
        }

        @keyframes lineGlowDrop {
            0% {
                top: -100px;
                opacity: 0;
            }

            10% {
                opacity: 1;
            }

            90% {
                opacity: 1;
            }

            100% {
                top: 100%;
                opacity: 0;
            }
        }

        /* RESPONSIVENESS */
        @media (max-width: 1200px) {
            .hero-sintese-container {
                grid-template-columns: 1fr 1fr;
            }

            .hero-sintese-right {
                grid-column: 1 / -1;
                display: flex;
                padding-left: 0;
                justify-content: center;
                border-top: 1px solid rgba(255, 255, 255, 0.05);
                padding-top: 2rem;
            }

            .glowing-line-container {
                display: none;
            }

            .sintese-stats {
                flex-direction: row;
                flex-wrap: wrap;
                justify-content: center;
                gap: 2rem;
                margin-top: 0;
            }
        }

        @media (max-width: 900px) {
            .hero-sintese-container {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 4rem;
                padding-top: 6rem;
            }

            .hero-sintese-left {
                align-items: center;
            }

            .sintese-desc {
                text-align: center;
            }

            .btn-sintese {
                width: 100%;
                justify-content: center;
            }

            .hero-sintese-center {
                height: 450px;
            }

            .collage-wrapper {
                transform: scale(0.65);
            }
        }

        @media (max-width: 480px) {
            .sintese-title {
                font-size: 2.5rem;
            }

            .sintese-title .sintese-sub {
                font-size: 0.9rem;
            }

            .hero-sintese-center {
                height: 350px;
            }

            .c-img-3 {
                width: 280px;
                height: 280px;
            }

            .sintese-info-card {
                width: 90%;
            }

            .sintese-stats {
                gap: 1.5rem;
            }
        }

        /* ==========================================================================
           3.1. HERO LAYOUT & STRUCTURE (OLD)
           ========================================================================== */
        .hero-automotive {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            overflow: hidden;
            background: linear-gradient(to right, #030303 0%, transparent 100%);
        }

        .hero-container {
            position: relative;
            z-index: 10;
            width: 100%;
            max-width: 1600px;
            margin: 0 auto;
            padding: 0 6vw;
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            align-items: center;
            gap: 4rem;
        }

        .hero-content {
            max-width: 700px;
            position: relative;
            z-index: 20;
        }

        /* Logo Integration */
        .hero-logo {
            display: block;
            margin-bottom: 2rem;
            max-width: 85px;
            height: auto;
            z-index: 50;
            filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.6));
        }

        /* ==========================================================================
           4. TYPOGRAPHY & CONTENT
           ========================================================================== */
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.5rem 1.25rem;
            border: 1px solid rgba(255, 69, 0, 0.3);
            border-radius: 100px;
            margin-bottom: 2rem;
            background: rgba(255, 69, 0, 0.05);
            backdrop-filter: blur(10px);
            box-shadow: 0 0 20px rgba(255, 69, 0, 0.1);
        }

        .hero-badge-dot {
            width: 8px;
            height: 8px;
            background: var(--color-accent);
            border-radius: 50%;
            box-shadow: 0 0 10px var(--color-accent);
            animation: pulse-dot 2s infinite;
        }

        @keyframes pulse-dot {
            0% {
                box-shadow: 0 0 0 0 rgba(255, 69, 0, 0.6);
            }

            70% {
                box-shadow: 0 0 0 10px rgba(255, 69, 0, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(255, 69, 0, 0);
            }
        }

        .hero-badge-text {
            font-size: 0.7rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            font-weight: 700;
            color: var(--color-text-primary);
        }

        .hero-title {
            font-size: clamp(3.5rem, 6.5vw, 6rem);
            font-weight: 700;
            line-height: 1.05;
            letter-spacing: -0.04em;
            margin: 0 0 1.5rem 0;
            color: var(--color-text-primary);
        }

        .accent-text {
            background: linear-gradient(135deg, var(--color-accent), #ff8a00);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            display: inline-block;
            text-shadow: 0 10px 40px rgba(255, 69, 0, 0.2);
            position: relative;
        }

        /* Correção para SplitType manter o gradiente */
        .accent-text .word,
        .accent-text .char {
            background: linear-gradient(135deg, var(--color-accent), #ff8a00);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .hero-desc {
            font-size: clamp(0.95rem, 1.2vw, 1.1rem);
            color: var(--color-text-secondary);
            line-height: 1.4;
            font-weight: 400;
            max-width: 540px;
            margin: 0 0 1.5rem 0;
        }

        /* ==========================================================================
           5. BUTTONS & CTAS
           ========================================================================== */
        .hero-actions {
            display: flex;
            gap: 1.5rem;
            align-items: center;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: linear-gradient(135deg, rgba(255, 69, 0, 0.9), rgba(255, 138, 0, 0.9));
            color: #fff;
            padding: 1.25rem 2.5rem;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.95rem;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            border: 1px solid rgba(255, 138, 0, 0.2);
            box-shadow: 0 10px 30px rgba(255, 69, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.15);
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
            cursor: pointer;
            text-decoration: none;
        }

        .btn-primary::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 50%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transform: skewX(-20deg);
            transition: all 0.6s ease;
        }

        .btn-primary:hover::after {
            left: 150%;
        }

        .btn-avatar-wrapper {
            display: inline-flex;
            flex-direction: row-reverse;
            align-items: center;
            justify-content: center;
            gap: 1.2rem;
            position: relative;
            z-index: 10;
        }

        .avatar-ricardo {
            width: 80px;
            height: auto;
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
            top: 5px;
            /* fine tune pointing */
        }

        .btn-avatar-wrapper:hover .avatar-ricardo {
            transform: scale(1.1) rotate(5deg);
        }

        @media (max-width: 768px) {
            .btn-avatar-wrapper {
                flex-direction: row-reverse;
                gap: 0.8rem;
            }

            .avatar-ricardo {
                width: 60px;
                top: 2px;
            }
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 69, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
        }

        .btn-outline {
            background: rgba(255, 255, 255, 0.02);
            color: var(--color-text-primary);
            padding: 1.25rem 2.5rem;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.95rem;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            border: 1px solid var(--color-border);
            backdrop-filter: blur(10px);
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            transition: all 0.4s ease;
            cursor: pointer;
            text-decoration: none;
        }

        .btn-outline:hover {
            border-color: rgba(255, 255, 255, 0.3);
            background: rgba(255, 255, 255, 0.05);
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
        }

        /* ==========================================================================
           6. CINEMATIC RIGHT COLUMN (FEATHER MASK)
           ========================================================================== */
        .visual-wrapper {
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            width: 55vw;
            height: 100vh;
            z-index: 1;
            /* Máscara suave para desaparecer nas bordas e integrar com o fundo escuro */
            -webkit-mask-image: radial-gradient(ellipse at 65% 50%, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 0) 80%);
            mask-image: radial-gradient(ellipse at 65% 50%, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 0) 80%);
            overflow: hidden;
        }

        .visual-vignette {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            /* Sombra interna para escurecer as bordas da imagem */
            box-shadow: inset 0 0 150px rgba(3, 3, 3, 1), inset 0 0 50px rgba(3, 3, 3, 0.8);
            z-index: 3;
            pointer-events: none;
        }

        .visual-overlay-gradient {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            /* Gradiente vindo da esquerda para integrar com o texto */
            background: linear-gradient(to right, #030303 0%, rgba(3, 3, 3, 0.4) 30%, transparent 100%);
            z-index: 2;
            pointer-events: none;
        }

        .parallax-img {
            width: 120%;
            height: 120%;
            object-fit: cover;
            object-position: center;
            position: absolute;
            top: -10%;
            left: -10%;
            z-index: 1;
            will-change: transform, opacity;
            /* Leve aumento de contraste e saturação para estética automotiva */
            filter: contrast(1.1) saturate(1.1);
            animation: heroImageFadeIn 2.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
            opacity: 0;
        }

        @keyframes heroImageFadeIn {
            0% {
                opacity: 0;
                transform: scale(1.05);
            }

            100% {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes slideUpFade {
            0% {
                opacity: 0;
                transform: translateY(30px);
            }

            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-item {
            opacity: 0;
            animation: slideUpFade 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }

        .delay-1 {
            animation-delay: 0.2s;
        }

        .delay-2 {
            animation-delay: 0.4s;
        }

        .delay-3 {
            animation-delay: 0.6s;
        }

        .delay-4 {
            animation-delay: 0.8s;
        }

        .delay-5 {
            animation-delay: 1.0s;
        }

        .delay-6 {
            animation-delay: 1.2s;
        }

        /* ==========================================================================
           7. RESPONSIVENESS
           ========================================================================== */
        .mobile-desc-wrapper {
            display: none;
        }

        .mobile-cta-text {
            display: none;
        }

        @media (max-width: 1024px) {
            .hero-sintese {
                padding: 1rem 0 2rem 0;
            }

            .hero-sintese-container {
                grid-template-columns: 1fr;
                gap: 2rem;
                padding-top: 0.5rem;
            }

            .hero-sintese-left,
            .hero-sintese-right {
                align-items: center;
                text-align: center;
                padding-left: 0;
                justify-content: center;
            }

            .sintese-desc {
                margin: 0 auto;
                text-align: center;
            }

            .sintese-logo {
                max-width: 200px;
                margin-bottom: 1rem;
            }

            .glowing-line-container {
                display: none;
            }

            .sintese-stats {
                margin-top: 0;
                align-items: center;
            }

            .hero-sintese-center {
                height: 450px;
            }

            .desktop-desc-wrapper {
                display: none !important;
            }

            .mobile-desc-wrapper {
                display: flex !important;
                flex-direction: column;
                align-items: center;
                padding: 0 1rem;
                text-align: center;
                position: relative;
                z-index: 20;
            }

            .hero-container {
                grid-template-columns: 1fr;
                padding: 0 2rem;
                text-align: center;
                height: 97vh;
                display: flex;
                flex-direction: column;
                box-sizing: border-box;
            }

            .hero-content {
                max-width: 100%;
                display: flex;
                flex-direction: column;
                align-items: center;
                margin-top: 0;
                flex-grow: 1;
            }

            .hero-badge {
                margin-bottom: 1.5rem;
            }

            .hero-desc {
                margin: 0 auto 2rem auto;
            }

            .latest-products {
                padding-top: 3rem !important;
            }

            .hero-automotive {
                align-items: flex-start;
                padding-top: 3vh;
                box-sizing: border-box;
            }

            .mobile-cta-text {
                display: block !important;
                margin-top: auto;
                text-align: center;
                margin-bottom: 1rem;
            }

            .hero-actions {
                justify-content: center;
                margin-top: 0;
                padding-bottom: 2.5rem;
                width: 100%;
            }

            .visual-wrapper {
                width: 100vw;
                height: 55vh;
                top: auto;
                bottom: 0;
                left: 0;
                -webkit-mask-image: radial-gradient(ellipse at 50% 80%, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 0) 80%);
                mask-image: radial-gradient(ellipse at 50% 80%, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 0) 80%);
            }

            .visual-overlay-gradient {
                background: linear-gradient(to top, #030303 0%, rgba(3, 3, 3, 0.6) 30%, transparent 100%);
            }

            .ambient-glow {
                top: 30%;
                left: 50%;
                transform: translate(-50%, -50%);
                width: 100vw;
                height: 100vw;
            }
        }

        @media (max-width: 480px) {
            .hero-container {
                padding: 0 1.5rem;
            }

            .hero-logo {
                max-width: 150px;
                margin-bottom: 1rem;
            }

            .hero-headline-group {
                margin-bottom: 1.5rem !important;
            }

            .hero-desc {
                margin: 0 auto 1.5rem auto !important;
            }

            .btn-primary,
            .btn-outline {
                width: 100%;
                max-width: 320px;
                margin: 0 auto;
                box-sizing: border-box;
                justify-content: center;
                padding: 1rem 1.5rem !important;
                font-size: 0.85rem !important;
            }

            .hero-title {
                font-size: clamp(2.5rem, 12vw, 3.5rem);
            }
        }

        /* ==========================================================================
           8. LATEST PRODUCTS CAROUSEL
           ========================================================================== */
        .carousel-container {
            display: flex;
            gap: 1.5rem;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            padding: 1rem 0 4rem;
            /* Zero horizontal padding allows bleeding */
            scroll-padding-left: 6vw;
            /* Keeps the snap point aligned with the header */
            scroll-behavior: smooth;
            -ms-overflow-style: none;
            /* IE and Edge */
            scrollbar-width: none;
            /* Firefox */
        }

        .carousel-container::-webkit-scrollbar {
            display: none;
            /* Chrome, Safari and Opera */
        }

        .carousel-card:first-child {
            margin-left: 6vw;
        }

        .carousel-card:last-child {
            margin-right: 6vw;
        }

        .carousel-card {
            scroll-snap-align: start;
            flex: 0 0 380px;
            height: 520px;
            background: #111;
            border-radius: 24px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            flex-direction: column;
            overflow: hidden;
            position: relative;
            cursor: grab;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
        }

        .carousel-card:hover {
            transform: scale(1.02);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
            border-color: rgba(255, 255, 255, 0.1);
        }

        .card-image-wrapper {
            position: absolute;
            inset: 0;
            z-index: 0;
            pointer-events: none;
        }

        .card-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .carousel-card:hover .card-image {
            transform: scale(1.05);
        }

        .card-gradient {
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, rgba(3, 3, 3, 0.95) 0%, rgba(3, 3, 3, 0.6) 35%, rgba(3, 3, 3, 0.2) 60%, transparent 100%);
            z-index: 1;
        }

        .card-content {
            padding: 2.5rem 2rem;
            text-align: left;
            z-index: 2;
            position: relative;
            pointer-events: none;
            display: flex;
            flex-direction: column;
            flex: 1;
            box-sizing: border-box;
        }

        .card-badge {
            color: var(--color-accent);
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.05em;
            margin-bottom: 0.75rem;
            text-transform: uppercase;
        }

        .card-title {
            font-size: 1.8rem;
            font-weight: 700;
            margin: 0 0 0.5rem;
            color: var(--color-text-primary);
            letter-spacing: -0.02em;
        }

        .card-desc {
            font-size: 0.95rem;
            color: var(--color-text-secondary);
            margin: 0 0 1rem;
            line-height: 1.4;
        }

        .card-wa-btn {
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.4rem;
            margin-top: auto;
            align-self: center;
            padding: 0.6rem 1.4rem;
            border-radius: 50px;
            color: #fff;
            font-size: 0.8rem;
            font-weight: 600;
            text-decoration: none;
            letter-spacing: 0.02em;
            transition: all 0.3s ease;
            pointer-events: auto;
            overflow: hidden;
            z-index: 1;
        }

        .card-wa-btn::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(from 0deg, transparent 70%, var(--color-accent) 100%);
            animation: spin-border 2.5s linear infinite reverse;
            z-index: -2;
        }

        .card-wa-btn::after {
            content: '';
            position: absolute;
            inset: 1.5px;
            border-radius: 50px;
            background: rgba(15, 15, 15, 0.75);
            backdrop-filter: blur(10px);
            z-index: -1;
            transition: background 0.3s ease;
        }

        @keyframes spin-border {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        .card-wa-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 69, 0, 0.3);
            color: var(--color-accent);
        }

        .card-wa-btn:hover::after {
            background: rgba(255, 69, 0, 0.2);
        }

        .card-wa-btn img {
            opacity: 0.9;
        }

        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.05);
            color: white;
            cursor: pointer;
            z-index: 10;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        }

        .carousel-btn:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-50%) scale(1.05);
        }

        .carousel-btn.prev {
            left: 2vw;
        }

        .carousel-btn.next {
            right: 2vw;
        }

        @media (max-width: 768px) {
            .carousel-card {
                flex: 0 0 280px;
                height: 420px;
            }

            .carousel-btn {
                display: none;
                /* Hide arrows on touch devices */
            }
        }

/* --- Next Block --- */

@keyframes pulse-glow {
                        0% {
                            box-shadow: 0 10px 30px rgba(255, 69, 0, 0.25), 0 0 0 0 rgba(255, 138, 0, 0.6);
                        }

                        50% {
                            box-shadow: 0 10px 30px rgba(255, 69, 0, 0.25), 0 0 0 15px rgba(255, 138, 0, 0);
                        }

                        100% {
                            box-shadow: 0 10px 30px rgba(255, 69, 0, 0.25), 0 0 0 0 rgba(255, 138, 0, 0);
                        }
                    }

                    .btn-pulse {
                        animation: pulse-glow 2s infinite ease-in-out;
                    }

                    .btn-pulse:hover {
                        animation-play-state: paused;
                    }

/* --- Next Block --- */

@keyframes marquee {
                        0% {
                            transform: translateX(0);
                        }

                        100% {
                            transform: translateX(-100%);
                        }
                    }

/* --- Next Block --- */

.kit-video-container {
                        position: relative;
                        width: 100%;
                        max-width: 1000px;
                        margin: 4rem auto 0;
                    }

                    .kit-video-wrapper {
                        position: relative;
                        width: 100%;
                        overflow: hidden;
                        background: #000;
                        /* Feather mask effect */
                        -webkit-mask-image: radial-gradient(ellipse at center, black 70%, rgba(0, 0, 0, 0.2) 95%, transparent 100%);
                        mask-image: radial-gradient(ellipse at center, black 70%, rgba(0, 0, 0, 0.2) 95%, transparent 100%);
                    }

                    .kit-video-wrapper video {
                        width: 100%;
                        height: auto;
                        display: block;
                        object-fit: cover;
                        aspect-ratio: 16/9;
                        opacity: 0.95;
                    }

                    @media (max-width: 768px) {
                        .kit-video-wrapper {
                            -webkit-mask-image: radial-gradient(ellipse at center, black 85%, transparent 100%);
                            mask-image: radial-gradient(ellipse at center, black 85%, transparent 100%);
                        }

                        .kit-video-wrapper video {
                            aspect-ratio: 16/9;
                        }
                    }

/* --- Next Block --- */

.kit-grid {
                        display: grid;
                        grid-template-columns: repeat(3, minmax(0, 380px));
                        justify-content: center;
                        gap: 1.5rem;
                    }

                    .kit-card {
                        margin: 0 !important;
                        width: 100%;
                        height: auto;
                        aspect-ratio: 380/520;
                        padding: 0;
                    }

                    @media (max-width: 1024px) {
                        .kit-grid {
                            display: flex;
                            justify-content: flex-start;
                            overflow-x: auto;
                            scroll-snap-type: x mandatory;
                            scroll-padding-left: 6vw;
                            padding-bottom: 2rem;
                            -ms-overflow-style: none;
                            scrollbar-width: none;
                            margin-left: -6vw;
                            margin-right: -6vw;
                            padding-left: 6vw;
                            padding-right: 6vw;
                        }

                        .kit-grid::-webkit-scrollbar {
                            display: none;
                        }

                        .kit-card {
                            flex: 0 0 80vw;
                            max-width: 380px;
                            scroll-snap-align: start;
                        }
                    }

/* --- Next Block --- */

.tailor-grid {
                        display: grid;
                        grid-template-columns: 4fr 5fr;
                        gap: 5rem;
                        width: 100%;
                        align-items: center;
                        margin-bottom: 4rem;
                    }

                    .tailor-feature {
                        background: rgba(255, 255, 255, 0.02);
                        border: 1px solid rgba(255, 255, 255, 0.05);
                        border-radius: 20px;
                        padding: 1.8rem;
                        transition: all 0.3s ease;
                    }

                    .tailor-feature:hover {
                        background: rgba(255, 255, 255, 0.05);
                        border-color: rgba(255, 69, 0, 0.3);
                        transform: translateX(10px);
                    }

                    .btn-tailor-mobile {
                        display: none !important;
                    }

                    @media (max-width: 1024px) {
                        .tailor-grid {
                            display: flex;
                            flex-direction: column;
                            gap: 0;
                            margin-bottom: 0 !important;
                        }

                        .tailor-grid .section-content {
                            display: contents !important;
                        }

                        .tailor-grid .section-header {
                            order: 1;
                            text-align: center !important;
                            margin-bottom: 2.5rem !important;
                        }

                        .tailor-grid .section-header h2 {
                            text-align: center !important;
                        }

                        .tailor-grid .section-header>div {
                            margin: 0 auto 1.5rem !important;
                        }

                        .tailor-grid .tailor-media-wrapper {
                            order: 2;
                            margin-bottom: 2.5rem;
                            width: 100%;
                        }

                        .tailor-grid .features-container {
                            order: 3;
                        }

                        .tailor-feature:hover {
                            transform: translateY(-5px);
                        }

                        .btn-tailor-desktop {
                            display: none !important;
                        }

                        .btn-tailor-mobile {
                            display: flex !important;
                        }
                    }

/* --- Next Block --- */

.carousel-wrapper {
                        position: relative;
                        width: 100%;
                    }

                    .carousel-btn {
                        position: absolute;
                        top: 50%;
                        transform: translateY(-50%);
                        z-index: 10;
                        background: rgba(32, 33, 36, 0.95);
                        color: #fff;
                        border: 1px solid rgba(255, 255, 255, 0.1);
                        width: 48px;
                        height: 48px;
                        border-radius: 50%;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        cursor: pointer;
                        transition: all 0.3s ease;
                        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
                    }

                    .carousel-btn:hover {
                        background: var(--color-accent);
                        transform: translateY(-50%) scale(1.1);
                        border-color: var(--color-accent);
                    }

                    .carousel-btn.prev {
                        left: 8px;
                    }

                    .carousel-btn.next {
                        right: 8px;
                    }

                    .reviews-section .carousel-btn.prev {
                        left: -52px;
                    }

                    .reviews-section .carousel-btn.next {
                        right: -52px;
                    }

                    @media (max-width: 768px) {
                        .carousel-btn {
                            display: none !important;
                        }
                    }

                    .review-carousel-container {
                        display: flex;
                        gap: 1.5rem;
                        overflow-x: auto;
                        scroll-snap-type: x mandatory;
                        scroll-behavior: smooth;
                        -ms-overflow-style: none;
                        scrollbar-width: none;
                        padding-bottom: 2rem;
                    }

                    .review-carousel-container::-webkit-scrollbar {
                        display: none;
                    }

                    .gmb-card {
                        background-color: #202124;
                        border-radius: 16px;
                        padding: 1.5rem;
                        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
                        display: flex;
                        flex-direction: column;
                        gap: 1rem;
                        width: 400px;
                        flex: 0 0 auto;
                        scroll-snap-align: start;
                        font-family: 'Roboto', 'Inter', sans-serif;
                        color: #e8eaed;
                        text-align: left;
                        border: 1px solid rgba(255, 255, 255, 0.05);
                    }

                    @media (max-width: 768px) {
                        .review-carousel-container {
                            margin-left: -6vw;
                            margin-right: -6vw;
                            padding-left: 6vw;
                            padding-right: 6vw;
                            gap: 1rem;
                        }

                        .gmb-card {
                            width: 80vw;
                            max-width: 250px;
                            padding: 1rem;
                            gap: 0.75rem;
                        }

                        .gmb-avatar {
                            width: 32px;
                            height: 32px;
                            font-size: 1rem;
                        }

                        .gmb-name {
                            font-size: 0.9rem;
                        }

                        .gmb-stats {
                            font-size: 0.75rem;
                        }

                        .gmb-star {
                            width: 12px;
                            height: 12px;
                        }

                        .gmb-text {
                            font-size: 0.85rem;
                        }

                        .gmb-gallery {
                            gap: 2px;
                            margin-top: auto !important;
                            margin-bottom: auto !important;
                        }

                        .gmb-gallery.gallery-n {
                            grid-template-columns: repeat(4, 1fr) !important;
                        }
                    }

                    .gmb-menu {
                        position: relative;
                    }

                    .gmb-menu::after {
                        content: "Ver avaliação no Google";
                        position: absolute;
                        top: calc(100% + 8px);
                        right: 0;
                        background-color: #303134;
                        color: #e8eaed;
                        padding: 10px 14px;
                        border-radius: 8px;
                        font-size: 0.85rem;
                        font-weight: 500;
                        white-space: nowrap;
                        opacity: 0;
                        visibility: hidden;
                        transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
                        transform: translateY(-10px);
                        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
                        border: 1px solid rgba(255, 255, 255, 0.1);
                        z-index: 100;
                    }

                    .gmb-menu.show-tooltip::after {
                        opacity: 1;
                        visibility: visible;
                        transform: translateY(0);
                    }

                    .gmb-header {
                        display: flex;
                        align-items: center;
                        gap: 12px;
                    }

                    .gmb-avatar {
                        width: 40px;
                        height: 40px;
                        border-radius: 50%;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        font-size: 1.2rem;
                        font-weight: bold;
                        color: white;
                        flex-shrink: 0;
                    }

                    .gmb-user-info {
                        flex: 1;
                        display: flex;
                        flex-direction: column;
                    }

                    .gmb-name {
                        font-size: 1rem;
                        font-weight: 600;
                        color: #fff;
                        margin: 0;
                        line-height: 1.2;
                    }

                    .gmb-stats {
                        font-size: 0.85rem;
                        color: #9aa0a6;
                        margin: 0;
                        margin-top: 2px;
                    }

                    .gmb-menu {
                        color: #9aa0a6;
                        cursor: pointer;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        text-decoration: none;
                        transition: color 0.3s ease;
                    }

                    .gmb-menu:hover {
                        color: #fff;
                    }

                    .gmb-rating-row {
                        display: flex;
                        align-items: center;
                        gap: 8px;
                        margin-top: -0.25rem;
                    }

                    .gmb-stars {
                        display: flex;
                        gap: 2px;
                    }

                    .gmb-star {
                        color: #fbbc04;
                        width: 14px;
                        height: 14px;
                        fill: currentColor;
                    }

                    .gmb-time {
                        font-size: 0.85rem;
                        color: #9aa0a6;
                    }

                    .gmb-text {
                        font-size: 0.95rem;
                        line-height: 1.5;
                        color: #e8eaed;
                        margin: 0;
                        word-break: break-word;
                    }

                    .gmb-gallery {
                        margin-top: 0.5rem;
                        border-radius: 12px;
                        overflow: hidden;
                        width: 100%;
                        display: grid;
                        gap: 4px;
                    }

                    .gmb-gallery.gallery-1 {
                        grid-template-columns: 1fr;
                        margin-top: auto;
                        margin-bottom: auto;
                    }

                    .gmb-gallery.gallery-2 {
                        grid-template-columns: 1fr 1fr;
                        margin-top: auto;
                        margin-bottom: auto;
                    }

                    .gmb-gallery.gallery-3 {
                        grid-template-columns: 1fr 1fr;
                    }

                    .gmb-gallery.gallery-4 {
                        grid-template-columns: 1fr 1fr;
                    }

                    .gmb-gallery.gallery-n {
                        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
                    }

                    .gmb-gallery img {
                        width: 100%;
                        aspect-ratio: 1 / 1;
                        object-fit: cover;
                        object-position: center;
                        transition: transform 0.3s;
                        display: block;
                    }

                    .gmb-gallery.gallery-1 img {
                        aspect-ratio: 16 / 9;
                    }

                    .gmb-gallery.gallery-2 img {
                        aspect-ratio: 9 / 16;
                    }

                    .gmb-card:hover .gmb-gallery img {
                        transform: scale(1.05);
                    }

/* --- Next Block --- */

.about-grid {
                        display: grid;
                        grid-template-columns: 5fr 4fr;
                        gap: 5rem;
                        width: 100%;
                        align-items: center;
                    }

                    .btn-mobile-only {
                        display: none !important;
                    }

                    .btn-desktop-only {
                        display: flex !important;
                    }

                    .mobile-features {
                        display: none !important;
                    }

                    .desktop-features {
                        display: flex !important;
                    }

                    @media (max-width: 1024px) {
                        .about-info {
                            padding-top: 1.5rem !important;
                            padding-bottom: 2rem !important;
                        }

                        .site-footer {
                            margin-top: 0 !important;
                            padding-top: 2rem !important;
                        }

                        .about-grid {
                            display: flex;
                            flex-direction: column;
                            gap: 0;
                        }

                        .about-grid .section-content {
                            display: contents !important;
                        }

                        .about-grid .section-header {
                            order: 1;
                            text-align: center !important;
                            margin-bottom: 1.5rem !important;
                        }

                        .about-grid .section-header h2 {
                            text-align: center !important;
                        }

                        .about-grid .video-wrapper-mobile {
                            order: 2;
                            margin-bottom: 3rem;
                        }

                        .about-grid .features-wrapper {
                            order: 4;
                        }

                        .btn-mobile-only {
                            display: flex !important;
                        }

                        .btn-desktop-only {
                            display: none !important;
                        }

                        .mobile-features {
                            display: flex !important;
                        }

                        .desktop-features {
                            display: none !important;
                        }
                    }

                    .card-wa-btn.always-active {
                        transform: translateY(-2px);
                        box-shadow: 0 5px 15px rgba(255, 69, 0, 0.3);
                        border-color: rgba(255, 255, 255, 0.3);
                        background: rgba(255, 255, 255, 0.05);
                    }

                    .card-wa-btn.always-active::after {
                        background: rgba(255, 69, 0, 0.2);
                    }

/* --- Next Block --- */

.footer-logo-animated {
                    display: inline-flex;
                    justify-content: center;
                    align-items: center;
                    margin-bottom: 0.5rem;
                        text-decoration: none;
                        transition: color 0.3s ease;
                    }

                    .gmb-menu:hover {
                        color: #fff;
                    }

                    .gmb-rating-row {
                        display: flex;
                        align-items: center;
                        gap: 8px;
                        margin-top: -0.25rem;
                    }

                    .gmb-stars {
                        display: flex;
                        gap: 2px;
                    }

                    .gmb-star {
                        color: #fbbc04;
                        width: 14px;
                        height: 14px;
                        fill: currentColor;
                    }

                    .gmb-time {
                        font-size: 0.85rem;
                        color: #9aa0a6;
                    }

                    .gmb-text {
                        font-size: 0.95rem;
                        line-height: 1.5;
                        color: #e8eaed;
                        margin: 0;
                        word-break: break-word;
                    }

                    .gmb-gallery {
                        margin-top: 0.5rem;
                        border-radius: 12px;
                        overflow: hidden;
                        width: 100%;
                        display: grid;
                        gap: 4px;
                    }

                    .gmb-gallery.gallery-1 {
                        grid-template-columns: 1fr;
                        margin-top: auto;
                        margin-bottom: auto;
                    }

                    .gmb-gallery.gallery-2 {
                        grid-template-columns: 1fr 1fr;
                        margin-top: auto;
                        margin-bottom: auto;
                    }

                    .gmb-gallery.gallery-3 {
                        grid-template-columns: 1fr 1fr;
                    }

                    .gmb-gallery.gallery-4 {
                        grid-template-columns: 1fr 1fr;
                    }

                    .gmb-gallery.gallery-n {
                        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
                    }

                    .gmb-gallery img {
                        width: 100%;
                        aspect-ratio: 1 / 1;
                        object-fit: cover;
                        object-position: center;
                        transition: transform 0.3s;
                        display: block;
                    }

                    .gmb-gallery.gallery-1 img {
                        aspect-ratio: 16 / 9;
                    }

                    .gmb-gallery.gallery-2 img {
                        aspect-ratio: 9 / 16;
                    }

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

/* --- Next Block --- */

.about-grid {
                        display: grid;
                        grid-template-columns: 5fr 4fr;
                        gap: 5rem;
                        width: 100%;
                        align-items: center;
                    }

                    .btn-mobile-only {
                        display: none !important;
                    }

                    .btn-desktop-only {
                        display: flex !important;
                    }

                    .mobile-features {
                        display: none !important;
                    }

                    .desktop-features {
                        display: flex !important;
                    }

                    @media (max-width: 1024px) {
                        .about-info {
                            padding-top: 1.5rem !important;
                            padding-bottom: 2rem !important;
                        }

                        .site-footer {
                            margin-top: 0 !important;
                            padding-top: 2rem !important;
                        }

                        .about-grid {
                            display: flex;
                            flex-direction: column;
                            gap: 0;
                        }

                        .about-grid .section-content {
                            display: contents !important;
                        }

                        .about-grid .section-header {
                            order: 1;
                            text-align: center !important;
                            margin-bottom: 1.5rem !important;
                        }

                        .about-grid .section-header h2 {
                            text-align: center !important;
                        }

                        .about-grid .video-wrapper-mobile {
                            order: 2;
                            margin-bottom: 3rem;
                        }

                        .about-grid .features-wrapper {
                            order: 4;
                        }

                        .btn-mobile-only {
                            display: flex !important;
                        }

                        .btn-desktop-only {
                            display: none !important;
                        }

                        .mobile-features {
                            display: flex !important;
                        }

                        .desktop-features {
                            display: none !important;
                        }
                    }

                    .card-wa-btn.always-active {
                        transform: translateY(-2px);
                        box-shadow: 0 5px 15px rgba(255, 69, 0, 0.3);
                        border-color: rgba(255, 255, 255, 0.3);
                        background: rgba(255, 255, 255, 0.05);
                    }

                    .card-wa-btn.always-active::after {
                        background: rgba(255, 69, 0, 0.2);
                    }

/* --- Next Block --- */

.footer-logo-animated {
                    display: inline-flex;
                    justify-content: center;
                    align-items: center;
                    margin-bottom: 0.5rem;
                }

                .footer-logo-animated img {
                    animation: neon-pulse 3s ease-in-out infinite;
                    max-width: 160px;
                }

                @keyframes neon-pulse {

                    0%,
                    100% {
                        filter: drop-shadow(0 0 2px rgba(255, 69, 0, 0.2));
                        opacity: 0.8;
                    }

                    50% {
                        filter: drop-shadow(0 0 15px rgba(255, 69, 0, 0.9)) drop-shadow(0 0 40px rgba(255, 69, 0, 0.6));
                        opacity: 1;
                    }
                }

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq-item {
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    overflow: hidden;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
}

.faq-item.active {
    border-color: rgba(255, 69, 0, 0.25);
    background: rgba(255, 69, 0, 0.03);
}

.faq-question {
    width: 100%;
    padding: 1.4rem 1.8rem;
    background: transparent;
    background-color: transparent;
    border: none;
    outline: none;
    color: var(--color-text-primary);
    font-size: 1.05rem;
    font-weight: 600;
    font-family: var(--font-primary);
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    transition: color 0.3s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.faq-question:hover {
    color: var(--color-accent);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--color-accent);
    flex-shrink: 0;
    transition: transform 0.3s ease;
    line-height: 1;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 1.8rem;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 1.8rem 1.4rem;
}

.faq-answer p {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin: 0;
}

.faq-answer strong {
    color: var(--color-text-primary);
    font-weight: 600;
}

/* ==========================================================================
   FOOTER SERVICES / TAGS
   ========================================================================== */
.footer-tag {
    font-size: 0.78rem;
    color: rgba(245, 245, 247, 0.35);
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
}

.footer-tag:hover {
    color: var(--color-accent);
}

.footer-tag-sep {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.12);
    margin: 0 0.15rem;
}

@media (max-width: 768px) {
    .faq-question {
        font-size: 0.95rem;
        padding: 1.2rem 1.4rem;
    }

    .faq-answer {
        padding: 0 1.4rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.4rem 1.2rem;
    }

    .footer-tag {
        font-size: 0.72rem;
    }
}