        :root {
            --navy: #1B3A5C;
            --sky: #E8F2FA;
            --white: #FFFFFF;
            --yellow: #F5C842;
            --dark: #111827;
            --gray: #8B9AAB;
            --gray-light: #F4F6F8;
            --card-bg: #8C96A4;
            --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        section[id] {
            scroll-margin-top: 90px;
        }

        .skip-link {
            position: fixed;
            top: 0.75rem;
            left: 0.75rem;
            z-index: 10000;
            padding: 0.75rem 1rem;
            border-radius: 0.5rem;
            background: var(--yellow);
            color: var(--dark);
            font-weight: 700;
            transform: translateY(-150%);
        }

        .skip-link:focus {
            transform: translateY(0);
        }

        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

        :focus-visible {
            outline: 3px solid var(--yellow);
            outline-offset: 3px;
        }

        body {
            font-family: 'DM Sans', sans-serif;
            color: var(--dark);
            line-height: 1.6;
            overflow-x: hidden;
            background-color: var(--white);
        }

        h1, h2, h3, .marquee-text {
            font-family: 'Barlow Condensed', sans-serif;
            text-transform: uppercase;
        }

        .mono {
            font-family: 'DM Mono', monospace;
            font-size: 0.75rem;
            letter-spacing: 0.05em;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }

        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
            display: block;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        /* --- Buttons --- */
        .btn-primary {
            position: relative;
            display: inline-flex;
            align-items: center;
            background: var(--navy);
            color: var(--white);
            padding: 1rem 2.5rem;
            border-radius: 9999px;
            font-weight: 700;
            letter-spacing: 0.05em;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            overflow: hidden;
        }

        .btn-primary::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -60%;
            width: 20%;
            height: 200%;
            background: rgba(255, 255, 255, 0.2);
            transform: rotate(30deg);
            animation: shimmer 4s infinite;
        }

        .btn-primary:hover {
            background: var(--yellow);
            color: var(--dark);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }

        /* --- Animations --- */
        @keyframes shimmer {
            0% { left: -60%; }
            20% { left: 120%; }
            100% { left: 120%; }
        }

        .js .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }

        .js .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        @keyframes float {
            0% { transform: translateY(0px); }
            100% { transform: translateY(-15px); }
        }

        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-100%); }
        }

        .section-lead {
            max-width: 760px;
            margin: -1.5rem 0 3rem;
            color: #536579;
            font-size: 1.05rem;
            line-height: 1.75;
        }

        /* --- Preguntas frecuentes --- */
        .section-faq {
            padding: 7rem 0;
            background: var(--gray-light);
        }

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

        .faq-item {
            padding: 1.5rem;
            border: 1px solid rgba(27, 58, 92, 0.12);
            border-radius: 1rem;
            background: var(--white);
        }

        .faq-item summary {
            color: var(--navy);
            cursor: pointer;
            font-weight: 700;
        }

        .faq-item p {
            margin-top: 1rem;
        }

        /* --- Navigation --- */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(51, 82, 100, 0.95);
            z-index: 1000;
            border-bottom: 1px solid rgba(255,255,255,0.05);
            transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease, backdrop-filter 0.4s ease;
        }

        nav.scrolled {
            background: rgba(20, 40, 58, 0.82);
            backdrop-filter: blur(18px) saturate(1.5);
            -webkit-backdrop-filter: blur(18px) saturate(1.5);
            box-shadow: 0 4px 32px rgba(0,0,0,0.28);
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
            transition: height 0.4s ease;
            width: 100%;
            min-width: 0;
        }

        nav.scrolled .nav-container {
            height: 62px;
        }

        /* Scroll-progress bar */
        #scroll-progress {
            position: absolute;
            bottom: 0;
            left: 0;
            height: 2px;
            width: 0%;
            background: linear-gradient(90deg, var(--yellow), #f5a623);
            transition: width 0.1s linear;
            border-radius: 0 2px 2px 0;
            z-index: 1001;
        }

        .logo-box {
            background: var(--navy);
            color: var(--white);
            width: 44px;
            height: 44px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Barlow Condensed', sans-serif;
            font-weight: 800;
            line-height: 0.9;
            font-size: 0.8rem;
            text-align: center;
        }

        .logo-link {
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            flex-shrink: 0;
        }

        .logo-img {
            height: 52px;
            width: auto;
            object-fit: contain;
            transition: height 0.4s ease, filter 0.4s ease, transform 0.4s ease;
            filter: drop-shadow(0 2px 6px rgba(0,0,0,0.25));
        }

        nav.scrolled .logo-img {
            height: 40px;
            filter: drop-shadow(0 2px 10px rgba(0,0,0,0.4)) brightness(1.1);
        }

        .logo-link:hover .logo-img {
            transform: scale(1.08) rotate(-3deg);
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
        }

        .nav-links a {
            font-weight: 500;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: var(--white);
        }

        .nav-links a:hover {
            color: var(--yellow);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            color: var(--white);
            flex: 0 0 auto;
        }

        /* --- Hero --- */
        .hero {
            background:
                radial-gradient(circle at 78% 25%, rgba(245, 200, 66, 0.28), transparent 26%),
                linear-gradient(135deg, #edf7ff 0%, var(--sky) 52%, #dcecf8 100%);
            min-height: max(760px, 100vh);
            display: flex;
            align-items: center;
            padding-top: 80px;
            overflow: hidden;
            position: relative;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: minmax(340px, 0.82fr) minmax(520px, 1.18fr);
            align-items: center;
            gap: clamp(1rem, 3vw, 4rem);
            min-height: calc(100vh - 80px);
            min-width: 0;
        }

        .hero-content {
            padding-right: 2rem;
            z-index: 2;
            min-width: 0;
        }

        .eyebrow {
            display: inline-block;
            background: var(--white);
            color: var(--navy);
            padding: 0.5rem 1.25rem;
            border-radius: 99px;
            font-weight: 700;
            font-size: 0.7rem;
            text-transform: uppercase;
            margin-bottom: 2rem;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        }

        .hero-headline {
            font-size: clamp(3.5rem, 5.5vw, 5.4rem);
            color: var(--navy);
            line-height: 0.86;
            margin-bottom: 1.5rem;
            letter-spacing: -0.025em;
            max-width: 100%;
        }

        .mobile-break {
            display: none;
        }

        .hero-subheadline {
            font-size: 0.875rem;
            text-transform: uppercase;
            letter-spacing: 0.25em;
            color: var(--navy);
            font-weight: 500;
            margin-bottom: 2.5rem;
            opacity: 0.85;
            max-width: 100%;
            overflow-wrap: anywhere;
        }

        .hero-badges {
            display: flex;
            gap: 0.75rem;
            margin-bottom: 2.25rem;
            flex-wrap: wrap;
        }

        .badge-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--navy);
            padding: 0.7rem 0.9rem;
            border: 1px solid rgba(27, 58, 92, 0.1);
            border-radius: 0.8rem;
            background: rgba(255, 255, 255, 0.55);
            backdrop-filter: blur(8px);
            min-width: 0;
        }

        .badge-item svg {
            flex: 0 0 auto;
        }

        .badge-item span {
            min-width: 0;
            overflow-wrap: anywhere;
        }

        .hero-actions {
            display: flex;
            align-items: center;
            gap: 1rem;
            flex-wrap: wrap;
            min-width: 0;
            max-width: 100%;
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 56px;
            padding: 0.85rem 1.6rem;
            border: 1px solid rgba(27, 58, 92, 0.28);
            border-radius: 9999px;
            color: var(--navy);
            font-size: 0.82rem;
            font-weight: 700;
            letter-spacing: 0.06em;
        }

        .btn-secondary:hover {
            border-color: var(--navy);
            background: rgba(255, 255, 255, 0.65);
            transform: translateY(-3px);
        }

        .hero-collage {
            position: relative;
            width: min(100%, 720px);
            aspect-ratio: 1.06;
            justify-self: end;
            isolation: isolate;
        }

        .hero-collage::before {
            content: '';
            position: absolute;
            inset: 9% 7% 8% 10%;
            z-index: -2;
            border: 1px solid rgba(255, 255, 255, 0.7);
            border-radius: 44% 56% 49% 51% / 52% 42% 58% 48%;
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.16));
            box-shadow: 0 35px 90px rgba(27, 58, 92, 0.14);
            backdrop-filter: blur(6px);
            transform: rotate(-4deg);
        }

        .hero-product {
            position: absolute;
            display: block;
            transform: translate(-50%, -50%);
        }

        .hero-product img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            filter: drop-shadow(0 22px 24px rgba(17, 24, 39, 0.2));
            animation: productFloat 5.5s ease-in-out infinite alternate;
        }

        .hero-product-shirt {
            left: 49%;
            top: 58%;
            z-index: 5;
            width: 66%;
            height: 66%;
        }

        .hero-product-polo {
            left: 76%;
            top: 38%;
            z-index: 3;
            width: 47%;
            height: 58%;
            transform: translate(-50%, -50%) rotate(7deg);
        }

        .hero-product-sweatshirt {
            left: 29%;
            top: 35%;
            z-index: 2;
            width: 46%;
            height: 57%;
            transform: translate(-50%, -50%) rotate(-7deg);
        }

        .hero-product-bag {
            left: 16%;
            top: 73%;
            z-index: 6;
            width: 31%;
            height: 38%;
            transform: translate(-50%, -50%) rotate(-9deg);
        }

        .hero-product-tumbler {
            left: 86%;
            top: 72%;
            z-index: 7;
            width: 17%;
            height: 32%;
            transform: translate(-50%, -50%) rotate(5deg);
        }

        .hero-product-polo img,
        .hero-product-bag img {
            animation-delay: -1.6s;
        }

        .hero-product-sweatshirt img,
        .hero-product-tumbler img {
            animation-delay: -3.1s;
        }

        @keyframes productFloat {
            from { transform: translateY(0); }
            to { transform: translateY(-10px); }
        }

        .hero-orbit {
            position: absolute;
            z-index: -1;
            border-radius: 50%;
            pointer-events: none;
        }

        .hero-orbit-one {
            top: 3%;
            right: 3%;
            width: 24%;
            aspect-ratio: 1;
            background: var(--yellow);
            opacity: 0.92;
        }

        .hero-orbit-two {
            bottom: 7%;
            left: 6%;
            width: 15%;
            aspect-ratio: 1;
            border: 18px solid rgba(27, 58, 92, 0.12);
        }

        .hero-collage-note {
            position: absolute;
            z-index: 8;
            padding: 0.55rem 0.85rem;
            border: 1px solid rgba(255, 255, 255, 0.72);
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.72);
            color: var(--navy);
            box-shadow: 0 12px 30px rgba(27, 58, 92, 0.12);
            backdrop-filter: blur(12px);
            font-family: 'DM Mono', monospace;
            font-size: 0.62rem;
            font-weight: 700;
            letter-spacing: 0.1em;
        }

        .hero-collage-note-top {
            top: 13%;
            left: 7%;
            transform: rotate(-5deg);
        }

        .hero-collage-note-bottom {
            right: 2%;
            bottom: 8%;
            transform: rotate(3deg);
        }

        /* --- Marquee --- */
        .marquee {
            background: var(--navy);
            overflow: hidden;
            padding: 1.5rem 0;
            display: flex;
            white-space: nowrap;
        }

        .marquee-content {
            display: flex;
            flex-shrink: 0;
            align-items: center;
            justify-content: space-around;
            min-width: 100%;
            gap: 3.5rem;
            animation: marquee 30s linear infinite;
            padding-right: 3.5rem;
        }

        .marquee:hover .marquee-content {
            animation-play-state: paused;
        }

        .marquee-logo {
            height: 64px;
            max-width: 170px;
            width: auto;
            object-fit: contain;
            filter: none;
            opacity: 0.92;
            transition: var(--transition);
            background: transparent;
            border-radius: 0;
            padding: 0;
        }

        .marquee-logo:hover {
            opacity: 1;
            transform: scale(1.08);
        }

        /* --- Servicios --- */
        .section-servicios {
            padding: 10rem 0;
        }

        .section-title {
            font-size: clamp(2.5rem, 5vw, 4rem);
            margin-bottom: 5rem;
            color: var(--navy);
            line-height: 1;
        }

        .servicios-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
        }

        .servicio-card {
            cursor: pointer;
        }

        .servicio-img-box {
            position: relative;
            aspect-ratio: 16/10;
            border-radius: 1.25rem;
            overflow: hidden;
            margin-bottom: 2rem;
            border: 2px solid transparent;
            transition: var(--transition);
        }

        .servicio-card:hover .servicio-img-box {
            transform: scale(1.03) translateY(-5px);
            border-color: var(--navy);
            box-shadow: 0 30px 60px rgba(27, 58, 92, 0.12);
        }

        .servicio-img-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .servicio-card h3 {
            font-size: 2rem;
            color: var(--navy);
            margin-bottom: 1rem;
        }

        .servicio-card p {
            color: var(--gray);
            font-size: 0.95rem;
            max-width: 90%;
        }


        /* --- Productos --- */
        .section-productos {
            background:
                radial-gradient(circle at 8% 15%, rgba(245, 200, 66, 0.12), transparent 24%),
                var(--gray-light);
            padding: 10rem 0;
        }

        .productos-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: clamp(1rem, 2vw, 1.75rem);
        }

        .producto-card {
            position: relative;
            isolation: isolate;
            background: #eaf2fb;
            border: 1px solid rgba(27, 58, 92, 0.08);
            border-radius: 1.35rem;
            overflow: hidden;
            aspect-ratio: 1/1;
            box-shadow: 0 12px 30px rgba(27, 58, 92, 0.08);
            transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease, border-color 0.4s ease;
        }

        .producto-card:hover {
            transform: translateY(-8px);
            border-color: rgba(27, 58, 92, 0.18);
            box-shadow: 0 24px 55px rgba(27, 58, 92, 0.16);
        }

        .producto-card picture {
            display: block;
            width: 100%;
            height: 100%;
        }

        .producto-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.65s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.4s ease;
        }

        .producto-card:hover img {
            transform: scale(1.045);
            filter: saturate(1.05) contrast(1.02);
        }

        .producto-card::after {
            content: '';
            position: absolute;
            inset: 0;
            z-index: 1;
            pointer-events: none;
            background: linear-gradient(180deg, transparent 50%, rgba(8, 25, 43, 0.08) 68%, rgba(8, 25, 43, 0.72) 100%);
            transition: opacity 0.4s ease;
        }

        .producto-card:hover::after {
            opacity: 0.94;
        }

        .producto-overlay {
            position: absolute;
            right: 0;
            bottom: 0;
            left: 0;
            z-index: 2;
            display: flex;
            align-items: center;
            padding: clamp(1rem, 2vw, 1.4rem);
            color: var(--white);
            pointer-events: none;
        }

        .producto-overlay h3 {
            display: flex;
            align-items: center;
            gap: 0.65rem;
            width: 100%;
            font-size: clamp(1.15rem, 1.8vw, 1.55rem);
            line-height: 1;
            letter-spacing: 0.015em;
            text-shadow: 0 2px 12px rgba(8, 25, 43, 0.55);
            text-wrap: balance;
        }

        .producto-overlay h3::before {
            content: '';
            flex: 0 0 auto;
            width: 0.2rem;
            height: 1.45em;
            border-radius: 999px;
            background: var(--yellow);
        }

        /* --- NEW: Social Proof & Testimonials --- */
        .section-proof {
            padding: 10rem 0;
            background: var(--white);
            text-align: center;
        }

        .brands-row {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 5rem;
            opacity: 0.5;
            margin-bottom: 6rem;
            flex-wrap: wrap;
        }

        .brand-logo {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--navy);
            letter-spacing: 0.1em;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
            margin-top: 4rem;
        }

        .testimonial-card {
            background: var(--gray-light);
            padding: 3rem;
            border-radius: 2rem;
            text-align: left;
            transition: var(--transition);
        }

        .testimonial-card:hover {
            background: var(--white);
            box-shadow: 0 20px 40px rgba(0,0,0,0.05);
            transform: translateY(-5px);
        }

        .testimonial-quote {
            font-size: 1rem;
            color: var(--dark);
            margin-bottom: 2rem;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .author-avatar {
            width: 48px;
            height: 48px;
            background: var(--navy);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-weight: 700;
        }

        /* --- Contact --- */
        .section-contact {
            padding: 10rem 0;
            background: var(--white);
        }

        .contact-map {
            margin-top: 4rem;
            grid-column: 1 / -1;
            border-radius: 1.5rem;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(27, 58, 92, 0.12);
            border: 3px solid var(--gray-light);
        }

        .contact-map iframe {
            width: 100%;
            height: 350px;
            display: block;
            border: none;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
        }

        .contact-form h2 {
            font-size: 3.5rem;
            color: var(--yellow);
            margin-bottom: 0.5rem;
        }

        .contact-form p {
            margin-bottom: 3.5rem;
            color: var(--dark);
            font-weight: 500;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin-bottom: 2.5rem;
        }

        .form-control {
            width: 100%;
            padding: 1rem 0;
            background: transparent;
            border: none;
            border-bottom: 1px solid #eee;
            font-family: inherit;
            font-size: 1.05rem;
            outline: none;
            transition: border-color 0.3s;
        }

        .form-control:focus {
            border-color: var(--navy);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--navy);
            color: var(--navy);
            padding: 1.25rem 4.5rem;
            border-radius: 9999px;
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition);
            letter-spacing: 0.1em;
        }

        .btn-outline:hover {
            background: var(--navy);
            color: var(--white);
            box-shadow: 0 10px 20px rgba(27, 58, 92, 0.15);
        }

        /* Form feedback messages */
        .form-feedback {
            display: none;
            align-items: center;
            gap: 0.6rem;
            margin-top: 1.5rem;
            padding: 1rem 1.25rem;
            border-radius: 0.75rem;
            font-size: 0.9rem;
            font-weight: 600;
            opacity: 0;
            transform: translateY(8px);
            transition: opacity 0.4s ease, transform 0.4s ease;
        }

        .form-feedback.feedback-in {
            opacity: 1;
            transform: translateY(0);
        }

        .form-success {
            background: #d1fae5;
            color: #065f46;
            border: 1px solid #6ee7b7;
        }

        .form-error {
            background: #fee2e2;
            color: #991b1b;
            border: 1px solid #fca5a5;
        }

        #submit-btn:disabled {
            opacity: 0.65;
            cursor: not-allowed;
        }

        .contact-info h3 {
            font-size: 2.5rem;
            color: var(--navy);
            margin-bottom: 3rem;
        }

        .info-row {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .info-icon {
            flex-shrink: 0;
            color: var(--navy);
            opacity: 0.8;
        }

        .info-label {
            font-weight: 800;
            text-transform: uppercase;
            font-size: 0.75rem;
            display: block;
            margin-bottom: 0.5rem;
            color: var(--gray);
        }

        .info-detail {
            font-size: 1rem;
            color: var(--dark);
            font-weight: 500;
        }

        .social-link {
            display: flex;
            align-items: center;
            gap: 1rem;
            font-weight: 800;
            text-transform: uppercase;
            font-size: 0.8rem;
            color: var(--navy);
        }

        /* --- Footer --- */
        footer {
            background: var(--navy);
            color: var(--white);
            padding: 6rem 0 4rem;
            text-align: center;
        }

        .footer-logo {
            display: inline-flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
            margin-bottom: 3rem;
        }

        .footer-logo-link {
            background: var(--white);
            padding: 8px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
            transition: var(--transition);
        }

        .footer-logo-link:hover {
            transform: scale(1.1) rotate(5deg);
            background: var(--yellow);
        }

        .footer-logo-img {
            height: 60px;
            width: 60px;
            object-fit: contain;
            display: block;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 3rem;
            flex-wrap: wrap;
            margin-top: 3rem;
        }

        .footer-links a {
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            opacity: 0.7;
        }

        .footer-links a:hover {
            opacity: 1;
            color: var(--yellow);
        }

        /* --- Clientes --- */
        .section-clientes {
            padding: 8rem 0;
            background: var(--white);
            text-align: center;
        }

        .section-clientes .section-title {
            margin-bottom: 4rem;
        }

        .clientes-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 4rem 3rem;
            align-items: center;
            justify-items: center;
            margin-top: 4rem;
        }

        .cliente-logo-wrap {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            max-width: 200px;
            height: 100px;
            transition: var(--transition);
        }

        .cliente-logo-wrap img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: none; /* Keep original colors as in CLIENTES.jpeg */
        }

        .cliente-logo-wrap:hover {
            transform: scale(1.08);
        }

        /* --- Proceso --- */
        .section-proceso {
            background: var(--sky);
            padding: 8rem 0;
        }

        .timeline-wrapper {
            position: relative;
            margin-top: 4rem;
            display: flex;
            flex-direction: column;
        }

        .timeline-row {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2.5rem;
        }

        .timeline-step {
            display: flex;
            flex-direction: column;
            position: relative;
        }

        .top-row .timeline-step {
            justify-content: flex-end;
            padding-bottom: 3.5rem;
        }

        .bottom-row .timeline-step {
            justify-content: flex-start;
            padding-top: 3.5rem;
        }

        .step-content {
            background: transparent;
        }

        .step-content h3 {
            font-size: 1.1rem;
            font-weight: 700;
            color: #1B3A5C;
            margin-bottom: 0.75rem;
            font-family: 'DM Sans', sans-serif;
            text-transform: uppercase;
        }

        .step-content p {
            font-size: 0.85rem;
            color: var(--gray);
            line-height: 1.6;
        }

        /* The horizontal bar */
        .timeline-bar {
            display: flex;
            align-items: center;
            justify-content: space-around;
            background: var(--white);
            border: 2px solid #1B3A5C;
            border-radius: 999px;
            padding: 1.25rem 3rem;
            margin: 2rem 0;
            box-shadow: 0 4px 15px rgba(27, 58, 92, 0.05);
            position: relative;
            z-index: 1;
        }

        .timeline-bar-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            color: #1B3A5C;
            font-weight: 700;
            font-size: 0.85rem;
            letter-spacing: 0.05em;
        }

        .timeline-bar-item svg {
            width: 24px;
            height: 24px;
            fill: none;
            stroke: currentColor;
            stroke-width: 2;
            flex-shrink: 0;
        }

        .timeline-bar-dot {
            color: #1B3A5C;
            font-weight: bold;
            font-size: 1.5rem;
        }

        /* Connector numbers and lines */
        .step-indicator {
            position: absolute;
            left: 15%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .top-row .step-indicator {
            bottom: 0;
        }

        .bottom-row .step-indicator {
            top: 0;
        }

        .step-number-circle {
            width: 28px;
            height: 28px;
            background: #1B3A5C;
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            font-weight: 700;
            z-index: 2;
        }

        .step-connector-line {
            width: 2px;
            background: #1B3A5C;
        }

        .top-row .step-connector-line {
            height: 30px;
        }

        .bottom-row .step-connector-line {
            height: 30px;
            order: -1; /* Place line above the circle in flex layout */
        }

        /* --- Sobre Nosotros --- */
        .section-nosotros {
            padding: 8rem 0;
            background: var(--white);
        }

        .sobre-nosotros-intro {
            display: flex;
            gap: 4rem;
            align-items: center;
            margin-bottom: 5rem;
        }

        .sobre-nosotros-intro-text {
            flex: 1.2;
        }

        .sobre-nosotros-intro-text p {
            font-size: 1.05rem;
            color: var(--gray);
            line-height: 1.75;
            margin-bottom: 1.5rem;
        }

        .sobre-nosotros-intro-img {
            flex: 0.8;
            border-radius: 2rem;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(27, 58, 92, 0.12);
            aspect-ratio: 3/2;
        }

        .sobre-nosotros-intro-img picture,
        .sobre-nosotros-intro-img img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .sobre-nosotros-intro-img:hover img {
            transform: scale(1.05);
        }

        .sobre-nosotros-columns {
            display: grid;
            grid-template-columns: 45% 50%;
            gap: 5%;
            border-top: 1px solid rgba(0, 0, 0, 0.08);
            padding-top: 5rem;
        }

        .differencia-title {
            font-size: 2rem;
            color: #1B3A5C;
            margin-bottom: 2rem;
            font-family: 'Barlow Condensed', sans-serif;
            text-transform: uppercase;
        }

        .differencia-list {
            list-style: none;
            padding-left: 0;
        }

        .differencia-list li {
            font-size: 1.1rem;
            color: var(--dark);
            margin-bottom: 1.25rem;
            position: relative;
            padding-left: 1.75rem;
        }

        .differencia-list li::before {
            content: '•';
            color: #1B3A5C;
            font-size: 2rem;
            position: absolute;
            left: 0.25rem;
            top: -0.35rem;
        }

        .mision-vision-compromiso {
            display: flex;
            flex-direction: column;
            gap: 2.5rem;
        }

        .mvc-block h4 {
            font-size: 1.25rem;
            font-weight: 700;
            color: #1B3A5C;
            margin-bottom: 0.5rem;
            font-family: 'DM Sans', sans-serif;
        }

        .mvc-block p {
            font-size: 1rem;
            color: var(--gray);
            line-height: 1.6;
        }

        /* --- Reseñas --- */
        .section-reseñas {
            padding: 8rem 0;
            background: var(--gray-light);
        }

        .reseñas-image-wrap {
            max-width: 1100px;
            margin: 4rem auto 0;
            border-radius: 1.5rem;
            background: transparent;
            transition: var(--transition);
        }

        .reseñas-image-wrap:hover {
            transform: translateY(-4px);
        }

        .reseñas-image-wrap picture,
        .reseñas-image-wrap img {
            display: block;
            width: 100%;
            height: auto;
            filter: drop-shadow(0 18px 24px rgba(27, 58, 92, 0.1));
            transition: filter 0.4s ease;
        }

        .reseñas-image-wrap:hover img {
            filter: drop-shadow(0 24px 32px rgba(27, 58, 92, 0.15));
        }

        /* --- Contacto --- */
        .social-icons-row {
            display: flex;
            gap: 1rem;
            margin: 2rem 0;
        }

        .social-icon-btn {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: #111827;
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .social-icon-btn:hover {
            background: var(--yellow);
            color: var(--dark);
            transform: scale(1.1) rotate(8deg);
        }

        .social-icon-btn svg {
            width: 20px;
            height: 20px;
            fill: currentColor;
        }

        .contact-info .contact-map {
            margin-top: 2rem;
            width: 100%;
            border-radius: 1.5rem;
            overflow: hidden;
            border: 3px solid var(--gray-light);
            box-shadow: 0 8px 30px rgba(27, 58, 92, 0.08);
            aspect-ratio: 16/10;
        }

        .contact-info .contact-map iframe {
            width: 100%;
            height: 100%;
            border: none;
            display: block;
        }

        /* --- Mobile --- */
        @media (max-width: 1024px) {
            .hero {
                min-height: auto;
                padding: 130px 0 3rem;
            }
            .hero-grid {
                grid-template-columns: 1fr;
                min-height: 0;
                text-align: center;
            }
            .hero-content {
                max-width: 720px;
                margin: 0 auto;
                padding-right: 0;
            }
            .hero-badges,
            .hero-actions {
                justify-content: center;
            }
            .hero-collage {
                width: min(86vw, 680px);
                margin: 0 auto;
                justify-self: center;
            }
            .hero-headline { font-size: clamp(3rem, 10vw, 4rem); }

            .clientes-grid { grid-template-columns: repeat(2, 1fr); gap: 3rem 2rem; }

            /* Timeline Mobile stack */
            .timeline-row { grid-template-columns: 1fr; gap: 2rem; }
            .timeline-bar { display: none; }
            .top-row .timeline-step, .bottom-row .timeline-step {
                padding: 1.5rem;
                background: var(--white);
                border-radius: 1.5rem;
                border: 1px solid rgba(27, 58, 92, 0.08);
            }
            .step-indicator { display: none; }
            .step-content h3::before {
                content: attr(data-step) ". ";
                color: var(--yellow);
                font-weight: 800;
            }

            .sobre-nosotros-intro { flex-direction: column; gap: 3rem; }
            .sobre-nosotros-intro-img { width: 100%; }
            .sobre-nosotros-columns { grid-template-columns: 1fr; gap: 4rem; }
        }

        /* --- WhatsApp FAB --- */
        .whatsapp-fab {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 60px;
            height: 60px;
            background: #25D366;
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
            z-index: 9999;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            animation: waPulse 2.5s infinite;
        }

        .whatsapp-fab svg {
            width: 32px;
            height: 32px;
        }

        .whatsapp-fab:hover {
            transform: scale(1.12) translateY(-3px);
            box-shadow: 0 12px 32px rgba(37, 211, 102, 0.55);
            animation: none;
        }

        @keyframes waPulse {
            0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
            70%  { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
            100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
        }

        @media (max-width: 768px) {
            .mobile-break {
                display: inline;
            }
            .hero {
                padding-top: 112px;
            }
            .hero .container,
            .hero-grid {
                width: 100%;
                max-width: 100%;
                min-width: 0;
            }
            .hero-grid {
                gap: 1rem;
            }
            .hero-content {
                width: 100%;
                max-width: 100%;
                min-width: 0;
            }
            .hero-headline {
                width: 100%;
                font-size: clamp(2.65rem, 8.5vw, 3.7rem);
                line-height: 0.9;
            }
            .hero-subheadline {
                width: min(100%, 560px);
                margin-right: auto;
                margin-bottom: 1.5rem;
                margin-left: auto;
                letter-spacing: 0.18em;
            }
            .hero-badges {
                display: grid;
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 0.5rem;
                width: min(100%, 560px);
                margin-right: auto;
                margin-bottom: 1.75rem;
                margin-left: auto;
            }
            .badge-item {
                justify-content: center;
                padding: 0.7rem 0.55rem;
                font-size: 0.78rem;
                line-height: 1.25;
            }
            .hero-actions {
                width: 100%;
            }
            .hero-collage {
                width: min(100%, 570px);
                margin-top: 0.5rem;
            }
            .hero-collage-note {
                font-size: 0.52rem;
            }
            .hero-collage-note-bottom {
                right: 1%;
            }
            .marquee {
                padding: 1.25rem 0;
            }
            .marquee-content {
                gap: 2.5rem;
                padding-right: 2.5rem;
            }
            .marquee-logo {
                height: 52px;
                max-width: 140px;
            }
            .nav-links { 
                display: none; 
                flex-direction: column;
                position: absolute;
                top: 80px;
                left: 0;
                width: 100%;
                background: #335264;
                padding: 2rem 0;
                box-shadow: 0 10px 20px rgba(0,0,0,0.1);
                align-items: center;
                gap: 1.5rem;
                border-top: 1px solid rgba(255, 255, 255, 0.05);
            }
            .nav-links.active {
                display: flex;
            }
            nav.scrolled .nav-links { top: 62px; }
            .mobile-menu-btn { display: block; }
            .servicios-grid { grid-template-columns: 1fr; gap: 3rem; }
            .productos-grid { grid-template-columns: repeat(2, 1fr); }
            .contact-grid { grid-template-columns: 1fr; gap: 4rem; }
            .form-row { grid-template-columns: 1fr; }
            .faq-grid { grid-template-columns: 1fr; }
        }

        @media (max-width: 600px) {
            .hero-headline {
                font-size: clamp(2.25rem, 10vw, 3rem);
                line-height: 0.92;
                overflow-wrap: normal;
            }
            .hero-subheadline {
                width: min(100%, 360px);
                font-size: 0.7rem;
                letter-spacing: 0.14em;
                line-height: 1.55;
            }
            .hero-actions {
                flex-direction: column;
                gap: 0.65rem;
            }
            .hero-actions .btn-primary,
            .hero-actions .btn-secondary {
                justify-content: center;
                width: min(100%, 320px);
                min-width: 0;
                min-height: 52px;
                margin-inline: auto;
                padding: 0.75rem 1rem;
                font-size: 0.76rem;
            }
            .hero-collage {
                width: min(100%, 390px);
                aspect-ratio: 0.92;
                margin-top: 0.25rem;
            }
            .hero-product-shirt {
                left: 50%;
                top: 60%;
                width: 62%;
                height: 62%;
            }
            .hero-product-polo {
                left: 73%;
                top: 36%;
                width: 40%;
                height: 50%;
            }
            .hero-product-sweatshirt {
                left: 28%;
                top: 37%;
                width: 42%;
                height: 50%;
            }
            .hero-product-bag {
                left: 18%;
                top: 75%;
                width: 25%;
                height: 31%;
            }
            .hero-product-tumbler {
                left: 84%;
                top: 73%;
                width: 14%;
                height: 29%;
            }
            .hero-collage-note-top {
                top: 14%;
                left: 9%;
            }
            .hero-collage-note-bottom {
                display: none;
            }
            .hero-orbit-one {
                width: 20%;
                right: 5%;
            }
        }

        @media (max-width: 480px) {
            .hero {
                padding: 105px 0 2rem;
            }
            .hero .container {
                padding: 0 1rem;
            }
            .eyebrow {
                margin-bottom: 1.25rem;
            }
            .hero-headline {
                font-size: clamp(2.2rem, 10.5vw, 2.75rem);
            }
            .hero-subheadline {
                width: min(100%, 330px);
            }
            .hero-collage {
                width: min(100%, 360px);
                aspect-ratio: 0.9;
            }
            .hero-product-polo {
                left: 74%;
                width: 38%;
            }
            .hero-product-sweatshirt {
                left: 27%;
                width: 40%;
            }
            .hero-product-bag {
                left: 17%;
                width: 24%;
            }
            .hero-product-tumbler {
                left: 85%;
                width: 13%;
            }
            .hero-collage-note-top {
                left: 9%;
            }
        }

        @media (max-width: 360px) {
            .hero-badges {
                grid-template-columns: 1fr;
                width: min(100%, 280px);
            }
            .hero-headline {
                font-size: clamp(2rem, 10.5vw, 2.3rem);
            }
            .hero-collage {
                width: min(100%, 320px);
                aspect-ratio: 0.86;
            }
            .hero-product-shirt {
                width: 60%;
                height: 60%;
            }
            .hero-product-sweatshirt {
                left: 26%;
                width: 39%;
                height: 47%;
            }
            .hero-product-polo {
                left: 74%;
                width: 37%;
                height: 47%;
            }
            .hero-product-bag {
                left: 16%;
                width: 23%;
            }
            .hero-product-tumbler {
                left: 86%;
                width: 12%;
                height: 27%;
            }
            .productos-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            html { scroll-behavior: auto; }
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                scroll-behavior: auto !important;
                transition-duration: 0.01ms !important;
            }
            .js .reveal {
                opacity: 1;
                transform: none;
            }
            .producto-card:hover,
            .producto-card:hover img {
                transform: none;
            }
        }
