
        /* ==========================================================================
           ESTILOS GERAIS E VARIÁVEIS (Equivalente ao css/style.css)
           ========================================================================== */
        :root {
            --primary-yellow: #fad529;
            --primary-red: #792222;
            --primary-red-hover: #792222;
            --white: #FFFFFF;
            --light-bg: #F5F5F5;
            --dark-text: #222222;
            --gray-text: #666666;
            --border-color: #E0E0E0;
            --shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
            --border-radius: 12px;
            --max-width: 1200px;
        }

        /* Reset e Base */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--white);
            color: var(--dark-text);
            line-height: 1.6;
            overflow-x: hidden;
        }

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

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

        ul {
            list-style: none;
        }

        /* Utilitários Globais */
        .container {
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 24px;
        }

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

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

        .section-header {
            max-width: 700px;
            margin: 0 auto 50px auto;
            text-align: center;
        }

        .section-header h2 {
            font-size: 2.2rem;
            color: var(--primary-red);
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 15px;
            font-weight: 800;
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--primary-yellow);
            border-radius: 2px;
        }

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

        /* Botões */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 14px 28px;
            font-size: 1rem;
            font-weight: 600;
            border-radius: 50px;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
        }

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

        .btn-primary:hover {
            background-color: var(--primary-red-hover);
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(193, 18, 31, 0.3);
        }

        .btn-secondary {
            background-color: var(--primary-yellow);
            color: var(--dark-text);
        }

        .btn-secondary:hover {
            background-color: #fad529;
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(255, 212, 0, 0.3);
        }

        .btn-outline {
            background-color: transparent;
            color: var(--white);
            border: 2px solid var(--white);
        }

        .btn-outline:hover {
            background-color: var(--white);
            color: var(--primary-red);
            transform: translateY(-2px);
        }

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

        .btn-whatsapp:hover {
            background-color: #128C7E;
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
        }

        /* Botão Flutuante do WhatsApp */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background-color: #25D366;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(0,0,0,0.25);
            z-index: 999;
            transition: var(--transition);
        }

        .whatsapp-float:hover {
            transform: scale(1.1) rotate(10deg);
            background-color: #128C7E;
        }

        .wpp-img {
            width: 60px;
            height: 32px;
            fill: white;
        }

        /* ==========================================================================
           1. CABEÇALHO (Header)
           ========================================================================== */
        .header {
            position: sticky;
            top: 0;
            background-color: var(--white);
            box-shadow: var(--shadow);
            z-index: 1000;
            height: 80px;
            display: flex;
            align-items: center;
        }

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

        /* Logo Customizada em SVG */
        .logo {
            height: 80px;
            display: flex;
            align-items: center;
            gap: 3px;
            overflow: hidden;
        }

        .logo-img {
            height: 230px;
            width: max-content;
            padding-top: 15px;
            align-self: left;
        }

        /* Menu de Navegação */
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .nav-link {
            font-weight: 600;
            font-size: 1rem;
            color: var(--dark-text);
            position: relative;
            padding: 8px 0;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background-color: var(--primary-yellow);
            transition: var(--transition);
            border-radius: 2px;
        }

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

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

        /* Estilo do Botão do Header */
        .header-btn {
            padding: 10px 20px;
            font-size: 0.9rem;
        }

        /* Menu Hamburguer (Mobile) via CSS */
        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            border: none;
            background: none;
            padding: 8px;
            z-index: 1010;
        }

        .menu-toggle span {
            display: block;
            width: 28px;
            height: 3px;
            background-color: var(--primary-red);
            border-radius: 3px;
            transition: var(--transition);
        }

        #menu-checkbox {
            display: none;
        }

        /* ==========================================================================
           2. SEÇÃO HERO (Página Inicial)
           ========================================================================== */
        .hero {
            position: relative;
            background: linear-gradient(135deg, rgba(193, 18, 31, 0.95) 0%, rgba(100, 8, 15, 0.98) 100%), 
                        url('data:image/svg+xml,<svg xmlns="https://www.w3.org/2000/svg" width="80" height="80" viewBox="0 0 80 80"><path d="M40 0l40 40-40 40L0 40z" fill="%23ffd400" fill-opacity="0.03"/></svg>');
            background-size: cover;
            background-position: center;
            color: var(--white);
            padding: 100px 0 120px 0;
            overflow: hidden;
        }

        /* Decorativos em SVG para ilustrar temperos */
        .hero::before {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 60px;
            background: var(--white);
            clip-path: ellipse(60% 40px at 50% 60px);
            z-index: 2;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            align-items: center;
            gap: 50px;
        }
        /* Ilustração lateral do Hero usando SVG dinâmico */
        .hero-illustration {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            line-height: 1.15;
            font-weight: 800;
            margin-bottom: 20px;
        }

        .hero-content h1 span {
            color: var(--primary-yellow);
            display: block;
        }

        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 35px;
            opacity: 0.95;
            max-width: 600px;
        }

        .hero-circle-bg {
            position: absolute;
            width: 380px;
            height: 380px;
            background-color: rgba(255, 212, 0, 0.15);
            border-radius: 50%;
            animation: pulse 4s infinite ease-in-out;
            overflow: hidden;
        }

        .hero-img-svg {
            position: relative;
            width: 100%;
            height: 380px;
            max-width: 360px;
            object-fit: cover;
            border-radius: 100%;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.6; }
            50% { transform: scale(1.08); opacity: 0.9; }
        }

        /* ==========================================================================
           3. SOBRE A EMPRESA
           ========================================================================== */
        .about {
            background-color: var(--white);
        }

        .about-story {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
            margin-bottom: 60px;
        }

        .about-text h3 {
            font-size: 1.8rem;
            color: var(--primary-red);
            margin-bottom: 15px;
            font-weight: 700;
        }

        .about-text p {
            color: var(--gray-text);
            margin-bottom: 20px;
            font-size: 1.05rem;
        }

        .about-image {
            background: linear-gradient(135deg, var(--primary-yellow) 0%, #ffd40055 100%);
            border-radius: var(--border-radius);
            padding: 20px;
            box-shadow: var(--shadow);
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .about-image svg {
            width: 100%;
            max-width: 400px;
            height: auto;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        }
        .farofas{
            width: 100%;
            height: 380px;
            object-fit: cover;
            border-radius: 7px;
        }

        /* Cards de Missão, Visão e Valores */
        .mvv-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .mvv-card {
            background-color: var(--light-bg);
            padding: 40px 30px;
            border-radius: var(--border-radius);
            border-top: 5px solid var(--primary-yellow);
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .mvv-card:hover {
            transform: translateY(-5px);
            border-top-color: var(--primary-red);
        }

        .mvv-card:nth-child(2) {
            border-top-color: var(--primary-red);
        }
        .mvv-card:nth-child(2):hover {
            border-top-color: var(--primary-yellow);
        }

        .mvv-icon {
            width: 60px;
            height: 60px;
            background-color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
        }

        .mvv-icon svg {
            width: 32px;
            height: 32px;
        }

        .mvv-card h4 {
            font-size: 1.4rem;
            color: var(--dark-text);
            margin-bottom: 15px;
            font-weight: 700;
        }

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

        .values-list {
            margin-top: 15px;
        }

        .values-list li {
            position: relative;
            padding-left: 25px;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--dark-text);
        }

        .values-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--primary-red);
            font-weight: bold;
        }

        /* ==========================================================================
           4. CATÁLOGO DE PRODUTOS
           ========================================================================== */
        .products {
            background-color: var(--light-bg);
        }

        /* Abas de Categoria sem Javascript (Uso de Radio Buttons + CSS) */
        .category-filter {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 40px;
            z-index: 5000 !important;
        }

        .filter-label {
            padding: 10px 24px;
            background-color: var(--white);
            color: var(--dark-text);
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            transition: var(--transition);
            border: 2px solid transparent;
        }

        .filter-label:hover {
            background-color: var(--primary-yellow);
        }

        /* Inputs de Rádio Escondidos */
        input[name="category-tab"] {
            display: none;
        }

        /* Grid de Produtos */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
            gap: 30px;
        }

        /* Card de Produto */
        .product-card {
            background-color: var(--white);
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 1px solid rgba(0, 0, 0, 0.03);
            display: flex;
            flex-direction: column;
        }

        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
        }

        .product-img-wrapper {
            background-color: #fafafa;
            height: 220px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            position: relative;
            border-bottom: 1px solid var(--light-bg);
        }

        .product-tag {
            position: absolute;
            top: 15px;
            left: 15px;
            background-color: var(--primary-yellow);
            color: var(--dark-text);
            font-size: 0.75rem;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: 50px;
            text-transform: uppercase;
            z-index: 10;
        }

        .product-card img {
            width: auto;
            height: 100%;
            border-radius: 5px;
            transition: var(--transition);
        }

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

        .product-info {
            padding: 24px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .product-info h4 {
            font-size: 1.25rem;
            color: var(--dark-text);
            margin-bottom: 10px;
            font-weight: 700;
        }

        .product-info p {
            color: var(--gray-text);
            font-size: 0.9rem;
            margin-bottom: 20px;
            line-height: 1.5;
        }

        .btn-card-whatsapp {
            width: 100%;
            padding: 10px 15px;
            font-size: 0.9rem;
        }



        #tab-temperos:checked ~ .products-grid .product-card:not([data-cat="temperos"]),
        #tab-condimentos:checked ~ .products-grid .product-card:not([data-cat="condimentos"]),
        #tab-churrasco:checked ~ .products-grid .product-card:not([data-cat="churrasco"]),
        #tab-outros:checked ~ .products-grid .product-card:not([data-cat="outros"]) {
            display: none;
        }

        #tab-all:checked ~ .products-grid.fechado .product-card:nth-child(n+4) {
            display: none;
        }

        /* Ativação Visual da Label Selecionada */
        #tab-all:checked ~ .category-filter label[for="tab-all"],
        #tab-temperos:checked ~ .category-filter label[for="tab-temperos"],
        #tab-condimentos:checked ~ .category-filter label[for="tab-condimentos"],
        #tab-churrasco:checked ~ .category-filter label[for="tab-churrasco"],
        #tab-outros:checked ~ .category-filter label[for="tab-outros"] {
            background-color: var(--primary-red);
            color: var(--white);
            border-color: var(--primary-red);
        }

        #btnVerMais {
            display: block;
            margin: 40px auto 0;
            padding: 12px 28px;
            background: linear-gradient(135deg, var(--primary-yellow), #ffcc00);
            color: var(--dark-text);
            font-size: 1rem;
            font-weight: 700;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
            transition: all 0.3s ease;
            letter-spacing: 0.3px;
        }

        #btnVerMais:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
            filter: brightness(1.05);
        }

        #btnVerMais:active {
            transform: translateY(0);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
        }

        #btnVerMais:focus {
            outline: none;
            box-shadow: 0 0 0 3px rgba(255, 204, 0, 0.4);
        }

        /* ==========================================================================
           5. ÁREA PARA SUPERMERCADOS E REVENDE-DORES (B2B)
           ========================================================================== */
        .b2b {
            background: linear-gradient(rgba(34, 34, 34, 0.92), rgba(34, 34, 34, 0.96)), 
                        url('data:image/svg+xml,<svg xmlns="https://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 60 60"><path d="M0 0h30v30H0zm30 30h30v30H30z" fill="%23ffd400" fill-opacity="0.015"/></svg>');
            background-size: cover;
            color: var(--white);
        }

        .b2b .section-header h2 {
            color: var(--primary-yellow);
        }

        .b2b-grid {
            display: grid;
            grid-template-columns: 1fr 1.1fr;
            gap: 60px;
            align-items: center;
        }

        .b2b-content h3 {
            font-size: 2rem;
            line-height: 1.3;
            margin-bottom: 25px;
            font-weight: 700;
        }

        .b2b-content h3 span {
            color: var(--primary-yellow);
        }

        .b2b-content p {
            font-size: 1.1rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .b2b-benefits {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 25px;
            margin-bottom: 35px;
        }

        .benefit-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }

        .benefit-icon {
            color: var(--primary-yellow);
            flex-shrink: 0;
            margin-top: 3px;
        }

        .benefit-item h5 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .benefit-item p {
            font-size: 0.88rem;
            color: #cccccc;
            margin-bottom: 0;
        }

        /* Formulário Comercial Direto no WhatsApp ou Visual */
        .b2b-card {
            background-color: var(--white);
            color: var(--dark-text);
            padding: 40px;
            border-radius: var(--border-radius);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
            border-top: 8px solid var(--primary-yellow);
        }

        .b2b-card h4 {
            font-size: 1.5rem;
            color: var(--primary-red);
            margin-bottom: 10px;
            font-weight: 700;
        }

        .b2b-card p {
            color: var(--gray-text);
            margin-bottom: 25px;
            font-size: 0.95rem;
        }

        .b2b-steps {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-bottom: 30px;
        }

        .step {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .step-number {
            width: 40px;
            height: 40px;
            background-color: var(--primary-yellow);
            color: var(--dark-text);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.1rem;
            flex-shrink: 0;
        }

        .step-text {
            font-size: 1rem;
            font-weight: 600;
        }

        /* ==========================================================================
           6. DIFERENCIAIS
           ========================================================================== */
        .features {
            background-color: var(--white);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
        }

        .feature-card {
            background-color: var(--light-bg);
            padding: 30px 20px;
            border-radius: var(--border-radius);
            text-align: center;
            transition: var(--transition);
            border-bottom: 4px solid transparent;
        }

        .feature-card:hover {
            transform: translateY(-8px);
            background-color: var(--white);
            box-shadow: var(--shadow);
            border-bottom-color: var(--primary-red);
        }

        .feature-svg-wrapper {
            width: 70px;
            height: 70px;
            background-color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px auto;
            box-shadow: 0 4px 10px rgba(0,0,0,0.03);
            transition: var(--transition);
        }

        .feature-card:hover .feature-svg-wrapper {
            background-color: var(--primary-yellow);
        }

        .feature-svg-wrapper svg {
            width: 38px;
            height: 38px;
        }

        .feature-card h4 {
            font-size: 1.1rem;
            color: var(--dark-text);
            font-weight: 700;
            margin-bottom: 10px;
        }

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

        /* ==========================================================================
           7. CONTATO
           ========================================================================== */
        .contact {
            background-color: var(--light-bg);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 0.9fr 1.1fr;
            gap: 50px;
        }

        /* Informações de Contato */
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .contact-info-title {
            font-size: 1.8rem;
            color: var(--primary-red);
            font-weight: 700;
            margin-bottom: 10px;
        }

        .contact-info-desc {
            color: var(--gray-text);
            font-size: 1.05rem;
        }

        .contact-methods {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .contact-method-card {
            background-color: var(--white);
            padding: 20px;
            border-radius: var(--border-radius);
            display: flex;
            align-items: center;
            gap: 20px;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .contact-method-card:hover {
            transform: translateX(5px);
        }

        .contact-method-icon {
            width: 50px;
            height: 50px;
            background-color: rgba(193, 18, 31, 0.08);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-red);
            flex-shrink: 0;
        }

        .contact-method-icon svg {
            width: 24px;
            height: 24px;
        }

        .contact-method-details h5 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--dark-text);
            margin-bottom: 3px;
        }

        .contact-method-details p {
            font-size: 0.92rem;
            color: var(--gray-text);
        }

        /* Formulário de Contato */
        .contact-form-wrapper {
            background-color: var(--white);
            padding: 40px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }

        .contact-form-wrapper h4 {
            font-size: 1.5rem;
            color: var(--dark-text);
            margin-bottom: 25px;
            font-weight: 700;
            border-left: 5px solid var(--primary-yellow);
            padding-left: 15px;
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 20px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .form-group-full {
            grid-column: span 2;
        }

        .form-label {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--dark-text);
        }

        .form-input {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid var(--border-color);
            border-radius: 8px;
            font-size: 0.95rem;
            outline: none;
            transition: var(--transition);
        }

        .form-input:focus {
            border-color: var(--primary-red);
            box-shadow: 0 0 8px rgba(193, 18, 31, 0.15);
        }

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

        .form-submit-btn {
            width: 100%;
            font-size: 1.05rem;
        }

        /* ==========================================================================
           8. RODAPÉ (Footer)
           ========================================================================== */
        .footer {
            background-color: #1a1a1a;
            color: var(--white);
            padding: 70px 0 30px 0;
            position: relative;
        }

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

        .footer-brand {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .footer-logo {
            align-self: flex-start;
        }
        .logo-container {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logorod-img {
            height: 170px;
        }

        .logo-text {
            display: flex;
            flex-direction: column;
        }

        .produtos {
            color: #FFD400;
            font-size: 19px;
            font-weight: 800;
        }

        .kisabor {
            color: #FFFFFF;
            font-size: 23px;
            font-weight: 800;
        }

        .footer-brand p {
            color: #b3b3b3;
            font-size: 0.95rem;
        }

        .footer-socials {
            display: flex;
            gap: 15px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            background-color: #2b2b2b;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .social-link:hover {
            background-color: var(--primary-yellow);
            color: var(--dark-text);
            transform: translateY(-3px);
        }

        .social-link svg {
            width: 20px;
            height: 20px;
        }

        .footer-links h4,
        .footer-contact h4 {
            font-size: 1.2rem;
            color: var(--primary-yellow);
            margin-bottom: 25px;
            font-weight: 700;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-links h4::after,
        .footer-contact h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background-color: var(--primary-red);
            border-radius: 2px;
        }

        .footer-links-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-links-list a {
            color: #b3b3b3;
            font-size: 0.95rem;
            display: inline-block;
        }

        .footer-links-list a:hover {
            color: var(--primary-yellow);
            transform: translateX(5px);
        }

        .footer-contact-list {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .footer-contact-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            color: #b3b3b3;
            font-size: 0.95rem;
        }

        .footer-contact-item svg {
            width: 20px;
            height: 20px;
            color: var(--primary-yellow);
            flex-shrink: 0;
            margin-top: 3px;
        }

        /* Copyright e Rodapé Inferior */
        .footer-bottom {
            border-top: 1px solid #2b2b2b;
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
            font-size: 0.88rem;
            color: #888888;
        }

        .footer-bottom p a {
            color: var(--primary-yellow);
        }

        .footer-bottom p a:hover {
            text-decoration: underline;
        }


        /* ==========================================================================
           RESPONSIVIDADE (Mídia Queries)
           ========================================================================== */

        /* 1. Responsividade para Notebooks e Desktops menores (max-width: 1024px) */
        @media (max-width: 1024px) {
            .hero-content h1 {
                font-size: 2.8rem;
            }
            .features-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .b2b-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
            .footer-grid > *:last-child {
                grid-column: span 2;
            }
        }

        /* 2. Responsividade para Tablets (max-width: 768px) */
        @media (max-width: 768px) {
            .section-padding {
                padding: 60px 0;
            }

            /* Faz o botão hambúrguer APARECER e garante que ele não seja esmagado */
            .menu-toggle {
                display: flex !important; /* O !important garante que ignore o 'none' do global se houver conflito de leitura */
                pointer-events: auto !important; /* Força o botão a aceitar cliques */
                cursor: pointer;
                flex-shrink: 0; /* Impede o flexbox pai de esmagar o botão para 0px */
                width: 30px;
                height: auto; /* Deixa o gap do global controlar a altura interna */
            }

            /* Ajusta as barrinhas caso queira mudar algo no mobile, senão o global já resolve */
            .menu-toggle span {
                background-color: #333333; /* Força a cor cinza caso não queira o vermelho do global no mobile */
            }

            /* Transforma o menu em uma lista vertical que vem da esquerda */
            .nav-menu {
                position: fixed;
                top: 80px;
                left: -100%; /* Começa escondido */
                width: 50%;
                height: calc(100vh - 80px);
                background-color: #ffffff;
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding-top: 50px;
                gap: 30px;
                box-shadow: -5px 0 15px rgba(0,0,0,0.1);
                transition: left 0.4s ease;
                z-index: 99999 !important;
                overflow-y: auto;
            }

            .nav-menu.active {
                left: 0 !important;
            }

            /* Quando o botão tiver a classe 'active', vira X */
            .menu-toggle.active span:nth-child(1) {
                transform: translateY(9.5px) rotate(45deg) !important;
            }
            .menu-toggle.active span:nth-child(2) {
                opacity: 0 !important;
            }
            .menu-toggle.active span:nth-child(3) {
                transform: translateY(-9.5px) rotate(-45deg) !important;
            }
                
            /*header*/
            .logo img{
                max-width: 100%;
                width: 100%;
                height: Auto;
                max-height: 230px;
            }

            /* Elementos internos do Hero */
            .hero-grid {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 45px;
            }

            .hero-content {
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            .hero-content h1 {
                font-size: 2.5rem;
            }

            .hero-buttons {
                justify-content: center;
            }

            .hero-illustration {
                display: none; /* Traz imagem acima no mobile */
            }

            .hero-circle-bg {
                width: 280px;
                height: 280px;
            }

            .hero-img-svg {
                max-width: 250px;
            }

            /* Sobre */
            .about-story {
                grid-template-columns: 1fr;
                gap: 35px;
                text-align: center;
            }

            .mvv-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            /* Diferenciais */
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            /* Contato */
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

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

            .form-group-full {
                grid-column: span 1;
            }
            .footer-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid > *:last-child {
                grid-column: span 1;
            }
            .footer-brand{
                display: flex;
                justify-content: center;
                align-items: center; 
            }

            .footer-logo{
                display: flex;
                justify-content: center;
                align-items: center; 
                text-align: center;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        
        }

        /* 3. Responsividade para Celulares (max-width: 480px) */
        @media (max-width: 480px) {
            .section-header h2 {
                font-size: 1.8rem;
            }

            .hero-content h1 {
                font-size: 2rem;
            }

            .hero-content p {
                font-size: 1rem;
            }

            .btn {
                width: 100%;
            }

            .b2b-benefits {
                grid-template-columns: 1fr;
            }

            .b2b-card {
                padding: 25px 20px;
            }

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

            .contact-form-wrapper {
                padding: 25px 20px;
            }

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

            .footer-grid > *:last-child {
                grid-column: span 1;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }