 /* Agregando tipografía profesional Inter y refinando todo el diseño para ser más formal y corporativo */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-blue: #1e3a8a;
            --primary-blue-dark: #1e40af;
            --primary-blue-light: #3b82f6;
            --accent-blue: #60a5fa;
            --text-dark: #0f172a;
            --text-gray: #475569;
            --text-light: #94a3b8;
            --bg-white: #ffffff;
            --bg-light: #f8fafc;
            --bg-gray: #f1f5f9;
            --border-color: #e2e8f0;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            color: var(--text-dark);
            line-height: 1.7;
            overflow-x: hidden;
            font-weight: 400;
            letter-spacing: -0.01em;
        }

        .container {
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 32px;
        }

        .promo-banner {
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
            color: white;
            text-align: center;
            padding: 14px 24px;
            font-size: 13px;
            font-weight: 500;
            letter-spacing: 0.3px;
        }

        .header {
            background: var(--bg-white);
            border-bottom: 1px solid var(--border-color);
            position: sticky;
            top: 0;
            z-index: 100;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .header.scrolled {
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
            background: rgba(255, 255, 255, 0.95);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 24px 0;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            object-fit: contain;
            flex-shrink: 0;
        }

        .logo h1 {
            font-size: 22px;
            font-weight: 700;
            color: var(--primary-blue);
            letter-spacing: 0.5px;
            margin: 0;
        }

        .logo span {
            display: block;
            font-size: 9px;
            font-weight: 500;
            color: var(--text-light);
            letter-spacing: 3px;
            margin-top: 2px;
        }

        .nav {
            display: flex;
            gap: 40px;
            align-items: center;
        }

        .nav a {
            color: var(--text-gray);
            text-decoration: none;
            font-weight: 500;
            font-size: 14px;
            transition: color 0.2s ease;
            position: relative;
            letter-spacing: 0.2px;
        }

        .nav a::after {
            content: "";
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-blue);
            transition: width 0.3s ease;
        }

        .nav a:hover {
            color: var(--primary-blue);
        }

        .nav a:hover::after {
            width: 100%;
        }

        /* Agregando estilos para botones de acción en header */
        .header-actions {
            display: flex;
            gap: 12px;
            align-items: center;
        }

        .header-actions .btn {
            padding: 10px 20px;
            font-size: 13px;
        }

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

        .menu-toggle span {
            width: 24px;
            height: 2px;
            background: var(--text-dark);
            transition: all 0.3s ease;
        }

        .hero {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            padding: 100px 32px;
            max-width: 1320px;
            margin: 0 auto;
            background: linear-gradient(to bottom, var(--bg-white) 0%, var(--bg-light) 100%);
        }

        .hero-content {
            animation: fadeInUp 1s ease;
        }

        .hero-eyebrow {
            font-size: 13px;
            font-weight: 600;
            color: var(--primary-blue);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 20px;
        }

        .hero-title {
            font-size: 58px;
            font-weight: 700;
            line-height: 1.1;
            color: var(--text-dark);
            margin-bottom: 28px;
            letter-spacing: -1.5px;
        }

        .hero-subtitle {
            font-size: 19px;
            color: var(--text-gray);
            margin-bottom: 44px;
            line-height: 1.7;
            font-weight: 400;
        }

        .hero-cta {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .hero-image {
            position: relative;
            animation: fadeInRight 1s ease;
        }

        .hero-image img {
            width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
        }

        .btn {
            display: inline-block;
            padding: 16px 36px;
            font-size: 15px;
            font-weight: 600;
            text-decoration: none;
            border-radius: 6px;
            transition: all 0.2s ease;
            cursor: pointer;
            border: none;
            letter-spacing: 0.3px;
        }

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

        .btn-primary:hover {
            background: var(--primary-blue-dark);
            transform: translateY(-1px);
            box-shadow: 0 10px 20px -5px rgba(30, 58, 138, 0.25);
        }

        .btn-secondary {
            background: transparent;
            color: var(--text-dark);
            border: 1.5px solid var(--border-color);
        }

        .btn-secondary:hover {
            border-color: var(--primary-blue);
            color: var(--primary-blue);
            background: var(--bg-light);
        }

        .btn-small {
            padding: 12px 24px;
            font-size: 14px;
        }

        .section-title {
            font-size: 44px;
            font-weight: 700;
            text-align: center;
            margin-bottom: 16px;
            color: var(--text-dark);
            letter-spacing: -1px;
        }

        .section-subtitle {
            text-align: center;
            font-size: 18px;
            color: var(--text-gray);
            margin-bottom: 64px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .categories {
            padding: 100px 0;
            background: var(--bg-white);
        }

        .categories-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
        }

        .category-card {
            background: white;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            overflow: hidden;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        /* Agregando efecto parallax 3D en hover para las tarjetas de categoría */
        .category-card:hover {
            box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
            border-color: var(--primary-blue-light);
        }

        .category-image {
            width: 100%;
            height: 320px;
            overflow: hidden;
            background: var(--bg-gray);
        }

        .category-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            transition: transform 0.6s ease;
        }

        .category-card:hover .category-image img {
            transform: scale(1.05);
        }

        .category-content {
            padding: 32px;
        }

        .category-content h3 {
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 12px;
            color: var(--text-dark);
            letter-spacing: -0.5px;
        }

        .category-content p {
            color: var(--text-gray);
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .category-link {
            color: var(--primary-blue);
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            transition: color 0.2s ease;
            letter-spacing: 0.3px;
        }

        .category-link:hover {
            color: var(--primary-blue-dark);
        }

        /* Agregando secciones específicas para cada categoría */
        .category-section {
            padding: 80px 0;
            background: var(--bg-light);
            border-top: 1px solid var(--border-color);
        }

        .category-section:nth-child(even) {
            background: var(--bg-white);
        }

        .category-section h2 {
            font-size: 38px;
            font-weight: 700;
            margin-bottom: 16px;
            color: var(--text-dark);
            letter-spacing: -1px;
        }

        .category-section .section-subtitle {
            margin-bottom: 48px;
        }

        .featured-products {
            padding: 100px 0;
            background: var(--bg-light);
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 32px;
        }

        .product-card {
            background: white;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .product-card:hover {
            box-shadow: 0 12px 24px -8px rgba(0, 0, 0, 0.1);
            border-color: var(--primary-blue-light);
            transform: translateY(-2px);
        }

        .product-image {
            position: relative;
            width: 100%;
            height: 280px;
            overflow: hidden;
            background: var(--bg-gray);
        }

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

        .product-card:hover .product-image img {
            transform: scale(1.03);
        }

        .product-badge {
            position: absolute;
            top: 16px;
            right: 16px;
            background: var(--primary-blue);
            color: white;
            padding: 6px 14px;
            border-radius: 4px;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .product-badge.popular {
            background: #f59e0b;
        }

        .product-info {
            padding: 28px;
        }

        .product-info h3 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--text-dark);
            letter-spacing: -0.3px;
        }

        .product-description {
            color: var(--text-gray);
            font-size: 14px;
            margin-bottom: 16px;
            line-height: 1.6;
        }

        .product-price {
            font-size: 26px;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 20px;
            letter-spacing: -0.5px;
        }

        /* Agregando estilos para el modal de cotización */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            z-index: 1000;
            backdrop-filter: blur(4px);
            animation: fadeIn 0.3s ease;
        }

        .modal.active {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }

        .modal-content {
            background: white;
            border-radius: 12px;
            max-width: 600px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            animation: slideUp 0.3s ease;
        }

        .modal-header {
            padding: 32px 32px 24px;
            border-bottom: 1px solid var(--border-color);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .modal-header h2 {
            font-size: 28px;
            font-weight: 700;
            color: var(--text-dark);
            letter-spacing: -0.5px;
        }

        .modal-close {
            background: none;
            border: none;
            font-size: 28px;
            color: var(--text-gray);
            cursor: pointer;
            padding: 0;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 4px;
            transition: all 0.2s ease;
        }

        .modal-close:hover {
            background: var(--bg-gray);
            color: var(--text-dark);
        }

        .modal-body {
            padding: 32px;
        }

        .form-group {
            margin-bottom: 24px;
        }

        .form-group label {
            display: block;
            font-size: 14px;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 8px;
            letter-spacing: 0.2px;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px 16px;
            border: 1.5px solid var(--border-color);
            border-radius: 6px;
            font-size: 15px;
            font-family: 'Inter', sans-serif;
            color: var(--text-dark);
            transition: all 0.2s ease;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-blue);
            box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
        }

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

        .form-actions {
            display: flex;
            gap: 12px;
            justify-content: flex-end;
            padding: 24px 32px 32px;
            border-top: 1px solid var(--border-color);
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .benefits {
            padding: 100px 0;
            background: var(--bg-white);
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 48px;
        }

        .benefit-card {
            text-align: center;
            padding: 40px 32px;
            transition: all 0.3s ease;
        }

        .benefit-card:hover {
            transform: translateY(-4px);
        }

        .benefit-icon {
            font-size: 52px;
            margin-bottom: 24px;
            filter: grayscale(20%);
        }

        .benefit-card h3 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 14px;
            color: var(--text-dark);
            letter-spacing: -0.3px;
        }

        .benefit-card p {
            color: var(--text-gray);
            line-height: 1.7;
            font-size: 15px;
        }

        .cta-section {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            opacity: 0.4;
        }

        .cta-content {
            text-align: center;
            max-width: 720px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .cta-content h2 {
            font-size: 44px;
            font-weight: 700;
            margin-bottom: 24px;
            letter-spacing: -1px;
        }

        .cta-content p {
            font-size: 18px;
            margin-bottom: 44px;
            opacity: 0.95;
            line-height: 1.7;
        }

        .cta-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .cta-buttons .btn-primary {
            background: white;
            color: var(--primary-blue);
        }

        .cta-buttons .btn-primary:hover {
            background: var(--bg-light);
            transform: translateY(-2px);
        }

        .cta-buttons .btn-secondary {
            border-color: rgba(255, 255, 255, 0.3);
            color: white;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
        }

        .cta-buttons .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: white;
        }

        .footer {
            background: var(--text-dark);
            color: white;
            padding: 80px 0 32px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 48px;
            margin-bottom: 48px;
            align-items: start;
        }

        .footer-column {
            min-height: 200px;
            display: flex;
            flex-direction: column;
        }

        .footer-column h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 20px;
            letter-spacing: 0.3px;
            line-height: 1.2;
        }

        .footer-column h3 span {
            display: block;
            font-size: 9px;
            font-weight: 500;
            opacity: 0.6;
            letter-spacing: 3px;
            margin-top: 4px;
        }

        .footer-column h4 {
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 20px;
            letter-spacing: 0.3px;
            line-height: 1.2;
        }

        .footer-column p {
            opacity: 0.75;
            line-height: 1.7;
            font-size: 14px;
            margin-bottom: 0;
            flex-grow: 1;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 14px;
        }

        .footer-column ul li a {
            color: white;
            text-decoration: none;
            opacity: 0.75;
            transition: opacity 0.2s ease;
            font-size: 14px;
        }

        .footer-column ul li a:hover {
            opacity: 1;
        }

        .social-links {
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin-top: auto;
        }

        .social-links a {
            color: white;
            text-decoration: none;
            opacity: 0.75;
            transition: all 0.3s ease;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 16px;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .social-links a:hover {
            opacity: 1;
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
        }

        .social-links a svg {
            width: 20px;
            height: 20px;
            flex-shrink: 0;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 32px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            opacity: 0.6;
            font-size: 13px;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(40px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .fade-in {
            animation: fadeInUp 1s ease;
        }

        .fade-in-delay {
            animation: fadeInUp 1s ease 0.2s both;
        }

        .fade-in-delay-2 {
            animation: fadeInUp 1s ease 0.4s both;
        }

        @media (max-width: 968px) {
            .nav {
                display: none;
            }

            .menu-toggle {
                display: flex;
            }

            .header-actions {
                flex-wrap: wrap;
            }

            .hero {
                grid-template-columns: 1fr;
                gap: 48px;
                padding: 80px 32px;
            }

            .hero-title {
                font-size: 44px;
            }

            .hero-subtitle {
                font-size: 17px;
            }

            .section-title {
                font-size: 36px;
            }

            .categories-grid,
            .products-grid,
            .benefits-grid {
                grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
                gap: 28px;
            }

            .cta-content h2 {
                font-size: 36px;
            }

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

            .footer-column {
                min-height: auto;
                text-align: center;
            }

            .social-links {
                align-items: center;
            }
        }

        @media (max-width: 640px) {
            .logo-icon {
                width: 32px;
                height: 32px;
            }
            
            .logo h1 {
                font-size: 18px;
            }

            .hero-title {
                font-size: 36px;
            }

            .hero-cta {
                flex-direction: column;
            }

            .btn {
                width: 100%;
                text-align: center;
            }

            .categories-grid,
            .products-grid {
                grid-template-columns: 1fr;
            }

            .cta-buttons {
                flex-direction: column;
            }

            .cta-buttons .btn {
                width: 100%;
            }

            .modal-content {
                margin: 20px;
            }

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

            .form-actions .btn {
                width: 100%;
            }
        }
/* Estilos específicos del catálogo que complementan el CSS externo */
        
        /* Page Header específico para catálogo */
        .page-header {
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
            color: white;
            padding: 80px 0 60px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .page-header::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            opacity: 0.4;
        }

        .page-header-content {
            position: relative;
            z-index: 1;
        }

        .page-header h1 {
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 16px;
            letter-spacing: -1.5px;
        }

        .page-header p {
            font-size: 20px;
            opacity: 0.95;
            font-weight: 400;
        }

        /* Category Navigation */
        .category-nav {
            background: white;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
            position: sticky;
            top: 89px;
            z-index: 90;
        }

        .category-nav-content {
            display: flex;
            gap: 8px;
            overflow-x: auto;
            scrollbar-width: thin;
            scrollbar-color: var(--text-light) var(--bg-gray);
            padding: 0;
        }

        .category-nav-content::-webkit-scrollbar {
            height: 6px;
        }

        .category-nav-content::-webkit-scrollbar-track {
            background: var(--bg-gray);
        }

        .category-nav-content::-webkit-scrollbar-thumb {
            background: var(--text-light);
            border-radius: 3px;
        }

        .category-link {
            padding: 16px 24px;
            color: var(--text-gray);
            text-decoration: none;
            white-space: nowrap;
            font-weight: 600;
            font-size: 14px;
            border-bottom: 3px solid transparent;
            transition: all 0.3s ease;
        }

        .category-link:hover,
        .category-link.active {
            color: var(--primary-blue);
            border-bottom-color: var(--primary-blue-light);
            background-color: var(--bg-light);
        }

        /* Ajustes para el grid de productos */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
        }

        /* Product Card - usando las clases del CSS externo pero con ajustes */
        .product-card .product-image {
            height: 280px;
        }

        .product-card .product-content {
            padding: 28px;
        }

        .product-card .product-name {
            font-size: 20px;
            margin-bottom: 14px;
        }

        .product-card .product-description {
            font-size: 15px;
            margin-bottom: 28px;
        }

        .product-footer {
            display: flex;
            gap: 12px;
        }

        .product-footer .btn {
            flex: 1;
            padding: 14px 24px;
            font-size: 14px;
            text-align: center;
        }

        /* Ajustes del modal para mejor presentación */
        #modalProductName {
            font-size: 16px;
            color: var(--text-gray);
            font-weight: 400;
        }

        /* Responsive adjustments específicos */
        @media (max-width: 968px) {
            .page-header h1 {
                font-size: 36px;
            }

            .category-header h2 {
                font-size: 30px;
            }
        }

        @media (max-width: 640px) {
            .page-header {
                padding: 60px 0 40px;
            }

            .page-header h1 {
                font-size: 28px;
            }

            .page-header p {
                font-size: 16px;
            }

            .category-nav {
                top: 81px;
            }

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

            .product-footer {
                flex-direction: column;
            }
        }

        /* Trusted Suppliers Section Styles */
        .suppliers-section {
            background: var(--bg-white);
            padding: 80px 0;
            border-top: 1px solid var(--border-color);
        }

        .suppliers-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 40px;
            align-items: center;
            margin-top: 50px;
        }

        .supplier-item {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .supplier-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: 'Inter', sans-serif;
            font-weight: 600;
        }

        /* ZAMOFI Styles */
        .zamofi {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .zamofi-icon {
            width: 40px;
            height: 40px;
            background: #60a5fa;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 18px;
        }

        .zamofi-text {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-dark);
        }

        /* OFFIHO Styles */
        .offiho {
            flex-direction: column;
            align-items: flex-start;
        }

        .offiho-main {
            font-size: 18px;
            font-weight: 700;
            color: #ec4899;
            line-height: 1;
        }

        .offiho-sub {
            font-size: 12px;
            font-weight: 600;
            color: var(--text-dark);
            margin-top: 2px;
        }

        /* Gebesa Styles */
        .gebesa-text {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-dark);
        }

        /* Línea Italia Styles */
        .linea-italia {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .li-icon {
            width: 32px;
            height: 32px;
            border: 2px solid var(--text-dark);
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--text-dark);
            color: white;
            font-weight: 700;
            font-size: 14px;
        }

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

        .li-main {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-dark);
            line-height: 1.2;
        }

        .li-tagline {
            font-size: 10px;
            font-weight: 600;
            color: var(--text-dark);
            margin-top: 2px;
        }

        /* Grupo Albar Styles */
        .grupo-albar {
            flex-direction: column;
            align-items: flex-start;
            text-align: left;
        }

        .grupo-line {
            font-size: 12px;
            font-weight: 300;
            color: var(--text-dark);
            line-height: 1;
        }

        .albar-line {
            font-size: 16px;
            font-weight: 700;
            line-height: 1;
            margin: 2px 0;
        }

        .albar-l, .albar-b {
            color: #3b82f6;
        }

        .albar-a, .albar-a2, .albar-r {
            color: var(--text-dark);
        }

        .futuro-line {
            font-size: 10px;
            font-weight: 300;
            color: var(--text-dark);
            line-height: 1;
        }

        /* Responsive Design for Suppliers */
        @media (max-width: 1024px) {
            .suppliers-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 30px;
            }
        }

        @media (max-width: 768px) {
            .suppliers-section {
                padding: 60px 0;
            }

            .suppliers-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }

            .supplier-logo {
                flex-direction: column;
                text-align: center;
                gap: 8px;
            }

            .linea-italia {
                flex-direction: column;
                text-align: center;
            }

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

        @media (max-width: 480px) {
            .suppliers-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .supplier-item {
                justify-content: center;
            }
        }