:root {
            --color-wine: #722F37;
            --color-wine-dark: #4A1C23;
            --color-wine-light: #8B3A42;
            --color-berry: #9B2335;
            --color-cream: #FDF8F5;
            --color-warm-white: #FFFAF8;
            --color-gold: #C9A227;
            --color-dark: #1A1A1A;
            --color-gray: #6B6B6B;
            --color-light-gray: #F5F5F5;
            --font-display: 'Playfair Display', Georgia, serif;
            --font-body: 'Montserrat', -apple-system, sans-serif;
            --shadow-soft: 0 4px 20px rgba(114, 47, 55, 0.15);
            --shadow-medium: 0 8px 40px rgba(114, 47, 55, 0.2);
            --shadow-strong: 0 16px 60px rgba(114, 47, 55, 0.25);
            --radius-sm: 8px;
            --radius-md: 16px;
            --radius-lg: 24px;
            --radius-xl: 40px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-body);
            background-color: var(--color-cream);
            color: var(--color-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Navigation */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 1rem 4%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.4s ease;
            background: linear-gradient(180deg, rgba(74, 28, 35, 0.9) 0%, rgba(74, 28, 35, 0.7) 50%, transparent 100%);
        }

        .nav.scrolled {
            background: rgba(114, 47, 55, 0.9) !important;
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            box-shadow: var(--shadow-medium);
            padding: 0.6rem 4%;
        }

        .logo img {
            height: 70px;
            width: auto;
            transition: height 0.3s ease;
        }

        .nav.scrolled .logo img {
            height: 55px;
            width: auto;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            font-size: 0.9rem;
            font-weight: 500;
            color: white;
            text-decoration: none;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
        }

        .nav-links a:visited {
            color: white;
            font-weight: 500;
        }

        .nav.scrolled .nav-links a {
            color: white !important;
            text-shadow: none;
        }

        .nav-links a:hover {
            color: var(--color-gold);
        }

        .nav-links a.nav-active {
            color: var(--color-gold);
        }

        .nav-cta {
            background: var(--color-wine);
            color: white;
            padding: 0.8rem 1.6rem;
            border-radius: var(--radius-xl);
            font-weight: 600;
            font-size: 0.85rem;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .nav.scrolled .nav-cta {
            background: var(--color-gold);
            color: var(--color-wine-dark);
        }

        .nav-cta:hover {
            background: white;
            color: var(--color-wine);
            transform: translateY(-2px);
        }

        .nav.scrolled .nav-cta:hover {
            background: white;
            color: var(--color-wine);
            transform: translateY(-2px);
        }

        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 10px;
        }

        .mobile-menu-btn span {
            width: 25px;
            height: 2px;
            background: white;
            transition: all 0.3s ease;
        }

        .nav.scrolled .mobile-menu-btn span {
            background: white;
        }

        /* Hero Section - Frutas Vermelhas */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            background: url("images/hero-bg-1.webp") center/cover no-repeat;
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(74, 28, 35, 0.85) 0%, rgba(114, 47, 55, 0.7) 50%, rgba(26, 26, 26, 0.8) 100%);
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            padding: 2rem;
            padding-top: 12rem;
            max-width: 900px;
        }

        .hero-logo {
            margin-bottom: 2rem;
        }

        .hero-logo img {
            height: 150px;
            width: auto;
            filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
        }

        .hero h1 {
            font-family: var(--font-display);
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            font-weight: 600;
            color: white;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
        }

        .hero h1 span {
            color: var(--color-gold);
            font-style: italic;
        }

        .hero p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
            max-width: 600px;
            margin: 0 auto 2.5rem;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: var(--color-wine);
            color: white;
            padding: 1.1rem 2.5rem;
            min-height: 44px;
            border-radius: var(--radius-xl);
            font-weight: 600;
            font-size: 1rem;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
            border: 2px solid var(--color-wine);
        }

        .btn-primary:hover {
            background: var(--color-wine-dark);
            border-color: var(--color-wine-dark);
            transform: translateY(-3px);
            box-shadow: var(--shadow-medium);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            padding: 1.1rem 2.5rem;
            border-radius: var(--radius-xl);
            font-weight: 600;
            font-size: 1rem;
            text-decoration: none;
            border: 2px solid rgba(255, 255, 255, 0.5);
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            background: white;
            color: var(--color-wine);
            border-color: white;
        }

        .hero-stats {
            display: flex;
            gap: 4rem;
            justify-content: center;
            margin-top: 4rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
        }

        .stat {
            text-align: center;
        }

        .stat-number {
            font-family: var(--font-display);
            font-size: 3rem;
            font-weight: 700;
            color: var(--color-gold);
        }

        .stat-label {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.8);
            margin-top: 0.3rem;
        }

        /* Clients Section */
        .clients {
            padding: 5rem 4%;
            background: var(--color-cream);
        }

        .clients-title {
            text-align: center;
            font-size: 0.85rem;
            color: var(--color-gray);
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 2.5rem;
        }

        .clients-grid {
            display: grid;
            grid-template-columns: repeat(4, auto);
            justify-content: center;
            align-items: center;
            gap: 2rem 3rem;
        }

        @media (max-width: 768px) {
            .clients-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem 2rem;
                max-width: 320px;
                margin: 0 auto;
            }
        }

        .client-type {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            font-weight: 500;
            color: var(--color-gray);
            font-size: 0.95rem;
        }

        .client-type-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--color-wine), var(--color-berry));
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .client-type-icon svg {
            width: 24px;
            height: 24px;
            fill: white;
        }

        /* Section Headers */
        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 4rem;
        }

        .section-label {
            display: inline-block;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--color-gold);
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 1rem;
        }

        .section-title {
            font-family: var(--font-display);
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--color-dark);
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: var(--color-gray);
        }

        /* Products Section - Petit Gateau Background */
        .products {
            padding: 8rem 4%;
            position: relative;
            background: url("images/hero-bg-2.webp") center/cover no-repeat fixed;
        }

        .products::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(30, 20, 20, 0.6) 0%, rgba(40, 30, 30, 0.65) 100%);
            backdrop-filter: blur(3px);
        }

        .products>* {
            position: relative;
            z-index: 2;
        }

        .products-categories {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .category-card {
            background: rgba(255, 255, 255, 0.95);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-soft);
            transition: all 0.4s ease;
            cursor: pointer;
            text-decoration: none;
            color: inherit;
            backdrop-filter: blur(10px);
        }

        .category-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-strong);
        }

        .category-image {
            height: 220px;
            background: linear-gradient(135deg, var(--color-wine), var(--color-berry));
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .category-image svg {
            width: 70px;
            height: 70px;
            fill: rgba(255, 255, 255, 0.9);
        }

        .category-info {
            padding: 1.8rem;
            text-align: center;
        }

        .category-info h3 {
            font-family: var(--font-display);
            font-size: 1.4rem;
            margin-bottom: 0.5rem;
            color: var(--color-dark);
        }

        .category-info p {
            color: var(--color-gray);
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .category-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--color-wine);
            font-weight: 600;
            font-size: 0.9rem;
        }

        .category-link svg {
            width: 16px;
            height: 16px;
            fill: currentColor;
            transition: transform 0.3s ease;
        }

        .category-card:hover .category-link svg {
            transform: translateX(5px);
        }

        /* Benefits Section - Ferrero Background */
        .benefits {
            padding: 8rem 4%;
            position: relative;
            background: url("images/hero-bg-3.webp") center/cover no-repeat fixed;
        }

        .benefits::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(74, 28, 35, 0.9) 0%, rgba(114, 47, 55, 0.85) 100%);
        }

        .benefits>* {
            position: relative;
            z-index: 2;
        }

        .benefits .section-label {
            color: var(--color-gold);
        }

        .benefits .section-title {
            color: white;
        }

        .benefits .section-subtitle {
            color: rgba(255, 255, 255, 0.8);
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .benefit-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 2.5rem;
            border-radius: var(--radius-lg);
            border: 1px solid rgba(255, 255, 255, 0.15);
            transition: all 0.4s ease;
        }

        .benefit-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.15);
        }

        .benefit-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--color-gold), #D4B847);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }

        .benefit-icon svg {
            width: 28px;
            height: 28px;
            fill: var(--color-dark);
        }

        .benefit-card h3 {
            font-family: var(--font-display);
            font-size: 1.3rem;
            margin-bottom: 0.8rem;
            color: white;
        }

        .benefit-card p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.95rem;
        }

        /* Distributor Section */
        .distributor {
            padding: 8rem 4%;
            background: var(--color-cream);
        }

        .distributor-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .distributor-text h2 {
            font-family: var(--font-display);
            font-size: clamp(2rem, 4vw, 3rem);
            margin-bottom: 1.5rem;
            color: var(--color-dark);
        }

        .distributor-text h2 span {
            color: var(--color-wine);
        }

        .distributor-text>p {
            color: var(--color-gray);
            font-size: 1.1rem;
            margin-bottom: 2rem;
        }

        .distributor-benefits {
            list-style: none;
            margin-bottom: 2.5rem;
        }

        .distributor-benefits li {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
            font-size: 1rem;
            color: var(--color-dark);
        }

        .distributor-benefits li::before {
            content: '';
            width: 28px;
            height: 28px;
            background: var(--color-wine);
            border-radius: 50%;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
            background-size: 16px;
            background-repeat: no-repeat;
            background-position: center;
            flex-shrink: 0;
        }

        .distributor-image {
            border-radius: var(--radius-lg);
            height: 400px;
            overflow: hidden;
            box-shadow: var(--shadow-strong);
        }

        .distributor-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Contact Section */
        .contact {
            padding: 8rem 4%;
            background: var(--color-warm-white);
        }

        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 4rem;
        }

        .contact-info h2 {
            font-family: var(--font-display);
            font-size: clamp(2rem, 4vw, 2.8rem);
            margin-bottom: 1.5rem;
            color: var(--color-dark);
        }

        .contact-info>p {
            color: var(--color-gray);
            font-size: 1.1rem;
            margin-bottom: 2.5rem;
        }

        .contact-details {
            list-style: none;
            margin-bottom: 2.5rem;
        }

        .contact-details li {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .contact-details-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--color-wine), var(--color-berry));
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .contact-details-icon svg {
            width: 22px;
            height: 22px;
            fill: white;
        }

        .contact-details-text strong {
            display: block;
            margin-bottom: 0.3rem;
            color: var(--color-dark);
        }

        .contact-details-text span {
            color: var(--color-gray);
        }

        .contact-form-container {
            background: white;
            padding: 3rem;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-medium);
        }

        .contact-form-container h3 {
            font-family: var(--font-display);
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            color: var(--color-dark);
        }

        .contact-form-container>p {
            color: var(--color-gray);
            margin-bottom: 2rem;
        }

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

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.5rem;
            font-size: 0.9rem;
            color: var(--color-dark);
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 1rem 1.2rem;
            border: 2px solid #eee;
            border-radius: var(--radius-md);
            font-family: var(--font-body);
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--color-wine);
        }

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

        .form-submit {
            width: 100%;
            padding: 1.2rem;
            background: var(--color-wine);
            color: white;
            border: none;
            border-radius: var(--radius-xl);
            font-family: var(--font-body);
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .form-submit:hover {
            background: var(--color-wine-dark);
            transform: translateY(-2px);
        }

        /* WhatsApp Float */
        .whatsapp-float {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 60px;
            height: 60px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            z-index: 99;
            transition: all 0.3s ease;
        }

        .whatsapp-float svg {
            width: 32px;
            height: 32px;
            fill: white;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
        }


        /* Products Section - Texto branco para fundo escuro */
        .products .section-label {
            color: var(--color-gold);
        }

        .products .section-title {
            color: white;
        }

        .products .section-subtitle {
            color: rgba(255, 255, 255, 0.85);
        }

        /* Mobile */
        .mobile-nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            max-width: 320px;
            height: 100vh;
            background: linear-gradient(180deg, #4a1c23 0%, #722F37 100%);
            z-index: 1100;
            padding: 0;
            transition: right 0.4s ease;
            display: flex;
            flex-direction: column;
            box-shadow: -4px 0 30px rgba(0,0,0,0.3);
        }

        .mobile-nav.active {
            right: 0;
        }

        .mobile-nav-header {
            padding: 2rem 1.5rem 1.5rem;
            border-bottom: 1px solid rgba(255,255,255,0.15);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .mobile-nav-logo {
            height: 55px;
            width: auto;
            filter: brightness(1.1);
        }

        .mobile-nav-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.6);
            z-index: 150;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
            backdrop-filter: blur(2px);
        }

        .mobile-nav-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .mobile-nav ul {
            list-style: none;
            padding: 1.5rem 0;
            flex: 1;
        }

        .mobile-nav li {
            border-bottom: 1px solid rgba(255,255,255,0.08);
        }

        .mobile-nav a {
            display: block;
            padding: 1rem 2rem;
            font-size: 1.05rem;
            font-weight: 600;
            color: rgba(255,255,255,0.9);
            text-decoration: none;
            letter-spacing: 0.03em;
            transition: all 0.2s;
        }

        .mobile-nav a:hover,
        .mobile-nav a.nav-active {
            color: var(--color-gold);
            padding-left: 2.5rem;
        }

        .mobile-nav-footer {
            padding: 1.5rem 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: rgba(255,255,255,0.4);
            font-size: 0.75rem;
            text-align: center;
        }

        .mobile-nav-close {
            background: rgba(255,255,255,0.15);
            border: none;
            color: white;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            font-size: 1.4rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s;
            line-height: 1;
            z-index: 1101;
            position: relative;
        }

        .mobile-nav-close:hover {
            background: rgba(255,255,255,0.25);
        }

        @media (max-width: 1024px) {

            .distributor-content,
            .contact-container {
                grid-template-columns: 1fr;
            }

            .distributor-image {
                order: -1;
                height: 300px;
            }

            .nav-links {
                gap: 1.2rem;
            }

            .nav-cta {
                padding: 0.6rem 1.2rem;
                font-size: 0.85rem;
            }
        }

        @media (max-width: 768px) {

            .hero {
                padding-top: 100px;
                min-height: 100vh;
                align-items: flex-start;
            }

            .hero-content {
                margin-top: 0;
                padding-top: 5rem;
            }

            .hero-logo img {
                height: 120px;
            width: auto;
            }

            .hero h1 {
                font-size: 2.5rem;
                margin-top: 2rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .nav-links,
            .nav-cta {
                display: none;
            }

            .mobile-menu-btn {
                display: flex;
            }

            .hero-stats {
                flex-direction: column;
                gap: 2rem;
            }

            .form-row {
                grid-template-columns: 1fr;
            }
            .delivery-buttons {
                flex-direction: column;
            }

            .delivery-btn {
                width: 100%;
                max-width: 250px;
            }
        }

        .category-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center center;
            transition: transform 0.5s ease;
        }
        .category-card:hover .category-image img {
            transform: scale(1.0);
        }
        .category-card:hover .category-image img.no-zoom {
            transform: scale(1.0);
        }

        .category-image.placeholder {
            background: linear-gradient(135deg, var(--color-wine) 0%, var(--color-wine-dark) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .category-image.placeholder svg {
            width: 60%;
            height: 60%;
            opacity: 0.5;
        }

        /* Botões Delivery */
        .delivery-section {
            background: white;
            padding: 3rem 4%;
            border-bottom: 1px solid #eee;
        }

        .delivery-container {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .delivery-title {
            font-family: var(--font-display);
            font-size: 1.8rem;
            color: var(--color-wine);
            margin-bottom: 0.5rem;
        }

        .delivery-subtitle {
            color: var(--color-gray);
            margin-bottom: 2rem;
        }

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

        .delivery-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1rem 2rem;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s;
            min-width: 150px;
        }

        .delivery-btn.ifood {
            background: #EA1D2C;
            color: white;
        }

        .delivery-btn.food99 {
            background: #FFCC00;
            color: #1A1A1A;
        }

        .delivery-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .delivery-ou {
            color: var(--color-gray);
            font-weight: 500;
        }

        .delivery-retirada {
            margin-top: 1.5rem;
            font-size: 0.95rem;
            color: var(--color-gray);
        }

        .delivery-retirada strong {
            color: var(--color-dark);
        }



        /* Seção OEM */
        .oem-section {
            padding: 6rem 4%;
            background: linear-gradient(135deg, var(--color-wine-dark) 0%, var(--color-wine) 100%);
        }

        .oem-content {
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
            color: white;
        }

        .oem-badge {
            display: inline-block;
            background: var(--color-gold);
            color: var(--color-wine-dark);
            padding: 0.4rem 1.2rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .oem-content h2 {
            font-family: var(--font-display);
            font-size: clamp(2rem, 4vw, 2.8rem);
            margin-bottom: 1rem;
        }

        .oem-content>p {
            font-size: 1.15rem;
            opacity: 0.9;
            margin-bottom: 2.5rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .oem-benefits {
            display: flex;
            justify-content: center;
            gap: 3rem;
            flex-wrap: wrap;
            margin-bottom: 2.5rem;
        }

        .oem-benefit {
            text-align: center;
        }

        .oem-benefit-icon {
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
        }

        .oem-benefit-icon svg {
            width: 28px;
            height: 28px;
            fill: var(--color-gold);
        }

        .oem-benefit h4 {
            font-size: 1rem;
            margin-bottom: 0.3rem;
        }

        .oem-benefit p {
            font-size: 0.85rem;
            opacity: 0.8;
        }

        .oem-cta {
            display: inline-block;
            background: white;
            color: var(--color-wine);
            padding: 1rem 2.5rem;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s;
        }

        .oem-cta:hover {
            transform: scale(1.05);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }

        /* Mobile pequeno < 480px */
        @media (max-width: 480px) {
            .products-categories {
                grid-template-columns: 1fr;
            }
            .category-card {
                max-width: 100%;
            }
            .category-image {
                height: 220px !important;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            .btn-primary, .btn-secondary {
                width: 100%;
                text-align: center;
                justify-content: center;
            }
            .section-title {
                font-size: 1.8rem;
            }
        }

        /* Scroll Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        .fade-in-left {
            opacity: 0;
            transform: translateX(-30px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }
        .fade-in-left.visible {
            opacity: 1;
            transform: translateX(0);
        }
        .fade-in-right {
            opacity: 0;
            transform: translateX(30px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }
        .fade-in-right.visible {
            opacity: 1;
            transform: translateX(0);
        }
    
        /* Scroll offset para navbar fixa */
        section[id], div[id] {
            scroll-margin-top: 80px;
        }
        #contato {
            scroll-margin-top: 20px;
        }
        @media (max-width: 768px) {
            section[id], div[id] {
                scroll-margin-top: 65px;
            }
            #contato {
                scroll-margin-top: 10px;
            }
        }

        /* ===== Direção de arte v34 ===== */
        .hero {
            min-height: 92vh;
            justify-content: flex-start;
            background-position: center right;
            background-size: cover;
        }
        .hero::before {
            background: linear-gradient(90deg, rgba(43,16,20,.96) 0%, rgba(74,28,35,.86) 38%, rgba(74,28,35,.32) 72%, rgba(20,10,12,.15) 100%);
        }
        .hero-content {
            text-align: left;
            max-width: 760px;
            padding: 9.5rem 4% 5rem;
            margin-left: max(0px, calc((100vw - 1320px)/2));
        }
        .hero-eyebrow {
            display: inline-flex; align-items: center; gap: .7rem;
            font-size: .72rem; font-weight: 700; letter-spacing: .18em;
            color: rgba(255,255,255,.78); text-transform: uppercase;
            margin-bottom: 1.4rem;
        }
        .hero-eyebrow::before { content:''; width: 34px; height: 1px; background: var(--color-gold); }
        .hero h1 { font-size: clamp(3rem, 6vw, 5.25rem); max-width: 760px; margin-bottom: 1.2rem; }
        .hero h1 span { display: block; color: white; font-style: normal; }
        .hero p { margin: 0 0 2rem; max-width: 650px; font-size: 1.08rem; }
        .hero-buttons { justify-content: flex-start; }
        .btn-primary { background: var(--color-gold); border-color: var(--color-gold); color: var(--color-wine-dark); box-shadow: 0 12px 28px rgba(0,0,0,.18); }
        .btn-primary:hover { background: white; border-color: white; color: var(--color-wine); }
        .hero-proof {
            display:flex; flex-wrap:wrap; gap: 1rem 2rem; margin-top: 2.6rem; padding-top: 1.4rem;
            border-top: 1px solid rgba(255,255,255,.18); max-width: 700px;
        }
        .hero-proof span { color: rgba(255,255,255,.72); font-size: .8rem; }
        .hero-proof strong { color: white; font-weight: 700; }
        .delivery-section { background: #fff; padding: 4.3rem 4%; border-top:1px solid #eee; border-bottom:1px solid #eee; }
        .delivery-kicker { display:block; color:var(--color-gold); font-size:.72rem; letter-spacing:.18em; font-weight:700; margin-bottom:.8rem; }
        .delivery-title { color: var(--color-dark); font-size:clamp(1.9rem,4vw,2.7rem); }
        .delivery-buttons { gap:.8rem; }
        .delivery-btn { border-radius: 8px; padding: .95rem 1.25rem; min-width: 0; box-shadow:none; }
        .delivery-btn.retirada { background:var(--color-wine); color:#fff; }
        .delivery-btn.ifood, .delivery-btn.food99 { border:1px solid transparent; }
        .products, .benefits { background-attachment: scroll; }
        .products { padding-top: 7rem; padding-bottom:7rem; }
        .products-categories { grid-template-columns: repeat(3, minmax(0,1fr)); gap:1.25rem; }
        .category-card { border:1px solid rgba(74,28,35,.08); box-shadow: 0 8px 28px rgba(40,20,20,.12); }
        .category-card:hover { transform:translateY(-6px); box-shadow: 0 15px 42px rgba(40,20,20,.17); }
        .category-image { height: 240px; }
        .category-info { padding:1.5rem 1.6rem 1.65rem; }
        .category-info p { min-height: 44px; }
        .oem-section { padding:6.5rem 4%; }
        .oem-content { max-width: 1080px; }
        .contact { padding: 7rem 4%; }
        .contact-info { padding-top: 1rem; }
        .contact-form-container { border:1px solid rgba(114,47,55,.08); box-shadow: 0 14px 50px rgba(40,20,20,.10); }
        @media (max-width: 900px) {
            .products-categories { grid-template-columns: repeat(2, minmax(0,1fr)); }
        }
        @media (max-width: 768px) {
            .hero { min-height: 76svh; background-position: 62% center; }
            .hero::before { background: linear-gradient(180deg, rgba(43,16,20,.84) 0%, rgba(74,28,35,.74) 58%, rgba(30,15,17,.82) 100%); }
            .hero-content { padding: 8rem 1.25rem 3.2rem; margin:0; max-width:100%; }
            .hero h1 { font-size: clamp(2.55rem, 10vw, 3.5rem); }
            .hero p { font-size:1rem; }
            .hero-buttons { flex-direction:column; align-items:stretch; }
            .hero-proof { gap:.7rem 1.1rem; }
            .delivery-buttons { flex-direction:column; align-items:stretch; }
            .delivery-btn { width:100%; }
            .products-categories { grid-template-columns:1fr; }
            .products { padding-top:5rem; padding-bottom:5rem; }
        }
        /* Ajustes v36: conversão e toque em celulares compactos */
        .mobile-contact-link { display:none; }
        .mobile-nav-actions { display:none; }
        @media (max-width:768px) {
            .nav { gap:.4rem; }
            .logo { margin-right:auto; }
            .mobile-contact-link { display:grid; place-items:center; width:42px; height:42px; border:1px solid rgba(255,255,255,.45); border-radius:50%; color:#fff; text-decoration:none; font-size:1.1rem; }
            .mobile-menu-btn { padding:9px 7px; }
            .hero-content { padding:6.25rem 1.25rem 2rem; }
            .hero-eyebrow { font-size:.62rem; margin-bottom:.8rem; letter-spacing:.14em; }
            .hero-eyebrow::before { width:22px; }
            .hero h1 { font-size:clamp(2.25rem,9.2vw,3rem); line-height:1.03; margin-bottom:.7rem; }
            .hero p { font-size:.92rem; line-height:1.45; margin-bottom:1.1rem; max-width:34rem; }
            .hero-buttons { gap:.65rem; }
            .hero-buttons .btn-primary, .hero-buttons .btn-secondary { width:100%; min-height:50px; display:flex; align-items:center; justify-content:center; padding:.8rem 1rem; }
            .hero-buttons .btn-secondary { background:transparent; border-color:rgba(255,255,255,.65); color:#fff; }
            .hero-proof { margin-top:1.15rem; padding-top:.85rem; gap:.3rem .8rem; }
            .hero-proof span { font-size:.68rem; }
            .mobile-nav ul { margin-bottom:1.5rem; }
            .mobile-nav-actions { display:grid; gap:.65rem; padding:0 1.8rem 1.4rem; }
            .mobile-nav-actions a { min-height:48px; display:flex; align-items:center; justify-content:center; border-radius:8px; text-decoration:none; text-transform:uppercase; letter-spacing:.07em; font-size:.72rem; font-weight:700; }
            .mobile-nav-actions .mobile-commercial { background:var(--color-gold); color:var(--color-wine-dark); }
            .mobile-nav-actions .mobile-buy { border:1px solid rgba(255,255,255,.5); color:#fff; }
            .oem-section { padding:4rem 1.25rem; }
            .oem-content>p { font-size:.95rem; margin-bottom:1.5rem; }
            .oem-benefits { display:grid; grid-template-columns:1fr 1fr; gap:1.1rem .5rem; margin-bottom:1.5rem; }
            .oem-benefit-icon { width:46px; height:46px; margin-bottom:.55rem; }
            .oem-benefit p { font-size:.74rem; }
            .oem-cta { width:100%; padding:1rem; }
            .contact { padding:4rem 1.25rem; }
            .contact-container { gap:2.2rem; }
            .contact-form-container { padding:1.35rem; }
            .contact-form-container>p { margin-bottom:1.2rem; }
            .form-group { margin-bottom:.85rem; }
            .form-group input, .form-group select, .form-group textarea { min-height:48px; font-size:16px; }
            .form-group textarea { min-height:96px; }
            .form-submit { width:100%; min-height:50px; }
        }
        @media (max-width:380px) {
            .hero { min-height:74svh; }
            .hero-content { padding-top:5.65rem; }
            .hero h1 { font-size:2.15rem; }
            .hero-proof span { font-size:.63rem; }
        }
        /* Refinamento v37: composição mais contida em telas amplas */
        @media (min-width:769px) {
            .nav { justify-content:center; gap:clamp(1.2rem, 2vw, 2.25rem); padding:.75rem 2rem; }
            .nav.scrolled { padding:.55rem 2rem; }
            .logo img { height:58px; }
            .nav.scrolled .logo img { height:48px; }
            .nav-links { gap:clamp(1.15rem, 1.8vw, 1.75rem); }
            .nav-links a { font-size:.84rem; }
            .nav-cta { padding:.7rem 1.15rem; border-radius:8px; font-size:.76rem; letter-spacing:.03em; }
        }
        .section-label { letter-spacing:.15em; }
        .section-header { max-width:740px; margin-left:auto; margin-right:auto; }
        .section-header::after { content:""; display:block; width:42px; height:2px; margin:1.4rem auto 0; background:var(--color-gold); }
        .category-card { border-radius:10px; overflow:hidden; }
        .category-info h3 { letter-spacing:-.01em; }
        /* Refinamento v41: hierarquia comercial e ritmo visual */
        .hero::before { background:linear-gradient(90deg, rgba(43,16,20,.91) 0%, rgba(74,28,35,.76) 43%, rgba(74,28,35,.26) 73%, rgba(20,10,12,.10) 100%); }
        .hero p { max-width:590px; }
        .products-categories { max-width:1240px; }
        .category-info { padding:1.35rem 1.45rem 1.45rem; }
        .category-info p { min-height:0; margin-bottom:1rem; font-size:.9rem; }
        .category-link { font-size:.78rem; letter-spacing:.04em; text-transform:uppercase; }
        .delivery-section { padding:5rem 4%; background:#faf7f5; }
        .delivery-container { max-width:1180px; text-align:left; }
        .delivery-subtitle { max-width:560px; margin-bottom:2rem; }
        .delivery-buttons { display:grid; grid-template-columns:repeat(3, minmax(0,1fr)); gap:1rem; }
        .delivery-btn { min-height:110px; align-items:flex-start; justify-content:center; flex-direction:column; padding:1.2rem 1.35rem; border-radius:12px; }
        .delivery-btn strong { font-family:var(--font-display); font-size:1.2rem; }
        .delivery-btn small { display:block; margin-top:.25rem; font-size:.78rem; font-weight:500; opacity:.82; }
        .delivery-retirada { margin-top:1.2rem; }
        .oem-section { padding:5.2rem 4%; }
        .oem-content>p { max-width:590px; font-size:1rem; margin-bottom:1.8rem; }
        .oem-benefits { gap:2rem; margin-bottom:1.8rem; }
        .contact-container { max-width:1100px; }
        @media (max-width:768px) {
            .hero::before { background:linear-gradient(180deg, rgba(43,16,20,.84) 0%, rgba(74,28,35,.72) 62%, rgba(30,15,17,.80) 100%); }
            .delivery-section { padding:4rem 1.25rem; }
            .delivery-buttons { grid-template-columns:1fr; }
            .delivery-btn { min-height:82px; }
            .category-info p { margin-bottom:.8rem; }
        }
        
        @media (prefers-reduced-motion: reduce) {
 .category-card, .btn-primary, .delivery-btn { transition:none; }
        }
