:root {
            --primary: #f59e0b;
            --dark: #0A0A0A;
            --gray-light: #f5f5f7;
            --text-color: #334155;
            --font: 'Outfit', sans-serif;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: var(--font); color: var(--text-color); line-height: 1.6; background: var(--gray-light); overflow-x: hidden; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

        .btn {
            padding: 14px 28px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: 0.3s;
            cursor: pointer;
            border: none;
            font-size: 1.1rem;
        }
        .btn-primary { background: var(--primary); color: white; }
        .btn-primary:hover { background: #d97706; transform: translateY(-2px); }

        /* HEADER (estrutura da versao conversao com cores do bento) */
        .header {
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
            background: #fff;
        }
        .header-top {
            background: #f8fafc;
            border-bottom: 1px solid #e2e8f0;
            padding: 8px 0;
        }
        .header-top-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
        }
        .header-contact-info {
            display: flex;
            align-items: center;
            gap: 12px;
            color: #64748b;
            font-size: 0.82rem;
            font-weight: 500;
        }
        .header-info-item {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .header-info-item.header-info-address {
            align-items: flex-start;
            max-width: min(62vw, 520px);
        }
        .header-info-address .nw-header-address-lines {
            font-size: 0.72rem;
            line-height: 1.35;
            font-weight: 500;
        }
        .header-divider {
            color: #cbd5e1;
        }
        .header-social {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .header-social a {
            color: #64748b;
            transition: 0.2s;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
        .header-social a:hover {
            color: var(--primary);
        }
        .header-info-item a.nw-header-email {
            color: inherit;
            text-decoration: none;
            font-weight: inherit;
        }
        .header-info-item a.nw-header-email:hover {
            color: var(--primary);
        }
        .nw-primary-nav .nw-primary-menu-list {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: clamp(20px, 3vw, 36px);
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .nw-primary-nav .nw-primary-menu-list > li > a {
            text-decoration: none;
            color: var(--text-color);
            font-weight: 600;
            font-size: 0.95rem;
            transition: color 0.2s;
        }
        .nw-primary-nav .nw-primary-menu-list > li > a:hover {
            color: var(--primary);
        }
        .header-main {
            background: #fff;
            border-bottom: 1px solid #e2e8f0;
        }
        .header-main-content {
            min-height: 72px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
        }
        .logo { font-size: 1.8rem; font-weight: 800; color: var(--dark); letter-spacing: -1px; display: inline-flex; align-items: center; }
        .logo span { color: var(--primary); }
        .logo img {
            display: block;
            max-height: 44px;
            width: auto;
        }
        .nav {
            display: flex;
            align-items: center;
            gap: 36px;
        }
        .nav-link {
            text-decoration: none;
            color: var(--text-color);
            font-weight: 600;
            font-size: 0.95rem;
            transition: 0.2s;
        }
        .nav-link:hover { color: var(--primary); }
        .header-actions {
            display: flex;
            align-items: center;
            gap: 14px;
        }
        .nw-header-cart {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--text-color);
        }
        .nw-header-cart:hover {
            color: var(--primary);
        }
        .nw-header-cart-icon {
            flex-shrink: 0;
            display: block;
        }
        .nw-header-cart-label {
            font-size: 0.92rem;
            font-weight: 600;
        }
        .nw-menu-toggle {
            display: none;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            padding: 0;
            border: none;
            background: transparent;
            color: var(--dark);
            cursor: pointer;
            border-radius: 10px;
            transition: background 0.2s, color 0.2s;
        }
        .nw-menu-toggle:hover {
            background: #f1f5f9;
            color: var(--primary);
        }
        .nw-menu-toggle:focus-visible {
            outline: 2px solid var(--primary);
            outline-offset: 2px;
        }
        .nw-menu-toggle-bars,
        .nw-menu-toggle-bars::before,
        .nw-menu-toggle-bars::after {
            display: block;
            width: 22px;
            height: 2px;
            background: currentColor;
            border-radius: 1px;
            transition: transform 0.25s ease, opacity 0.2s ease;
        }
        .nw-menu-toggle-bars {
            position: relative;
        }
        .nw-menu-toggle-bars::before,
        .nw-menu-toggle-bars::after {
            content: "";
            position: absolute;
            left: 0;
        }
        .nw-menu-toggle-bars::before {
            top: -7px;
        }
        .nw-menu-toggle-bars::after {
            top: 7px;
        }
        .header.nw-menu-open .nw-menu-toggle-bars {
            background: transparent;
        }
        .header.nw-menu-open .nw-menu-toggle-bars::before {
            top: 0;
            transform: rotate(45deg);
        }
        .header.nw-menu-open .nw-menu-toggle-bars::after {
            top: 0;
            transform: rotate(-45deg);
        }
        .btn-header {
            padding: 10px 24px;
            font-size: 1rem;
        }
        @media (min-width: 901px) {
            .nw-menu-toggle {
                display: none !important;
            }
        }
        @media (max-width: 900px) {
            .header-top { display: none; }
            .header-main {
                position: relative;
            }
            .header-main-content {
                flex-wrap: wrap;
                min-height: 60px;
                gap: 12px;
                row-gap: 0;
            }
            .header .logo img {
                max-height: 30px;
            }
            .header .logo {
                font-size: 1.35rem;
                letter-spacing: -0.5px;
            }
            .logo {
                order: 1;
            }
            .header-actions {
                order: 2;
                margin-left: auto;
                gap: 4px;
            }
            .nw-primary-nav {
                order: 3;
                width: 100%;
                flex-basis: 100%;
                display: none;
                flex-direction: column;
                align-items: stretch;
                padding: 8px 0 16px;
                border-top: 1px solid #e2e8f0;
                margin-top: 8px;
                animation: nwNavIn 0.2s ease;
            }
            .header.nw-menu-open .nw-primary-nav {
                display: flex;
            }
            .nw-primary-nav .nw-primary-menu-list {
                flex-direction: column;
                align-items: stretch;
                gap: 0;
            }
            .nw-primary-nav .nw-primary-menu-list > li > a {
                display: block;
                padding: 14px 4px;
                font-size: 1rem;
                border-bottom: 1px solid #f1f5f9;
            }
            .nw-menu-toggle {
                display: inline-flex;
            }
            .header-actions .btn-header {
                display: none !important;
            }
            .nw-header-cart-label {
                position: absolute;
                width: 1px;
                height: 1px;
                padding: 0;
                margin: -1px;
                overflow: hidden;
                clip: rect(0, 0, 0, 0);
                white-space: nowrap;
                border: 0;
            }
            .nw-header-cart {
                width: 44px;
                height: 44px;
                padding: 0;
                justify-content: center;
                gap: 0;
                border-radius: 10px;
            }
            .nw-header-cart:hover {
                background: #f1f5f9;
            }
            .nw-header-cart-icon {
                width: 24px;
                height: 24px;
            }
        }
        @keyframes nwNavIn {
            from {
                opacity: 0;
                transform: translateY(-6px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        body.nw-menu-open {
            overflow: hidden;
        }
        @media (min-width: 901px) {
            body.nw-menu-open {
                overflow: auto;
            }
        }

        /* HERO estilo versao-conversao com 3 slides */
        .hero {
            position: relative;
            min-height: 55vh;
            display: flex;
            align-items: center;
            overflow: hidden;
            border-bottom: 1px solid #e2e8f0;
        }
        .hero-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
        }
        .hero-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: right center;
            opacity: 0.92;
        }
        .hero-bg::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, rgba(255, 255, 255, 0.985) 0%, rgba(255, 255, 255, 0.92) 46%, rgba(255, 255, 255, 0.14) 100%);
        }
        .hero-inner {
            width: 100%;
            position: relative;
            z-index: 1;
            min-height: 55vh;
            display: flex;
            align-items: center;
            padding-bottom: 24px;
        }
        .hero-slider {
            position: relative;
            width: 100%;
            min-height: 300px;
            max-width: 650px;
        }
        .hero-slide {
            position: absolute;
            inset: 0;
            opacity: 0;
            pointer-events: none;
            transform: translateY(8px);
            transition: opacity 0.45s ease, transform 0.45s ease;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .hero-slide.active {
            opacity: 1;
            pointer-events: auto;
            transform: translateY(0);
        }
        .hero-badge {
            display: inline-block;
            width: fit-content;
            margin-bottom: 12px;
            padding: 5px 10px;
            font-size: 0.66rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--primary);
            border: 1px solid #fde68a;
            background: #fffbeb;
            border-radius: 8px;
        }
        .hero h1 {
            font-size: clamp(1.6rem, 4vw, 2.8rem);
            line-height: 1.1;
            letter-spacing: -1px;
            color: #0f172a;
            margin-bottom: 10px;
            max-width: 620px;
        }
        .hero p {
            font-size: 0.92rem;
            color: #334155;
            max-width: 560px;
            margin-bottom: 20px;
            line-height: 1.6;
        }
        .hero-cta {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .hero-dots {
            position: absolute;
            left: 0;
            width: 100%;
            bottom: 8px;
            display: flex;
            justify-content: center;
            gap: 8px;
        }
        .hero-dot {
            width: 20px;
            height: 6px;
            border-radius: 4px;
            border: 1px solid #a0aec0;
            background: transparent;
            cursor: pointer;
            transition: all 0.2s ease;
        }
        .hero-dot.active {
            background: var(--primary);
            border-color: var(--primary);
        }

        .btn-outline {
            border: 1px solid var(--primary);
            color: var(--primary);
            background: transparent;
            padding: 10px 20px;
            font-size: 0.92rem;
        }

        .btn-outline:hover {
            background: var(--primary);
            color: #fff;
        }

        .btn-hero {
            padding: 10px 20px;
            font-size: 0.92rem;
        }
        @media (max-width: 768px) {
            .hero {
                min-height: auto;
                padding: 20px 0;
            }
            .hero-inner {
                min-height: 55vh;
            }
            .hero-slider {
                min-height: 280px;
            }
            .hero h1 { font-size: clamp(1.4rem, 7vw, 2.1rem); }
            .hero p { font-size: 0.88rem; }
            .hero-bg::after {
                background: linear-gradient(90deg, rgba(255, 255, 255, 0.985) 0%, rgba(255, 255, 255, 0.93) 60%, rgba(255, 255, 255, 0.2) 100%);
            }
        }

        /* Slide de marcas */
        .clients-section {
            padding: 0 0 56px;
            border-bottom: 1px solid #e2e8f0;
            background: #fff;
            overflow: hidden;
        }
        .clients-section-head {
            text-align: center;
            padding: 28px 20px 22px;
            margin-bottom: 0;
        }
        .clients-section-title {
            font-size: clamp(1.65rem, 3vw, 2.25rem);
            font-weight: 700;
            color: var(--dark);
            letter-spacing: -0.5px;
        }
        .clients-section .marquee {
            padding-top: 22px;
        }
        .marquee { display: flex; width: 200%; animation: scroll 28s linear infinite; }
        .marquee-content {
            display: flex;
            width: 50%;
            justify-content: flex-start;
            align-items: center;
            gap: clamp(24px, 3.5vw, 48px);
            flex-shrink: 0;
            padding-inline: 8px;
        }
        .marquee-content h3 { font-size: 1.5rem; color: #cbd5e1; text-transform: uppercase; letter-spacing: 2px; font-weight: 700; }
        .marquee-logo {
            flex: 0 0 auto;
            width: clamp(120px, 12vw, 160px);
            height: clamp(60px, 7vw, 84px);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 8px 14px;
        }
        .marquee-logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            filter: grayscale(100%);
            opacity: 0.85;
        }
        .marquee-logo-link {
            display: flex;
            width: 100%;
            height: 100%;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: inherit;
            transition: opacity 0.2s ease;
        }
        .marquee-logo-link:hover {
            opacity: 0.95;
        }
        .marquee-logo-link img {
            pointer-events: none;
        }
        @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

        /* Categorias */
        .accessories-section { padding: 90px 0; text-align: center; background: #fff; }
        .accessories-section--no-heading {
            padding: 56px 0 44px;
        }
        .accessories-section h2 { font-size: 3rem; margin-bottom: 70px; color: var(--dark); letter-spacing: -1px; }
        .circles-wrapper { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; }
        .accessories-section--six-cols .circles-wrapper {
            display: grid;
            grid-template-columns: repeat(6, minmax(0, 1fr));
            gap: clamp(8px, 1.2vw, 14px);
            align-items: start;
            max-width: 100%;
        }
        .accessories-section--six-cols .circle-item {
            width: 100%;
            max-width: none;
        }
        .accessories-section--six-cols .circle-img-box {
            width: min(100%, 118px);
            aspect-ratio: 1;
            height: auto;
            margin-inline: auto;
            margin-bottom: 14px;
            border-radius: 50%;
        }
        .accessories-section--six-cols .circle-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 100%;
            color: var(--primary);
        }
        .accessories-section--six-cols .circle-icon svg {
            width: 42%;
            height: 42%;
            max-width: 48px;
            max-height: 48px;
            flex-shrink: 0;
        }
        .accessories-section--six-cols .circle-item h4 {
            font-size: clamp(0.78rem, 1.05vw, 0.95rem);
            line-height: 1.25;
        }
        .circle-item { display: flex; flex-direction: column; align-items: center; width: 180px; cursor: pointer; }
        .circle-item:hover .circle-img-box { transform: scale(1.05); box-shadow: 0 15px 30px rgba(0,0,0,0.1); border-color: var(--primary); }
        .circle-item:hover h4 { color: var(--primary); }
        .circle-img-box {
            width: 160px;
            height: 160px;
            border-radius: 50%;
            background: #fff;
            border: 2px solid #e2e8f0;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(0,0,0,0.04);
        }
        .circle-core {
            width: 74px;
            height: 74px;
            border-radius: 22px;
            background: linear-gradient(180deg, #f1f5f9 0%, #fef3c7 100%);
            border: 1px solid #cbd5e1;
        }
        .circle-item h4 { font-size: 1.1rem; color: var(--dark); transition: 0.3s; font-weight: 600; }
        @media (max-width: 900px) {
            .accessories-section--six-cols .circles-wrapper {
                grid-template-columns: repeat(3, minmax(0, 1fr));
                gap: 20px 14px;
            }
            .accessories-section--six-cols .circle-img-box {
                width: min(100%, 130px);
            }
        }
        @media (max-width: 600px) {
            .accessories-section { padding: 70px 0; }
            .accessories-section--no-heading { padding: 44px 0 36px; }
            .accessories-section h2 { font-size: 2.2rem; margin-bottom: 48px; }
            .accessories-section--six-cols .circles-wrapper {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 18px 12px;
            }
            .circle-item { width: 140px; }
            .accessories-section--six-cols .circle-item {
                width: 100%;
            }
            .circle-img-box { width: 120px; height: 120px; aspect-ratio: 1; border-radius: 50%; }
            .accessories-section--six-cols .circle-img-box {
                width: min(100%, 120px);
                height: auto;
                aspect-ratio: 1;
            }
            .circle-core { width: 56px; height: 56px; border-radius: 50%; }
        }

        /* Our Core (baseado na versao-conversao) */
        .core-section {
            padding: 90px 0;
            background: #fff;
            border-top: 1px solid #e2e8f0;
        }
        .core-header {
            text-align: center;
            margin-bottom: 56px;
        }
        .core-header h2 {
            font-size: 2.8rem;
            color: var(--dark);
            letter-spacing: -1px;
        }
        .core-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }
        .core-card {
            padding: 32px 24px;
            border-left: 3px solid var(--primary);
            background: #f8fafc;
            border-radius: 0;
            transition: all 0.25s ease;
        }
        .core-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
        }
        .core-number {
            font-size: 2.4rem;
            line-height: 1;
            font-weight: 800;
            color: var(--primary);
            opacity: 0.28;
            margin-bottom: 12px;
        }
        .core-card h3 {
            font-size: 1.25rem;
            color: var(--dark);
            margin-bottom: 10px;
            font-weight: 700;
        }
        .core-card p {
            font-size: 0.95rem;
            color: #475569;
            line-height: 1.7;
        }
        @media (max-width: 1000px) {
            .core-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 640px) {
            .core-section { padding: 70px 0; }
            .core-header { margin-bottom: 40px; }
            .core-header h2 { font-size: 2.2rem; }
            .core-grid { grid-template-columns: 1fr; }
        }

        /* Newsletter (igual ao bento) */
        .newsletter-section {
            padding: 100px 0;
            background: var(--dark);
            color: #fff;
            text-align: center;
        }
        .newsletter-section h2 {
            font-size: 3rem;
            margin-bottom: 20px;
        }
        .newsletter-section p {
            margin-bottom: 40px;
            font-size: 1.2rem;
            color: #94a3b8;
        }
        .newsletter-form {
            display: flex;
            justify-content: center;
            max-width: 600px;
            margin: 0 auto;
            gap: 10px;
            background: #fff;
            padding: 10px;
            border-radius: 50px;
        }
        .newsletter-form input {
            flex: 1;
            padding: 15px 25px;
            border: none;
            border-radius: 50px;
            outline: none;
            font-size: 1.1rem;
            color: #333;
        }
        .newsletter-form button {
            padding: 15px 30px;
            border-radius: 50px;
            font-size: 1rem;
        }
        @media (max-width: 600px) {
            .newsletter-section { padding: 70px 0; }
            .newsletter-section h2 { font-size: 2.2rem; }
            .newsletter-section p { font-size: 1rem; margin-bottom: 26px; }
            .newsletter-form {
                flex-direction: column;
                background: transparent;
                padding: 0;
                border-radius: 0;
            }
            .newsletter-form input {
                border-radius: 8px;
            }
            .newsletter-form button {
                border-radius: 8px;
                width: 100%;
            }
        }

        /* Testimonials (versao-conversao) */
        .testimonials {
            padding: 100px 0;
            background: #fff;
        }
        .section-header {
            text-align: center;
            margin-bottom: 56px;
        }
        .section-title {
            font-size: clamp(2rem, 4vw, 2.8rem);
            line-height: 1.2;
            color: var(--dark);
            letter-spacing: -1px;
        }
        .accent-text { color: var(--primary); }
        .section-tag {
            display: inline-block;
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--primary);
            margin-bottom: 10px;
        }
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }
        .testimonial-card {
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            padding: 36px 28px;
            transition: all 0.25s ease;
        }
        .testimonial-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
        }
        .testimonial-stars {
            display: flex;
            gap: 2px;
            color: #f59e0b;
            margin-bottom: 20px;
        }
        .testimonial-text {
            color: #475569;
            line-height: 1.8;
            margin-bottom: 22px;
            font-size: 0.95rem;
        }
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .testimonial-avatar {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: #fef3c7;
            color: var(--primary);
            border: 2px solid var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.82rem;
        }
        .testimonial-author strong { display: block; font-size: 0.9rem; color: var(--dark); }
        .testimonial-author span { font-size: 0.8rem; color: #64748b; }

        /* About Nortewave (versao-conversao) */
        .about-section {
            padding: 100px 0;
            background: #fff;
            border-top: 1px solid #e2e8f0;
            border-bottom: 1px solid #e2e8f0;
        }
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: stretch;
        }
        .about-media {
            border: 1px solid #e2e8f0;
            border-radius: 18px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100%;
            min-height: 100%;
        }
        .about-media-img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .about-badge {
            position: absolute;
            right: 18px;
            bottom: 18px;
            background: var(--primary);
            color: #ffffff;
            padding: 14px 20px;
            border-radius: 10px;
            z-index: 2;
            min-width: 180px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(245, 158, 11, 0.35);
        }
        .about-badge strong {
            display: block;
            font-size: 2rem;
            line-height: 1;
            font-weight: 800;
        }
        .about-badge span {
            display: block;
            margin-top: 4px;
            font-size: 0.68rem;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            font-weight: 700;
        }
        .about-content .section-title {
            text-align: left;
            margin-bottom: 18px;
            color: #0A0A0A;
        }
        .about-text {
            font-size: 1rem;
            line-height: 1.8;
            color: #475569;
            margin-bottom: 14px;
        }
        .about-progress-list {
            margin-top: 24px;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .progress-item {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }
        .progress-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.95rem;
            font-weight: 600;
            color: #0f172a;
        }
        .progress-bar {
            height: 6px;
            background: #e5e7eb;
            border-radius: 999px;
            overflow: hidden;
        }
        .progress-fill {
            height: 100%;
            background: var(--primary);
            border-radius: 999px;
        }
        @media (max-width: 1000px) {
            .about-grid { grid-template-columns: 1fr; gap: 36px; }
        }

        /* Contact / CTA (versao-conversao) */
        .contact-section {
            padding: 100px 0;
            background: #f8fafc;
            border-top: 1px solid #e2e8f0;
            border-bottom: 1px solid #e2e8f0;
        }
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: start;
        }
        .contact-info .section-title {
            text-align: left;
            margin-bottom: 16px;
        }
        .contact-text {
            color: #475569;
            line-height: 1.7;
            margin-bottom: 30px;
        }
        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 22px;
        }
        .contact-detail-item {
            display: flex;
            align-items: flex-start;
            gap: 14px;
        }
        .contact-detail-icon {
            width: 44px;
            height: 44px;
            border: 1px solid #fde68a;
            background: #fef3c7;
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            border-radius: 10px;
        }
        .testimonials .section-title,
        .contact-info .section-title,
        .contact-info .section-tag {
            color: #0A0A0A;
        }
        .contact-detail-item strong { display: block; color: var(--dark); margin-bottom: 2px; }
        .contact-detail-item span { color: #475569; font-size: 0.92rem; }
        .contact-detail-item .nw-address-multiline { display: inline-block; line-height: 1.55; }
        .contact-form-card {
            background: #fff;
            border: 1px solid #e2e8f0;
            padding: 42px 34px;
            border-radius: 10px;
        }
        .contact-form-card h3 {
            font-size: 1.3rem;
            margin-bottom: 24px;
            color: var(--dark);
        }
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
        }
        .form-group { margin-bottom: 16px; }
        .form-group label {
            display: block;
            margin-bottom: 6px;
            font-size: 0.84rem;
            font-weight: 600;
            color: #475569;
        }
        .form-group input,
        .form-group textarea {
            width: 100%;
            border: 1px solid #e2e8f0;
            background: #f8fafc;
            padding: 12px 14px;
            font-size: 0.92rem;
            font-family: inherit;
            outline: none;
            border-radius: 10px;
        }
        .form-group input:focus,
        .form-group textarea:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.14);
        }
        .btn-full { width: 100%; }

        /* Footer preto */
        .footer {
            background: #000;
            color: #fff;
            padding: 72px 0 32px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-brand p {
            margin-top: 14px;
            color: #94a3b8;
            max-width: 320px;
            line-height: 1.7;
        }
        .footer .logo {
            color: #fff;
        }
        .footer .logo span {
            color: var(--primary);
        }
        .footer-links h4 {
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            margin-bottom: 18px;
            color: #fff;
        }
        .footer-links a {
            display: block;
            color: #94a3b8;
            padding: 4px 0;
            font-size: 0.9rem;
        }
        .footer-links a:hover { color: #fff; }
        .footer-social-icons {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .footer-links a.footer-social-link {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 6px 0;
        }
        .footer-social-link svg {
            flex-shrink: 0;
            opacity: 0.9;
        }
        .footer-social-empty {
            margin-top: 8px;
            font-size: 0.85rem;
            color: #64748b;
            line-height: 1.45;
        }
        .footer-bottom {
            border-top: 1px solid #1e293b;
            padding-top: 24px;
            display: flex;
            justify-content: space-between;
            gap: 12px;
            color: #64748b;
            font-size: 0.85rem;
        }
        .footer-credit { color: var(--primary); }

        @media (max-width: 1000px) {
            .testimonials-grid { grid-template-columns: 1fr; }
            .contact-grid { grid-template-columns: 1fr; gap: 40px; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
        }
        @media (max-width: 640px) {
            .form-row { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; }
            .footer-bottom { flex-direction: column; }
            .contact-form-card { padding: 30px 22px; }
        }

        .nw-inner-hero {
            padding: 56px 0;
            background: #f59e0b;
            border-bottom: 1px solid #e2e8f0;
        }
        .nw-inner-hero h1 {
            font-size: clamp(2rem, 4vw, 2.8rem);
            color: #ffffff;
            letter-spacing: -1px;
            text-align: center;
        }
        .nw-inner-hero-excerpt {
            margin: 12px auto 0;
            max-width: 640px;
            text-align: center;
            color: rgba(255, 255, 255, 0.88);
            font-size: 1.05rem;
            line-height: 1.55;
        }
        .nw-inner-content {
            padding: 48px 0 80px;
            background: #fff;
            min-height: 35vh;
        }
        .nw-brands-page {
            padding: 56px 0 90px;
            background: #f1f5f9;
            border-top: 1px solid #e2e8f0;
        }
        .nw-brands-list {
            display: flex;
            flex-direction: column;
            gap: 0;
            max-width: 980px;
            margin: 0 auto;
        }
        .nw-brand-item {
            padding: 26px 0 24px;
            border-bottom: 2px solid #7dd3fc;
        }
        .nw-brand-item-inner {
            display: block;
            color: inherit;
            text-decoration: none;
            transition: opacity 0.2s ease;
        }
        .nw-brand-item-inner:hover {
            opacity: 0.88;
        }
        .nw-brand-item:last-child {
            border-bottom: none;
        }
        .nw-brand-logo-wrap {
            display: flex;
            justify-content: center;
            margin-bottom: 14px;
            min-height: 64px;
            align-items: center;
        }
        .nw-brand-logo {
            max-height: 78px;
            width: auto;
            max-width: 240px;
            object-fit: contain;
        }
        .nw-brand-image-placeholder {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #94a3b8;
            font-size: 0.9rem;
            font-weight: 600;
            min-height: 60px;
        }
        .nw-brand-description p {
            color: #334155;
            font-size: 1.05rem;
            line-height: 1.7;
            text-align: justify;
            margin: 0;
        }
        .nw-empty-note {
            text-align: center;
            color: #64748b;
        }
        .nw-single-marca-inner {
            max-width: 820px;
            margin: 0 auto;
        }
        .nw-single-marca-back {
            margin: 0 0 20px;
        }
        .nw-single-marca-back a {
            font-weight: 600;
            color: #0369a1;
            text-decoration: none;
        }
        .nw-single-marca-back a:hover {
            text-decoration: underline;
        }
        .nw-single-marca-featured {
            display: flex;
            justify-content: center;
            margin-bottom: 28px;
        }
        .nw-single-marca-featured-img {
            max-height: 200px;
            width: auto;
            max-width: 100%;
            object-fit: contain;
        }
        .nw-single-marca-content {
            color: #334155;
            font-size: 1.05rem;
            line-height: 1.75;
        }
        .nw-single-marca-content > *:first-child {
            margin-top: 0;
        }
        .nw-single-marca-content > *:last-child {
            margin-bottom: 0;
        }
        .nw-clientes-page {
            padding: 64px 0 100px;
            background: #fff;
            border-top: 1px solid #e2e8f0;
        }
        .page-slug-contact .contact-section {
            padding-top: 72px;
        }
        .nw-contact-header {
            text-align: left;
            margin-bottom: 16px;
        }
        .nw-clientes-list {
            display: flex;
            flex-direction: column;
            gap: 26px;
        }
        .nw-cliente-card {
            border: 1px solid #e2e8f0;
            background: #fff;
            border-radius: 16px;
            padding: 30px;
        }
        .nw-cliente-logo-wrap {
            display: flex;
            justify-content: center;
            margin-bottom: 18px;
        }
        .nw-cliente-logo {
            max-height: 74px;
            width: auto;
            object-fit: contain;
        }
        .nw-cliente-logo-placeholder {
            min-width: 180px;
            text-align: center;
            font-weight: 700;
            color: #334155;
        }
        .nw-cliente-content {
            display: flex;
            flex-direction: column;
            align-items: stretch;
        }
        .nw-cliente-content h2 {
            text-align: center;
            color: var(--dark);
            font-size: 1.35rem;
            margin-bottom: 12px;
        }
        .nw-cliente-description {
            text-align: justify;
            color: #475569;
            line-height: 1.8;
            margin-bottom: 16px;
        }
        .nw-cliente-content .btn {
            align-self: center;
            display: inline-block;
            width: auto;
            padding: 9px 22px;
            font-size: 0.88rem;
            line-height: 1.35;
        }
        @media (max-width: 1000px) {
            .nw-brand-description p {
                font-size: 1rem;
            }
        }
        @media (max-width: 640px) {
            .nw-brands-page {
                padding: 54px 0 70px;
            }
            .nw-cliente-card {
                padding: 22px;
            }
            .nw-brand-logo {
                max-height: 64px;
            }
            .nw-brand-description p {
                font-size: 0.95rem;
            }
        }
