﻿        :root {
            --primary-yellow: #F2E205;
            --secondary-orange: #F29F05;
            --accent-orange: #F28705;
            --dark-gray: #595959;
            --black: #0D0D0D;
        }

        body {
            font-family: 'Roboto', sans-serif;
            background-color: #f8f9fa;
        }

        .navbar {
            background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 100%);
            box-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }

        .hero-section {
            position: relative;
            overflow: hidden;
            padding: 150px 0 100px;
            min-height: 92vh;
            display: flex;
            align-items: center;
            background: #0d0d0d;
        }

        @media (max-width: 991.98px) {
            .hero-section {
                padding: 110px 0 80px;
                min-height: auto;
            }
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
        }

        .hero-bg-gradient {
            position: absolute;
            inset: 0;
            background:
                linear-gradient(135deg, rgba(13, 13, 13, 0.92) 0%, rgba(13, 13, 13, 0.75) 45%, rgba(242, 135, 5, 0.35) 100%),
                linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
        }

        .hero-bg-shapes {
            position: absolute;
            inset: 0;
            overflow: hidden;
        }

        .hero-shape {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.45;
            animation: heroFloat 12s ease-in-out infinite;
        }

        .hero-shape-1 {
            width: 420px;
            height: 420px;
            background: var(--accent-orange);
            top: -120px;
            right: -80px;
        }

        .hero-shape-2 {
            width: 320px;
            height: 320px;
            background: var(--primary-yellow);
            bottom: -60px;
            left: -60px;
            animation-delay: -4s;
        }

        .hero-shape-3 {
            width: 200px;
            height: 200px;
            background: var(--secondary-orange);
            top: 40%;
            left: 35%;
            animation-delay: -8s;
            opacity: 0.25;
        }

        @keyframes heroFloat {
            0%, 100% { transform: translate(0, 0) scale(1); }
            33% { transform: translate(20px, -15px) scale(1.05); }
            66% { transform: translate(-15px, 10px) scale(0.95); }
        }

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

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.45rem 1rem;
            margin-bottom: 1.25rem;
            background: rgba(242, 226, 5, 0.12);
            border: 1px solid rgba(242, 226, 5, 0.25);
            border-radius: 50px;
            color: var(--primary-yellow);
            font-size: 0.82rem;
            font-weight: 600;
            letter-spacing: 0.02em;
        }

        .hero-badge i {
            font-size: 0.85rem;
        }

        .hero-title {
            font-size: clamp(2rem, 4.5vw, 3.25rem);
            font-weight: 800;
            color: #ffffff;
            line-height: 1.15;
            margin-bottom: 1.25rem;
            letter-spacing: -0.02em;
        }

        .hero-highlight {
            background: linear-gradient(90deg, var(--primary-yellow), var(--accent-orange));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.82);
            line-height: 1.7;
            margin-bottom: 1.5rem;
            max-width: 540px;
        }

        .hero-features {
            display: flex;
            flex-wrap: wrap;
            gap: 0.65rem 1.25rem;
            margin-bottom: 1.75rem;
        }

        .hero-feature {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.75);
        }

        .hero-feature i {
            color: var(--primary-yellow);
            font-size: 0.8rem;
        }

        .hero-stats {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem 1.5rem;
            margin-bottom: 2rem;
            padding: 1.25rem 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .hero-stat {
            display: flex;
            flex-direction: column;
        }

        .hero-stat-value {
            display: flex;
            align-items: baseline;
            line-height: 1;
        }

        .hero-stat-number {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary-yellow);
        }

        .hero-stat-suffix {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--accent-orange);
            margin-left: 2px;
        }

        .hero-stat-label {
            font-size: 0.78rem;
            color: rgba(255, 255, 255, 0.55);
            margin-top: 0.35rem;
            text-transform: uppercase;
            letter-spacing: 0.06em;
        }

        .hero-stat-divider {
            width: 1px;
            height: 36px;
            background: rgba(255, 255, 255, 0.12);
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 0.85rem;
            margin-bottom: 1.5rem;
        }

        .btn-hero-primary {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.85rem 1.75rem;
            background: #25D366;
            color: #fff;
            border: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            text-decoration: none;
            transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
            box-shadow: 0 8px 28px rgba(37, 211, 102, 0.35);
        }

        .btn-hero-primary:hover {
            background: #1ebe5d;
            color: #fff;
            transform: translateY(-3px);
            box-shadow: 0 12px 32px rgba(37, 211, 102, 0.45);
        }

        .btn-hero-secondary {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.85rem 1.75rem;
            background: rgba(255, 255, 255, 0.08);
            color: #fff;
            border: 1px solid rgba(255, 255, 255, 0.25);
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            text-decoration: none;
            backdrop-filter: blur(8px);
            transition: all 0.25s ease;
        }

        .btn-hero-secondary:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.4);
            color: #fff;
            transform: translateY(-3px);
        }

        .hero-categories {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .hero-category-pill {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.4rem 0.9rem;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 50px;
            color: rgba(255, 255, 255, 0.85);
            font-size: 0.8rem;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.25s ease;
        }

        .hero-category-pill i {
            color: var(--accent-orange);
            font-size: 0.75rem;
        }

        .hero-category-pill:hover {
            background: rgba(242, 135, 5, 0.2);
            border-color: rgba(242, 135, 5, 0.4);
            color: #fff;
            transform: translateY(-2px);
        }

        .hero-visual {
            position: relative;
            max-width: 520px;
            margin: 0 auto;
        }

        .hero-image-frame {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
            border: 1px solid rgba(255, 255, 255, 0.12);
            transform: perspective(1000px) rotateY(-3deg) rotateX(2deg);
            transition: transform 0.4s ease;
        }

        .hero-visual:hover .hero-image-frame {
            transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
        }

        .hero-image {
            width: 100%;
            height: auto;
            display: block;
            aspect-ratio: 4 / 3;
            object-fit: cover;
        }

        .hero-image-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 50%, rgba(13, 13, 13, 0.5) 100%);
            pointer-events: none;
        }

        .hero-float-card {
            position: absolute;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem 1rem;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 14px;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
            z-index: 3;
            animation: heroCardFloat 5s ease-in-out infinite;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .hero-float-card:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
        }

        .hero-float-card-1 {
            top: 8%;
            left: -8%;
            animation-delay: 0s;
        }

        .hero-float-card-2 {
            bottom: 12%;
            right: -6%;
            animation-delay: -2.5s;
        }

        .hero-float-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: linear-gradient(135deg, var(--accent-orange), var(--secondary-orange));
            color: #fff;
            font-size: 1rem;
            flex-shrink: 0;
        }

        .hero-float-card strong {
            display: block;
            font-size: 0.875rem;
            color: var(--black);
            line-height: 1.2;
        }

        .hero-float-card span {
            font-size: 0.75rem;
            color: var(--dark-gray);
        }

        @keyframes heroCardFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-8px); }
        }

        .hero-rating {
            position: absolute;
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1.1rem;
            background: var(--black);
            border: 1px solid rgba(242, 226, 5, 0.3);
            border-radius: 50px;
            white-space: nowrap;
            z-index: 4;
        }

        .hero-rating-stars {
            color: var(--primary-yellow);
            font-size: 0.75rem;
            letter-spacing: 1px;
        }

        .hero-rating span {
            font-size: 0.78rem;
            color: rgba(255, 255, 255, 0.8);
            font-weight: 500;
        }

        .hero-scroll {
            position: absolute;
            bottom: 28px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.35rem;
            color: rgba(255, 255, 255, 0.5);
            text-decoration: none;
            font-size: 0.75rem;
            font-weight: 500;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            z-index: 2;
            transition: color 0.25s ease;
            animation: heroScrollBounce 2s ease-in-out infinite;
        }

        .hero-scroll:hover {
            color: var(--primary-yellow);
        }

        .hero-scroll i {
            font-size: 0.85rem;
        }

        @keyframes heroScrollBounce {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50% { transform: translateX(-50%) translateY(6px); }
        }

        @media (max-width: 991.98px) {
            .hero-float-card-1 {
                left: 0;
                top: 4%;
            }

            .hero-float-card-2 {
                right: 0;
                bottom: 8%;
            }

            .hero-image-frame {
                transform: none;
            }

            .hero-stat-divider {
                display: none;
            }

            .hero-stats {
                gap: 1.25rem;
            }

            .hero-scroll {
                display: none;
            }
        }

        @media (max-width: 575.98px) {
            .hero-float-card {
                padding: 0.55rem 0.75rem;
                gap: 0.5rem;
            }

            .hero-float-card span {
                display: none;
            }

            .hero-float-icon {
                width: 34px;
                height: 34px;
                font-size: 0.85rem;
            }

            .hero-stat-number {
                font-size: 1.5rem;
            }
        }

        /* Neutraliza hovers genéricos da hero em styles.css */
        .hero-section:hover::before,
        .hero-section:hover::after,
        .hero-section:hover .hero-content,
        .hero-section:hover .hero-title,
        .hero-section:hover .hero-subtitle,
        .hero-section:hover .hero-image-frame {
            transform: none;
            animation: none;
        }

        .hero-section::before {
            display: none;
        }

        .valor-icon {
            font-size: 2rem;
        }

        .btn-primary-custom {
            background: #FFFFFF;
            color: #F28705;
            border: none;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
        }

        .btn-primary-custom:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
            background: #F5F5F5;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--black);
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
        }

        /* ===== Products Section ===== */
        .products-section {
            padding: 100px 0;
            background: linear-gradient(180deg, #f8f9fa 0%, #fff 50%, #f8f9fa 100%);
            position: relative;
        }

        .products-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(242, 135, 5, 0.3), transparent);
        }

        .products-header {
            text-align: center;
            max-width: 640px;
            margin: 0 auto 3.5rem;
        }

        .section-eyebrow {
            display: inline-block;
            padding: 0.35rem 1rem;
            margin-bottom: 1rem;
            background: rgba(242, 135, 5, 0.1);
            border: 1px solid rgba(242, 135, 5, 0.2);
            border-radius: 50px;
            color: var(--accent-orange);
            font-size: 0.78rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        .products-title {
            font-size: clamp(1.75rem, 3.5vw, 2.5rem);
            font-weight: 800;
            color: var(--black);
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
        }

        .products-subtitle {
            font-size: 1.05rem;
            color: var(--dark-gray);
            line-height: 1.7;
            margin: 0;
        }

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

        .product-card {
            display: flex;
            flex-direction: column;
            background: #fff;
            border-radius: 18px;
            overflow: hidden;
            text-decoration: none;
            color: inherit;
            border: 1px solid rgba(0, 0, 0, 0.06);
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
            transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
            opacity: 0;
            transform: translateY(32px);
        }

        .product-card.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 48px rgba(242, 135, 5, 0.15);
            border-color: rgba(242, 135, 5, 0.25);
        }

        .product-card-media {
            position: relative;
            height: 200px;
            overflow: hidden;
        }

        .product-card-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .product-card:hover .product-card-media img {
            transform: scale(1.08);
        }

        .product-card-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 30%, rgba(13, 13, 13, 0.55) 100%);
            transition: opacity 0.35s ease;
        }

        .product-card:hover .product-card-overlay {
            opacity: 0.85;
        }

        .product-card-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            padding: 0.3rem 0.75rem;
            background: var(--primary-yellow);
            color: var(--black);
            font-size: 0.7rem;
            font-weight: 700;
            border-radius: 50px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            z-index: 2;
        }

        .product-card-body {
            padding: 1.35rem 1.5rem 1.5rem;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .product-card-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: linear-gradient(135deg, rgba(242, 135, 5, 0.12), rgba(242, 159, 5, 0.08));
            color: var(--accent-orange);
            font-size: 1.1rem;
            margin-bottom: 0.85rem;
            transition: transform 0.3s ease, background 0.3s ease;
        }

        .product-card:hover .product-card-icon {
            transform: scale(1.08);
            background: linear-gradient(135deg, var(--accent-orange), var(--secondary-orange));
            color: #fff;
        }

        .product-card-body h3 {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--black);
            margin-bottom: 0.5rem;
            transition: color 0.25s ease;
        }

        .product-card:hover .product-card-body h3 {
            color: var(--accent-orange);
        }

        .product-card-body p {
            font-size: 0.875rem;
            color: var(--dark-gray);
            line-height: 1.6;
            margin-bottom: 1rem;
            flex: 1;
        }

        .product-card-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem;
            list-style: none;
            padding: 0;
            margin: 0 0 1rem;
        }

        .product-card-tags li {
            padding: 0.25rem 0.65rem;
            background: #f3f4f6;
            border-radius: 50px;
            font-size: 0.72rem;
            font-weight: 500;
            color: var(--dark-gray);
            transition: background 0.25s ease, color 0.25s ease;
        }

        .product-card:hover .product-card-tags li {
            background: rgba(242, 135, 5, 0.1);
            color: var(--accent-orange);
        }

        .product-card-cta {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--accent-orange);
            transition: gap 0.25s ease;
        }

        .product-card-cta i {
            font-size: 0.75rem;
            transition: transform 0.25s ease;
        }

        .product-card:hover .product-card-cta {
            gap: 0.65rem;
        }

        .product-card:hover .product-card-cta i {
            transform: translateX(4px);
        }

        .products-footer {
            margin-top: 3.5rem;
            padding-top: 2.5rem;
            border-top: 1px solid rgba(0, 0, 0, 0.06);
        }

        .products-trust {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1.5rem 2.5rem;
            margin-bottom: 2rem;
        }

        .products-trust-item {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            font-size: 0.9rem;
            color: var(--dark-gray);
            font-weight: 500;
        }

        .products-trust-item i {
            color: var(--accent-orange);
            font-size: 1rem;
        }

        .products-actions {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .btn-products-catalog {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.85rem 1.75rem;
            background: linear-gradient(135deg, var(--accent-orange), var(--secondary-orange));
            color: #fff;
            border: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.95rem;
            text-decoration: none;
            transition: transform 0.25s ease, box-shadow 0.25s ease;
            box-shadow: 0 6px 24px rgba(242, 135, 5, 0.3);
        }

        .btn-products-catalog:hover {
            color: #fff;
            transform: translateY(-3px);
            box-shadow: 0 10px 32px rgba(242, 135, 5, 0.4);
        }

        .btn-products-whatsapp {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.85rem 1.75rem;
            background: transparent;
            color: #25D366;
            border: 2px solid #25D366;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.95rem;
            text-decoration: none;
            transition: all 0.25s ease;
        }

        .btn-products-whatsapp:hover {
            background: #25D366;
            color: #fff;
            transform: translateY(-3px);
            box-shadow: 0 6px 24px rgba(37, 211, 102, 0.3);
        }

        @media (max-width: 991.98px) {
            .products-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.25rem;
            }

            .products-section {
                padding: 70px 0;
            }
        }

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

            .product-card-media {
                height: 180px;
            }

            .products-trust {
                flex-direction: column;
                align-items: center;
                gap: 1rem;
            }

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

            .btn-products-catalog,
            .btn-products-whatsapp {
                justify-content: center;
            }
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--accent-orange) 100%);
            border-radius: 2px;
        }

        .card-custom {
            border: none;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            overflow: hidden;
        }

        .card-custom:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }

        .card-header-custom {
            background: #F28705;
            color: #FFFFFF;
            font-weight: 600;
            padding: 1.5rem;
            border: none;
        }

        .product-icon {
            font-size: 3rem;
            color: #FFFFFF;
            margin-bottom: 1rem;
        }

        /* ===== Contact Section ===== */
        .contact-section {
            position: relative;
            padding: 100px 0;
            background: #0d0d0d;
            overflow: hidden;
        }

        .contact-bg {
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse at 80% 20%, rgba(242, 135, 5, 0.12) 0%, transparent 50%),
                radial-gradient(ellipse at 10% 80%, rgba(242, 226, 5, 0.06) 0%, transparent 40%);
            pointer-events: none;
        }

        .contact-header {
            text-align: center;
            max-width: 560px;
            margin: 0 auto 3rem;
            position: relative;
            z-index: 2;
        }

        .contact-title {
            font-size: clamp(1.75rem, 3vw, 2.35rem);
            font-weight: 800;
            color: #fff;
            margin-bottom: 0.75rem;
            letter-spacing: -0.02em;
        }

        .contact-subtitle {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.65);
            line-height: 1.65;
            margin: 0;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 380px;
            gap: 2rem;
            position: relative;
            z-index: 2;
            margin-bottom: 2.5rem;
        }

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

        .contact-card {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            padding: 1.35rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            text-decoration: none;
            color: inherit;
            transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, opacity 0.5s ease;
            opacity: 0;
            transform: translateY(24px);
        }

        .contact-card.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        .contact-card:hover {
            transform: translateY(-4px);
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(242, 226, 5, 0.3);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
        }

        .contact-card--whatsapp:hover {
            border-color: rgba(37, 211, 102, 0.4);
            background: rgba(37, 211, 102, 0.08);
        }

        .contact-card-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
            flex-shrink: 0;
            border-radius: 12px;
            background: rgba(242, 226, 5, 0.12);
            color: var(--primary-yellow);
            font-size: 1.15rem;
            transition: background 0.3s ease, color 0.3s ease;
        }

        .contact-card--whatsapp .contact-card-icon {
            background: rgba(37, 211, 102, 0.15);
            color: #25D366;
        }

        .contact-card:hover .contact-card-icon {
            background: var(--accent-orange);
            color: #fff;
        }

        .contact-card--whatsapp:hover .contact-card-icon {
            background: #25D366;
            color: #fff;
        }

        .contact-card h3 {
            font-size: 0.8rem;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.55);
            text-transform: uppercase;
            letter-spacing: 0.06em;
            margin-bottom: 0.25rem;
        }

        .contact-card p {
            font-size: 0.95rem;
            font-weight: 600;
            color: #fff;
            line-height: 1.45;
            margin-bottom: 0.65rem;
        }

        .contact-card-action {
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            font-size: 0.78rem;
            font-weight: 700;
            color: var(--primary-yellow);
            opacity: 0;
            transform: translateY(4px);
            transition: opacity 0.25s ease, transform 0.25s ease, gap 0.25s ease;
        }

        .contact-card:hover .contact-card-action {
            opacity: 1;
            transform: translateY(0);
        }

        .contact-card--whatsapp .contact-card-action {
            color: #25D366;
        }

        .contact-card-action i {
            font-size: 0.65rem;
            transition: transform 0.25s ease;
        }

        .contact-card:hover .contact-card-action i {
            transform: translateX(3px);
        }

        .contact-sidebar {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .contact-hours {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            padding: 1.35rem;
        }

        .contact-hours h3 {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.95rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 1rem;
        }

        .contact-hours h3 i {
            color: var(--primary-yellow);
        }

        .contact-hours ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .contact-hours li {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.5rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            font-size: 0.85rem;
        }

        .contact-hours li:last-child {
            border-bottom: none;
        }

        .contact-hours li span {
            color: rgba(255, 255, 255, 0.55);
        }

        .contact-hours li strong {
            color: #fff;
            font-weight: 600;
        }

        .contact-map {
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.08);
            flex: 1;
            min-height: 180px;
        }

        .contact-map iframe {
            width: 100%;
            height: 100%;
            min-height: 180px;
            border: 0;
            display: block;
            filter: grayscale(30%) contrast(1.05);
            transition: filter 0.3s ease;
        }

        .contact-map:hover iframe {
            filter: grayscale(0%) contrast(1);
        }

        .btn-contact-form {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.85rem 1.25rem;
            background: transparent;
            color: #fff;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.875rem;
            text-decoration: none;
            transition: all 0.25s ease;
        }

        .btn-contact-form:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.35);
            color: #fff;
        }

        .contact-cta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1.5rem;
            padding: 1.75rem 2rem;
            background: linear-gradient(135deg, rgba(37, 211, 102, 0.12), rgba(37, 211, 102, 0.04));
            border: 1px solid rgba(37, 211, 102, 0.25);
            border-radius: 18px;
            position: relative;
            z-index: 2;
        }

        .contact-cta-text strong {
            display: block;
            font-size: 1rem;
            color: #fff;
            margin-bottom: 0.25rem;
        }

        .contact-cta-text span {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.6);
        }

        .btn-contact-whatsapp {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.85rem 1.75rem;
            background: #25D366;
            color: #fff;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.95rem;
            text-decoration: none;
            white-space: nowrap;
            transition: transform 0.25s ease, box-shadow 0.25s ease;
            box-shadow: 0 6px 24px rgba(37, 211, 102, 0.3);
        }

        .btn-contact-whatsapp:hover {
            color: #fff;
            transform: translateY(-3px);
            box-shadow: 0 10px 32px rgba(37, 211, 102, 0.4);
        }

        @media (max-width: 991.98px) {
            .contact-section {
                padding: 70px 0;
            }

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

            .contact-sidebar {
                order: -1;
            }

            .contact-map {
                min-height: 220px;
            }

            .contact-cta {
                flex-direction: column;
                text-align: center;
            }

            .contact-card-action {
                opacity: 1;
                transform: none;
            }
        }

        @media (max-width: 575.98px) {
            .contact-cards {
                grid-template-columns: 1fr;
            }
        }

        .rustic-border {
            border: 3px solid var(--accent-orange);
            border-radius: 10px;
            position: relative;
        }

        .rustic-border::before {
            content: '';
            position: absolute;
            top: -3px;
            left: -3px;
            right: -3px;
            bottom: -3px;
            background: linear-gradient(45deg, var(--primary-yellow), var(--accent-orange), var(--secondary-orange));
            border-radius: 10px;
            z-index: -1;
        }

        .text-rustic {
            color: var(--accent-orange);
            font-weight: 600;
        }

        .bg-rustic {
            background: #F28705;
        }

        /* BotÃ£o WhatsApp Flutuante */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1000;
        }

        .whatsapp-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            background: #25D366;
            color: white;
            border-radius: 50%;
            text-decoration: none;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            transition: all 0.3s ease;
            position: relative;
            animation: pulse-whatsapp 2s infinite;
        }

        .whatsapp-btn:hover {
            background: #128C7E;
            color: white;
            transform: scale(1.1);
            box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
        }

        .whatsapp-btn i {
            font-size: 1.8rem;
        }

        .whatsapp-tooltip {
            position: absolute;
            right: 70px;
            top: 50%;
            transform: translateY(-50%);
            background: var(--black);
            color: white;
            padding: 8px 12px;
            border-radius: 6px;
            font-size: 0.9rem;
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }

        .whatsapp-tooltip::after {
            content: '';
            position: absolute;
            top: 50%;
            right: -5px;
            transform: translateY(-50%);
            border: 5px solid transparent;
            border-left-color: var(--black);
        }

        .whatsapp-btn:hover .whatsapp-tooltip {
            opacity: 1;
            visibility: visible;
        }

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

        /* Responsividade do WhatsApp */
        @media (max-width: 768px) {
            .whatsapp-float {
                bottom: 20px;
                right: 20px;
            }
            
            .whatsapp-btn {
                width: 50px;
                height: 50px;
            }
            
            .whatsapp-btn i {
                font-size: 1.5rem;
            }
            
            .whatsapp-tooltip {
                display: none;
            }
        }

        /* ===== Brands Section ===== */
        .brands-section {
            padding: 80px 0 72px;
            background: linear-gradient(180deg, #fff 0%, #f5f6f8 100%);
            overflow: hidden;
        }

        .brands-header {
            text-align: center;
            max-width: 560px;
            margin: 0 auto 2.5rem;
        }

        .brands-title {
            font-size: clamp(1.75rem, 3vw, 2.35rem);
            font-weight: 800;
            color: var(--black);
            margin-bottom: 0.75rem;
            letter-spacing: -0.02em;
        }

        .brands-subtitle {
            font-size: 1rem;
            color: var(--dark-gray);
            line-height: 1.65;
            margin: 0;
        }

        .brands-marquee {
            position: relative;
            margin-bottom: 0;
            mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
            -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
        }

        .brands-track {
            display: flex;
            align-items: center;
            gap: 2rem;
            width: max-content;
            animation: brands-scroll 35s linear infinite;
        }

        .brands-marquee:hover .brands-track {
            animation-play-state: paused;
        }

        @keyframes brands-scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        .brand-logo {
            flex-shrink: 0;
            width: 160px;
            height: 88px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #fff;
            border-radius: 14px;
            border: 1px solid rgba(0, 0, 0, 0.06);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            padding: 1rem 1.25rem;
            transition: border-color 0.25s ease, box-shadow 0.25s ease;
        }

        .brand-logo:hover {
            border-color: rgba(242, 135, 5, 0.35);
            box-shadow: 0 8px 28px rgba(242, 135, 5, 0.12);
        }

        .brand-logo img {
            max-height: 48px;
            max-width: 100%;
            width: auto;
            object-fit: contain;
            filter: grayscale(100%);
            opacity: 0.7;
            transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
        }

        .brand-logo:hover img {
            filter: grayscale(0%);
            opacity: 1;
            transform: scale(1.05);
        }

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

        .brand-card {
            background: #fff;
            border-radius: 14px;
            border: 1px solid rgba(0, 0, 0, 0.06);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
            height: 96px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1rem;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.25s ease, box-shadow 0.25s ease;
        }

        .brand-card.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        .brand-card:hover {
            border-color: rgba(242, 135, 5, 0.35);
            box-shadow: 0 8px 24px rgba(242, 135, 5, 0.1);
        }

        .brand-card img {
            max-height: 44px;
            max-width: 100%;
            object-fit: contain;
            filter: grayscale(100%);
            opacity: 0.75;
            transition: filter 0.3s ease, opacity 0.3s ease;
        }

        .brand-card:hover img {
            filter: grayscale(0%);
            opacity: 1;
        }

        @media (prefers-reduced-motion: reduce) {
            .brands-track {
                animation: none;
            }

            .brands-marquee {
                display: none;
            }

            .brands-grid {
                display: grid;
            }
        }

        @media (max-width: 767px) {
            .brands-section {
                padding: 64px 0 56px;
            }

            .brands-marquee {
                display: none;
            }

            .brands-grid {
                display: grid;
            }
        }

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

        /* ===== Departments Section ===== */
        .departments-section {
            padding: 100px 0;
            background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
        }

        .departments-header {
            text-align: center;
            max-width: 600px;
            margin: 0 auto 3rem;
        }

        .departments-title {
            font-size: clamp(1.75rem, 3.5vw, 2.5rem);
            font-weight: 800;
            color: var(--black);
            margin-bottom: 0.75rem;
            letter-spacing: -0.02em;
        }

        .departments-subtitle {
            font-size: 1.05rem;
            color: var(--dark-gray);
            line-height: 1.65;
            margin: 0;
        }

        .departments-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-template-rows: repeat(3, 220px);
            gap: 1.25rem;
        }

        .dept-card {
            position: relative;
            display: block;
            border-radius: 18px;
            overflow: hidden;
            text-decoration: none;
            color: #fff;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            transition: transform 0.35s ease, box-shadow 0.35s ease, opacity 0.5s ease;
            opacity: 0;
            transform: translateY(28px);
        }

        .dept-card.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        .dept-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 48px rgba(242, 135, 5, 0.2);
        }

        .dept-card--featured {
            grid-column: span 2;
            grid-row: span 2;
        }

        .dept-card img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.55s ease;
        }

        .dept-card:hover img {
            transform: scale(1.07);
        }

        .dept-card-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(13, 13, 13, 0.05) 0%, rgba(13, 13, 13, 0.75) 55%, rgba(13, 13, 13, 0.92) 100%);
            transition: background 0.35s ease;
        }

        .dept-card:hover .dept-card-overlay {
            background: linear-gradient(180deg, rgba(242, 135, 5, 0.1) 0%, rgba(13, 13, 13, 0.8) 50%, rgba(13, 13, 13, 0.95) 100%);
        }

        .dept-card-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 1.5rem;
            z-index: 2;
        }

        .dept-card--featured .dept-card-content {
            padding: 2rem;
        }

        .dept-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: rgba(242, 226, 5, 0.2);
            backdrop-filter: blur(8px);
            color: var(--primary-yellow);
            font-size: 1rem;
            margin-bottom: 0.75rem;
            transition: background 0.3s ease, transform 0.3s ease;
        }

        .dept-card:hover .dept-icon {
            background: var(--accent-orange);
            color: #fff;
            transform: scale(1.08);
        }

        .dept-card-content h3 {
            font-size: 1.15rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 0.35rem;
        }

        .dept-card--featured .dept-card-content h3 {
            font-size: 1.5rem;
        }

        .dept-card-content p {
            font-size: 0.82rem;
            color: rgba(255, 255, 255, 0.78);
            line-height: 1.5;
            margin-bottom: 0.75rem;
        }

        .dept-card--featured .dept-card-content p {
            font-size: 0.95rem;
            max-width: 320px;
        }

        .dept-cta {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            font-size: 0.8rem;
            font-weight: 700;
            color: var(--primary-yellow);
            opacity: 0;
            transform: translateY(8px);
            transition: opacity 0.3s ease, transform 0.3s ease, gap 0.25s ease;
        }

        .dept-card:hover .dept-cta {
            opacity: 1;
            transform: translateY(0);
        }

        .dept-card:hover .dept-cta {
            gap: 0.65rem;
        }

        .dept-cta i {
            font-size: 0.7rem;
            transition: transform 0.25s ease;
        }

        .dept-card:hover .dept-cta i {
            transform: translateX(3px);
        }

        @media (max-width: 991.98px) {
            .departments-section {
                padding: 70px 0;
            }

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

            .dept-card {
                min-height: 240px;
            }

            .dept-card--featured {
                grid-row: span 1;
                grid-column: span 2;
                min-height: 300px;
            }

            .dept-cta {
                opacity: 1;
                transform: none;
            }
        }

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

            .dept-card--featured {
                grid-column: span 1;
            }

            .dept-card {
                min-height: 220px;
            }
        }

        /* ===== Highlights Carousel ===== */
        .highlights-section {
            position: relative;
            padding: 100px 0;
            background: #0d0d0d;
            overflow: hidden;
        }

        .highlights-bg {
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse at 20% 50%, rgba(242, 135, 5, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 20%, rgba(242, 226, 5, 0.08) 0%, transparent 40%);
            pointer-events: none;
        }

        .section-eyebrow--light {
            background: rgba(242, 226, 5, 0.1);
            border-color: rgba(242, 226, 5, 0.2);
            color: var(--primary-yellow);
        }

        .highlights-header {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 2rem;
            margin-bottom: 2.5rem;
            position: relative;
            z-index: 2;
        }

        .highlights-title {
            font-size: clamp(1.75rem, 3vw, 2.25rem);
            font-weight: 800;
            color: #fff;
            margin: 0 0 0.5rem;
            letter-spacing: -0.02em;
        }

        .highlights-subtitle {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.65);
            margin: 0;
            max-width: 480px;
            line-height: 1.6;
        }

        .highlights-controls {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            flex-shrink: 0;
        }

        .highlights-nav {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.06);
            color: #fff;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.25s ease;
        }

        .highlights-nav:hover {
            background: var(--accent-orange);
            border-color: var(--accent-orange);
            transform: scale(1.05);
        }

        .highlights-nav:disabled {
            opacity: 0.35;
            cursor: not-allowed;
            transform: none;
        }

        .highlights-counter {
            display: flex;
            align-items: baseline;
            gap: 0.15rem;
            min-width: 56px;
            justify-content: center;
            font-variant-numeric: tabular-nums;
        }

        .highlights-counter #highlightsCurrent {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--primary-yellow);
        }

        .highlights-counter-sep {
            color: rgba(255, 255, 255, 0.35);
            font-size: 0.9rem;
        }

        .highlights-counter #highlightsTotal {
            font-size: 0.9rem;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.5);
        }

        .highlights-viewport {
            position: relative;
            overflow: hidden;
            z-index: 2;
            margin: 0 -10px;
            touch-action: pan-y;
        }

        .highlights-track {
            display: flex;
            transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            will-change: transform;
        }

        .highlight-slide {
            flex: 0 0 25%;
            padding: 0 10px;
            box-sizing: border-box;
        }

        .highlight-card {
            display: flex;
            flex-direction: column;
            height: 100%;
            background: #fff;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
            transition: transform 0.35s ease, box-shadow 0.35s ease;
        }

        .highlight-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 48px rgba(242, 135, 5, 0.2);
        }

        .highlight-card-media {
            position: relative;
            height: 200px;
            overflow: hidden;
        }

        .highlight-card-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

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

        .highlight-category {
            position: absolute;
            top: 12px;
            left: 12px;
            padding: 0.3rem 0.75rem;
            background: rgba(13, 13, 13, 0.75);
            backdrop-filter: blur(8px);
            color: var(--primary-yellow);
            font-size: 0.7rem;
            font-weight: 700;
            border-radius: 50px;
            text-transform: uppercase;
            letter-spacing: 0.06em;
        }

        .highlight-card-body {
            padding: 1.25rem 1.35rem 1.35rem;
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        .highlight-card-body h3 {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--black);
            margin-bottom: 0.45rem;
        }

        .highlight-card-body p {
            font-size: 0.82rem;
            color: var(--dark-gray);
            line-height: 1.55;
            margin-bottom: 1rem;
            flex: 1;
        }

        .highlight-card-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.45rem;
            padding: 0.6rem 1rem;
            background: rgba(37, 211, 102, 0.1);
            color: #1da851;
            border: 1px solid rgba(37, 211, 102, 0.3);
            border-radius: 50px;
            font-size: 0.82rem;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.25s ease;
        }

        .highlight-card-btn:hover {
            background: #25D366;
            border-color: #25D366;
            color: #fff;
        }

        .highlights-footer {
            margin-top: 2rem;
            position: relative;
            z-index: 2;
        }

        .highlights-progress {
            height: 3px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 2px;
            overflow: hidden;
            margin-bottom: 1.25rem;
        }

        .highlights-progress-bar {
            height: 100%;
            width: 0%;
            background: linear-gradient(90deg, var(--primary-yellow), var(--accent-orange));
            border-radius: 2px;
            transition: width 0.1s linear;
        }

        .highlights-dots {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
        }

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

        .highlights-dot.active {
            background: var(--primary-yellow);
            width: 28px;
            border-radius: 4px;
        }

        @media (max-width: 1200px) {
            .highlight-slide {
                flex: 0 0 33.333%;
            }
        }

        @media (max-width: 992px) {
            .highlights-section {
                padding: 70px 0;
            }

            .highlights-header {
                flex-direction: column;
                align-items: flex-start;
            }

            .highlight-slide {
                flex: 0 0 50%;
            }
        }

        @media (max-width: 576px) {
            .highlight-slide {
                flex: 0 0 100%;
            }

            .highlight-card-media {
                height: 180px;
            }

            .highlights-controls {
                align-self: stretch;
                justify-content: center;
            }
        }

        /* ===== Showcase / Apresentação ===== */
        .showcase-section {
            padding: 100px 0;
            background: #fff;
            position: relative;
        }

        .showcase-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(242, 135, 5, 0.2), transparent);
        }

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

        .showcase-title {
            font-size: clamp(1.75rem, 3vw, 2.35rem);
            font-weight: 800;
            color: var(--black);
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
            line-height: 1.2;
        }

        .showcase-text {
            font-size: 1.05rem;
            color: var(--dark-gray);
            line-height: 1.75;
            margin-bottom: 2rem;
        }

        .showcase-features {
            list-style: none;
            padding: 0;
            margin: 0 0 2rem;
            display: flex;
            flex-direction: column;
            gap: 1.15rem;
        }

        .showcase-features li {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .showcase-feature-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            flex-shrink: 0;
            border-radius: 12px;
            background: linear-gradient(135deg, rgba(242, 135, 5, 0.12), rgba(242, 159, 5, 0.06));
            color: var(--accent-orange);
            font-size: 1rem;
            transition: transform 0.3s ease, background 0.3s ease;
        }

        .showcase-features li:hover .showcase-feature-icon {
            transform: scale(1.08);
            background: linear-gradient(135deg, var(--accent-orange), var(--secondary-orange));
            color: #fff;
        }

        .showcase-features strong {
            display: block;
            font-size: 0.95rem;
            color: var(--black);
            margin-bottom: 0.15rem;
        }

        .showcase-features li span {
            font-size: 0.85rem;
            color: var(--dark-gray);
            line-height: 1.4;
        }

        .showcase-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 0.85rem;
        }

        .btn-showcase-primary {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.8rem 1.5rem;
            background: linear-gradient(135deg, var(--accent-orange), var(--secondary-orange));
            color: #fff;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.9rem;
            text-decoration: none;
            transition: transform 0.25s ease, box-shadow 0.25s ease;
            box-shadow: 0 6px 24px rgba(242, 135, 5, 0.3);
        }

        .btn-showcase-primary:hover {
            color: #fff;
            transform: translateY(-3px);
            box-shadow: 0 10px 32px rgba(242, 135, 5, 0.4);
        }

        .btn-showcase-secondary {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.8rem 1.5rem;
            background: transparent;
            color: var(--black);
            border: 2px solid rgba(0, 0, 0, 0.12);
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            text-decoration: none;
            transition: all 0.25s ease;
        }

        .btn-showcase-secondary:hover {
            border-color: var(--accent-orange);
            color: var(--accent-orange);
            transform: translateY(-3px);
        }

        .showcase-gallery {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .showcase-main {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            aspect-ratio: 4 / 3;
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
            border: 1px solid rgba(0, 0, 0, 0.06);
        }

        .showcase-main img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: opacity 0.4s ease, transform 0.6s ease;
        }

        .showcase-main.is-changing img {
            opacity: 0.6;
            transform: scale(1.03);
        }

        .showcase-main-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 60%, rgba(13, 13, 13, 0.35) 100%);
            pointer-events: none;
        }

        .showcase-thumbs {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0.65rem;
        }

        .showcase-thumb {
            position: relative;
            padding: 0;
            border: 2px solid transparent;
            border-radius: 12px;
            overflow: hidden;
            cursor: pointer;
            aspect-ratio: 4 / 3;
            background: none;
            transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
        }

        .showcase-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.35s ease;
        }

        .showcase-thumb:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
        }

        .showcase-thumb:hover img {
            transform: scale(1.05);
        }

        .showcase-thumb.active {
            border-color: var(--accent-orange);
            box-shadow: 0 0 0 3px rgba(242, 135, 5, 0.2);
        }

        .showcase-caption {
            padding: 1rem 0 0;
            transition: opacity 0.3s ease;
        }

        .showcase-caption.is-changing {
            opacity: 0.5;
        }

        .showcase-caption h3 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--black);
            margin-bottom: 0.35rem;
        }

        .showcase-caption p {
            font-size: 0.875rem;
            color: var(--dark-gray);
            margin: 0;
            line-height: 1.55;
        }

        @media (max-width: 991.98px) {
            .showcase-section {
                padding: 70px 0;
            }

            .showcase-grid {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }

            .showcase-thumbs {
                grid-template-columns: repeat(4, 1fr);
            }
        }

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

            .showcase-actions {
                flex-direction: column;
            }

            .btn-showcase-primary,
            .btn-showcase-secondary {
                justify-content: center;
            }
        }

        /* ===== About Section ===== */
        .about-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #fff 50%, rgba(242, 226, 5, 0.04) 100%);
            position: relative;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
            margin-bottom: 3.5rem;
        }

        .about-title {
            font-size: clamp(1.75rem, 3vw, 2.35rem);
            font-weight: 800;
            color: var(--black);
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
            line-height: 1.2;
        }

        .about-lead {
            font-size: 1.1rem;
            color: var(--black);
            font-weight: 500;
            line-height: 1.7;
            margin-bottom: 1rem;
        }

        .about-text {
            font-size: 0.95rem;
            color: var(--dark-gray);
            line-height: 1.75;
            margin-bottom: 2rem;
        }

        .about-stats {
            display: flex;
            gap: 2rem;
            margin-bottom: 2rem;
            padding: 1.5rem 0;
            border-top: 1px solid rgba(0, 0, 0, 0.08);
            border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        }

        .about-stat {
            display: flex;
            flex-direction: column;
        }

        .about-stat-value {
            display: flex;
            align-items: baseline;
            line-height: 1;
        }

        .about-stat-number {
            font-size: 2.25rem;
            font-weight: 800;
            color: var(--accent-orange);
        }

        .about-stat-suffix {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--secondary-orange);
        }

        .about-stat-label {
            font-size: 0.75rem;
            color: var(--dark-gray);
            margin-top: 0.35rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .btn-about-primary {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.85rem 1.75rem;
            background: var(--black);
            color: var(--primary-yellow);
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.9rem;
            text-decoration: none;
            transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
        }

        .btn-about-primary:hover {
            background: var(--accent-orange);
            color: #fff;
            transform: translateY(-3px);
            box-shadow: 0 10px 32px rgba(242, 135, 5, 0.3);
        }

        .about-values-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--black);
            margin-bottom: 1.25rem;
        }

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

        .value-card {
            background: #fff;
            border: 1px solid rgba(0, 0, 0, 0.06);
            border-radius: 16px;
            padding: 1.35rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
            transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, opacity 0.5s ease;
            opacity: 0;
            transform: translateY(20px);
        }

        .value-card.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        .value-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(242, 135, 5, 0.12);
            border-color: rgba(242, 135, 5, 0.25);
        }

        .value-card .value-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            border-radius: 11px;
            background: linear-gradient(135deg, rgba(242, 135, 5, 0.12), rgba(242, 159, 5, 0.06));
            color: var(--accent-orange);
            font-size: 1rem;
            margin-bottom: 0.75rem;
            transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
        }

        .value-card:hover .value-icon {
            background: linear-gradient(135deg, var(--accent-orange), var(--secondary-orange));
            color: #fff;
            transform: scale(1.08);
        }

        .value-card h4 {
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--black);
            margin-bottom: 0.35rem;
        }

        .value-card p {
            font-size: 0.8rem;
            color: var(--dark-gray);
            line-height: 1.5;
            margin: 0;
        }

        .about-mission {
            display: flex;
            align-items: stretch;
            gap: 2rem;
            padding: 2rem 2.5rem;
            background: #fff;
            border-radius: 18px;
            border: 1px solid rgba(0, 0, 0, 0.06);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
        }

        .about-mission-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            flex: 1;
        }

        .about-mission-item i {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            flex-shrink: 0;
            border-radius: 12px;
            background: linear-gradient(135deg, var(--accent-orange), var(--secondary-orange));
            color: #fff;
            font-size: 1rem;
        }

        .about-mission-item strong {
            display: block;
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--black);
            text-transform: uppercase;
            letter-spacing: 0.06em;
            margin-bottom: 0.35rem;
        }

        .about-mission-item span {
            font-size: 0.9rem;
            color: var(--dark-gray);
            line-height: 1.55;
        }

        .about-mission-divider {
            width: 1px;
            background: rgba(0, 0, 0, 0.08);
            flex-shrink: 0;
        }

        @media (max-width: 991.98px) {
            .about-section {
                padding: 70px 0;
            }

            .about-grid {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }

            .about-mission {
                flex-direction: column;
                gap: 1.5rem;
                padding: 1.5rem;
            }

            .about-mission-divider {
                width: 100%;
                height: 1px;
            }
        }

        @media (max-width: 575.98px) {
            .about-stats {
                flex-direction: column;
                gap: 1.25rem;
            }

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

        .section-heading h6 {
            color: #F28705;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 0.5rem;
        }

        .section-heading h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--black);
            margin-bottom: 0;
        }

        .card-header-custom {
            transition: background 0.3s ease, color 0.3s ease;
        }

        .card-custom:hover .card-header-custom {
            background: #F5F5F5;
            color: #F28705;
        }
