.page-home h2 {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.page-home .section {
    padding: 100px 0;
}

.page-home .section-header {
    max-width: 760px;

    margin-bottom: 50px;
}

.page-home .section-intro {
    max-width: 690px;

    margin: 21px 0 0;

    line-height: 1.75;
}

.page-home .btn {
    cursor: pointer;
}

.page-home .btn-outline-light {
    border-color: rgba(255,255,255,.27);
}


/* ============================================================
   HERO
   ============================================================ */

.hero {
    min-height: calc(100svh - 90px);

    display: flex;
    flex-direction: column;

    background: var(--mundawa);
    color: white;
}
/* ============================================================
           NAV
           ============================================================ */

        .navbar {
            min-height: 90px;

            display: flex;
            align-items: center;
            justify-content: space-between;

            gap: 30px;

            border-bottom: 1px solid rgba(255,255,255,.13);
        }

        .brand {
            color: white;

            font-family: "Outfit", sans-serif;
            font-size: 2.05rem;
            font-weight: 600;

            line-height: 1;
            text-decoration: none;

            animation: fadeIn .55s ease both;
        }

        .nav {
            display: flex;
            align-items: center;

            gap: 27px;

            animation: fadeIn .55s .08s ease both;
        }

        .nav a {
            color: rgba(255,255,255,.80);

            font-size: .92rem;
            font-weight: 500;

            text-decoration: none;
        }

        .nav a:hover {
            color: white;
        }
/* ============================================================
           HERO CONTENT
           ============================================================ */

        .hero-main {
            flex: 1;

            display: flex;
            align-items: center;

            padding: 65px 0 90px;
        }

        .hero-grid {
            width: 100%;

            display: grid;
            grid-template-columns:
                minmax(0, 1.08fr)
                minmax(390px, .92fr);

            align-items: center;

            gap: 90px;
        }

        .hero-copy {
            max-width: 690px;
        }

        .hero h1 {
            margin-bottom: 30px;

            font-size: clamp(3.45rem, 6.2vw, 5.8rem);
            font-weight: 600;

            line-height: 1.01;
            letter-spacing: -.04em;

            animation: heroUp .65s .08s ease both;
        }

        .hero-lead {
            max-width: 620px;

            margin: 0 0 36px;

            color: rgba(255,255,255,.75);

            font-size: 1.14rem;
            line-height: 1.72;

            animation: heroUp .65s .16s ease both;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;

            gap: 12px;

            animation: heroUp .65s .23s ease both;
        }

        @keyframes fadeIn {

            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }

        }

        @keyframes heroUp {

            from {
                opacity: 0;
                transform: translateY(8px);
            }

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

        }
/* ============================================================
           HERO VISUAL
           ============================================================ */

        .hero-visual {
            position: relative;

            overflow: hidden;

            padding: 36px;

            border: 1px solid rgba(255,255,255,.14);
            border-radius: var(--radius-lg);

            background: rgba(255,255,255,.045);

            box-shadow:
                0 24px 65px rgba(0,0,0,.08),
                0 0 55px rgba(255,255,255,.025);

            animation: visualIn .75s .22s ease both;
        }

        @keyframes visualIn {

            from {
                opacity: 0;
                transform: scale(.988);
            }

            to {
                opacity: 1;
                transform: scale(1);
            }

        }

        .hero-ui {
            display: grid;

            grid-template-columns: 1.25fr .75fr;
            grid-template-areas:
                "main side"
                "bottom bottom";

            gap: 16px;
        }

        .hero-ui-card {
            position: relative;

            border: 1px solid rgba(255,255,255,.11);
            border-radius: 15px;

            background: rgba(255,255,255,.055);

            box-shadow:
                inset 0 1px 0 rgba(255,255,255,.03);
        }

        .hero-ui-main {
            grid-area: main;

            min-height: 175px;

            padding: 22px;
        }

        .hero-ui-side {
            grid-area: side;

            min-height: 175px;

            padding: 20px;
        }

        .hero-ui-bottom {
            grid-area: bottom;

            min-height: 125px;

            padding: 20px;
        }

        .ui-line {
            height: 8px;

            margin-bottom: 11px;

            border-radius: 999px;

            background: rgba(255,255,255,.18);
        }

        .ui-line-strong {
            background: rgba(255,255,255,.40);
        }

        .w-36 { width: 36%; }
        .w-48 { width: 48%; }
        .w-60 { width: 60%; }
        .w-72 { width: 72%; }
        .w-84 { width: 84%; }

        .hero-mini-grid {
            display: grid;

            grid-template-columns: repeat(3, 1fr);

            gap: 8px;

            margin-top: 23px;
        }

        .hero-mini {
            height: 47px;

            border: 1px solid rgba(255,255,255,.08);
            border-radius: 9px;

            background: rgba(255,255,255,.035);
        }

        .hero-chart {
            height: 70px;

            display: flex;
            align-items: flex-end;

            gap: 6px;

            margin-top: 25px;
        }

        .hero-chart span {
            flex: 1;

            border-radius: 4px 4px 1px 1px;

            background: rgba(255,255,255,.12);
        }

        .hero-chart span:nth-child(1) { height: 35%; }
        .hero-chart span:nth-child(2) { height: 62%; }
        .hero-chart span:nth-child(3) { height: 47%; }
        .hero-chart span:nth-child(4) { height: 80%; }
        .hero-chart span:nth-child(5) { height: 65%; }

        .hero-process {
            display: grid;

            grid-template-columns: repeat(3, 1fr);

            gap: 10px;

            margin-top: 18px;
        }

        .hero-process-item {
            position: relative;

            min-height: 54px;

            display: flex;
            align-items: center;

            padding: 12px;

            border: 1px solid rgba(255,255,255,.08);
            border-radius: 9px;

            background: rgba(255,255,255,.03);
        }

        .hero-process-item::after {
            content: "";

            position: absolute;

            top: 50%;
            right: -11px;

            width: 11px;
            height: 1px;

            background: rgba(255,255,255,.16);
        }

        .hero-process-item:last-child::after {
            display: none;
        }

        .hero-process-dot {
            width: 8px;
            height: 8px;

            margin-right: 10px;

            border-radius: 50%;

            background: rgba(255,255,255,.40);

            animation: dotPulse 4.5s ease-in-out infinite;
        }

        .hero-process-item:nth-child(2) .hero-process-dot {
            animation-delay: 1.2s;
        }

        .hero-process-item:nth-child(3) .hero-process-dot {
            animation-delay: 2.4s;
        }

        @keyframes dotPulse {

            0%,
            100% {
                opacity: .4;
            }

            50% {
                opacity: .9;
            }

        }

        .hero-process-line {
            width: 65%;
            height: 7px;

            border-radius: 999px;

            background: rgba(255,255,255,.12);
        }
/* ============================================================
           CLIENTES
           ============================================================ */

        .clients {
            padding: 44px 0;

            border-bottom: 1px solid var(--border);

            background: white;
        }

        .clients-label {
            margin-bottom: 27px;

            color: var(--muted);

            font-size: .72rem;
            font-weight: 650;

            letter-spacing: .095em;
            text-align: center;
            text-transform: uppercase;
        }

        .clients-list {
            display: grid;
            grid-template-columns: repeat(7, minmax(0, 1fr));
            align-items: center;

            gap: 28px 24px;
        }

        .client-link {
            width: 100%;
            min-width: 0;

            display: inline-flex;
            align-items: center;
            justify-content: center;

            text-decoration: none;
        }

        .client-logo {
            max-width: 130px;
            max-height: 48px;

            width: auto;
            height: auto;

            margin-inline: auto;

            filter: grayscale(100%);
            opacity: .52;

            transition:
                opacity .15s ease,
                filter .15s ease;
        }

        .client-logo:hover,
        .client-link:hover .client-logo {
            opacity: .75;

            filter: grayscale(40%);
        }
/* ============================================================
           TECNOLOGÍA / CAPACIDADES
           ============================================================ */

        .systems-grid {
            display: grid;

            grid-template-columns: repeat(3, 1fr);

            gap: 18px;
        }

        .system-card {
            min-height: 220px;

            padding: 28px;

            border: 1px solid rgba(39,52,112,.10);
            border-radius: var(--radius);

            background: white;

            box-shadow:
                0 12px 30px rgba(39,52,112,.035);

            transition:
                transform .2s ease,
                box-shadow .2s ease;
        }

        .system-card:hover {
            transform: translateY(-3px);

            box-shadow:
                0 18px 38px rgba(39,52,112,.07);
        }

        .system-icon {
            width: 45px;
            height: 45px;

            display: flex;
            align-items: center;
            justify-content: center;

            margin-bottom: 18px;

            border: 1px solid rgba(39,52,112,.10);
            border-radius: 12px;

            background: rgba(39,52,112,.055);

            color: var(--mundawa);
        }

        .system-icon svg {
            width: 24px;
            height: 24px;

            fill: none;
            stroke: currentColor;

            stroke-width: 1.55;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .system-card h3 {
            margin-bottom: 10px;

            color: var(--mundawa);

            font-size: 1.23rem;
            font-weight: 600;
        }

        .system-card p {
            margin: 0;

            color: var(--muted);

            font-size: .91rem;
        }
/* ============================================================
           SOLUCIONES DESARROLLADAS
           ============================================================ */

        .solutions-header {
            max-width: 760px;

            margin-bottom: 46px;
        }

        .solutions-header p {
            max-width: 680px;

            margin: 21px 0 0;

            color: var(--muted);

            font-size: 1.05rem;
            line-height: 1.75;
        }
/* ============================================================
           COMERCIO INTEGRADO
           ============================================================ */

        .commerce-feature {
            position: relative;

            overflow: hidden;

            padding: 56px 58px;

            border: 1px solid rgba(39,52,112,.14);
            border-radius: var(--radius-lg);

            background: white;
            color: var(--text);

            box-shadow:
                0 18px 44px rgba(39,52,112,.045);
        }

        .commerce-feature::after {
            content: "";

            position: absolute;

            width: 320px;
            height: 320px;

            right: -150px;
            bottom: -190px;

            border: 1px solid rgba(39,52,112,.055);
            border-radius: 50%;

            pointer-events: none;
        }

        .commerce-feature-inner {
            position: relative;
            z-index: 1;

            max-width: 1000px;
        }

        .commerce-feature-title {
            margin: 0 0 30px;

            color: var(--text);

            font-family: "Outfit", sans-serif;
            font-size: clamp(2rem, 3.5vw, 3rem);
            font-weight: 600;

            line-height: 1.08;
            letter-spacing: -.025em;
        }


        /* ÍCONOS PRINCIPALES */

        .commerce-feature-icons {
            display: grid;

            grid-template-columns: repeat(6, minmax(0, 1fr));

            gap: 12px;

            margin-bottom: 30px;
        }

        .commerce-feature-icon {
            min-width: 0;
            min-height: 104px;

            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;

            gap: 9px;

            padding: 15px 10px;

            border: 1px solid rgba(53,70,168,.12);
            border-radius: 16px;

            background: var(--mundawa-light);
            color: white;

            text-align: center;
        }

        .commerce-feature-icon svg {
            width: 29px;
            height: 29px;

            fill: none;
            stroke: currentColor;

            stroke-width: 1.5;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .commerce-feature-icon span {
            font-size: .72rem;
            font-weight: 600;

            line-height: 1.2;
        }


        /* TEXTO */

        .commerce-feature-subtitle {
            max-width: 760px;

            margin: 0 0 17px;

            color: var(--text);

            font-family: "Outfit", sans-serif;
            font-size: 1.24rem;
            font-weight: 500;

            line-height: 1.45;
        }

        .commerce-feature-text {
            max-width: 820px;

            margin: 0 0 30px;

            color: var(--muted);

            font-size: 1.02rem;
            line-height: 1.8;
        }
/* ============================================================
           CASOS DENTRO DE SOLUCIONES
           ============================================================ */

        .cases-block {
            margin-top: 82px;
            padding-top: 76px;

            border-top: 1px solid var(--border);
        }

        .cases-grid {
            display: grid;

            grid-template-columns: 1fr 1fr;

            gap: 20px;
        }

        .case-card {
            overflow: hidden;

            border: 1px solid rgba(39,52,112,.11);
            border-radius: var(--radius);

            background: white;

            box-shadow:
                0 12px 30px rgba(39,52,112,.035);

            transition:
                transform .2s ease,
                box-shadow .2s ease;
        }

        .case-card:hover {
            transform: translateY(-3px);

            box-shadow:
                0 18px 38px rgba(39,52,112,.07);
        }

        .case-top {
            min-height: 132px;

            display: flex;
            flex-direction: column;
            justify-content: flex-start;

            padding: 26px 28px;

            background: var(--mundawa);
            color: white;
        }

        .case-sector {
            display: block;

            margin-bottom: 10px;

            color: rgba(255,255,255,.58);

            font-size: .7rem;
            font-weight: 700;

            letter-spacing: .09em;
            text-transform: uppercase;
        }

        .case-top h3 {
            margin: 0;

            min-height: 2.68em;

            font-size: 1.14rem;
            font-weight: 500;

            line-height: 1.34;
        }

        .case-body {
            padding: 25px;
        }

        .case-row {
            display: grid;

            grid-template-columns: 88px 1fr;

            gap: 18px;

            padding: 14px 0;

            border-bottom: 1px solid var(--border);
        }

        .case-row:last-child {
            border-bottom: 0;
        }

        .case-row strong {
            color: var(--mundawa);

            font-size: .7rem;

            letter-spacing: .06em;
            text-transform: uppercase;
        }

        .case-row p {
            margin: 0;

            color: var(--muted);

            font-size: .89rem;
        }
/* ============================================================
           ENFOQUE
           ============================================================ */

        .approach {
            position: relative;

            overflow: hidden;

            background: var(--mundawa);
            color: white;
        }

        .approach::before {
            content: "";

            position: absolute;

            width: 220px;
            height: 220px;

            right: 70px;
            top: 50%;

            transform: translateY(-50%);

            border: 1px solid rgba(255,255,255,.045);
            border-radius: 50%;

            pointer-events: none;
        }

        .approach::after {
            content: "";

            position: absolute;

            width: 520px;
            height: 520px;

            right: -190px;
            top: 50%;

            transform: translateY(-50%);

            border: 1px solid rgba(255,255,255,.065);
            border-radius: 50%;

            pointer-events: none;
        }

        .approach-inner {
            position: relative;
            z-index: 1;

            max-width: 900px;
        }

        .approach h2 {
            max-width: 670px;

            margin-bottom: 38px;

            color: white;
        }

        .manifesto-text {
            max-width: 820px;

            color: rgba(255,255,255,.76);

            font-size: 1.11rem;
            line-height: 1.9;
        }

        .manifesto-text p {
            margin: 0 0 22px;
        }

        .manifesto-text p:last-child {
            margin-bottom: 0;
        }

        .manifesto-closing {
            margin-top: 46px;

            color: white;

            font-family: "Outfit", sans-serif;
            font-size: clamp(1.65rem, 3vw, 2.45rem);
            font-weight: 500;

            line-height: 1.32;
        }
/* ============================================================
        BLOG
        ============================================================ */

        .blog-layout {
            display: grid;

            grid-template-columns: .8fr 1.2fr;

            gap: 80px;
        }

        .blog-intro {
            max-width: 460px;
        }

        .blog-intro h2 {
            margin-bottom: 20px;
        }

        .blog-intro p {
            margin: 0;

            color: var(--muted);

            line-height: 1.75;
        }

        .blog-list {
            border-top: 1px solid var(--border);
        }

        .blog-item {
            display: grid;

            grid-template-columns: 1fr auto;

            align-items: center;

            gap: 30px;

            padding: 24px 0;

            border-bottom: 1px solid var(--border);

            text-decoration: none;
        }

        .blog-category {
            display: block;

            margin-bottom: 5px;

            color: var(--muted);

            font-size: .7rem;
            font-weight: 650;

            letter-spacing: .06em;
            text-transform: uppercase;
        }

        .blog-title {
            color: var(--mundawa);

            font-family: "Outfit", sans-serif;
            font-size: 1.08rem;
            font-weight: 600;

            line-height: 1.4;

            transition: color .15s ease;
        }

        .blog-arrow {
            color: var(--muted);

            font-size: 1.1rem;

            transition:
                color .15s ease,
                transform .15s ease;
        }

        .blog-item:hover .blog-title {
            color: var(--mundawa-light);
        }

        .blog-item:hover .blog-arrow {
            color: var(--mundawa);

            transform: translateX(3px);
        }

        .blog-more {
            margin-top: 24px;
        }
/* ============================================================
        WEBS
        ============================================================ */

        .webs-section {
            padding: 55px 0;

            background: var(--mundawa-pale);
        }

        .webs-row {
            display: flex;
            align-items: center;
            justify-content: space-between;

            gap: 60px;
        }

        .webs-copy {
            max-width: 760px;
        }

        .webs-copy h2 {
            margin-bottom: 10px;

            font-size: 1.65rem;
        }

        .webs-copy p {
            margin: 0;

            color: var(--muted);

            font-size: .95rem;
            line-height: 1.7;
        }

        .webs-link {
            flex: 0 0 auto;

            display: inline-flex;
            align-items: center;

            color: var(--mundawa);

            font-size: .9rem;
            font-weight: 650;

            text-decoration: none;

            transition:
                color .15s ease,
                transform .15s ease;
        }

        .webs-link:hover {
            color: var(--mundawa-light);

            transform: translateX(3px);
        }
/* ============================================================
        CONTACTO
        ============================================================ */

        .contact-grid {
            display: grid;

            grid-template-columns: .8fr 1.2fr;

            gap: 80px;
        }

        .contact-intro h2 {
            margin-bottom: 22px;
        }

        .contact-intro > p {
            max-width: 480px;

            margin: 0;

            color: var(--muted);

            font-size: 1.04rem;
            line-height: 1.75;
        }


        /* Contacto directo */

        .direct-contact {
            display: flex;
            flex-direction: column;

            gap: 12px;

            margin-top: 30px;
        }

        .contact-link {
            width: fit-content;

            display: inline-flex;
            align-items: center;

            gap: 11px;

            color: var(--mundawa);

            font-size: .91rem;
            font-weight: 600;

            text-decoration: none;
        }

        .contact-link:hover {
            text-decoration: none;
        }

        .contact-link-icon {
            width: 37px;
            height: 37px;

            display: flex;
            align-items: center;
            justify-content: center;

            border: 1px solid var(--border);
            border-radius: 10px;

            background: white;
            color: var(--mundawa);

            transition:
                border-color .15s ease,
                background-color .15s ease;
        }

        .contact-link:hover .contact-link-icon {
            border-color: rgba(39,52,112,.24);
            background: rgba(39,52,112,.045);
        }

        .contact-link-icon svg {
            width: 18px;
            height: 18px;
        }


        /* Íconos lineales */

        .contact-link-icon .icon-stroke {
            fill: none;
            stroke: currentColor;

            stroke-width: 1.7;
            stroke-linecap: round;
            stroke-linejoin: round;
        }


        /* Íconos sólidos, por ejemplo WhatsApp */

        .contact-link-icon .icon-fill {
            fill: currentColor;
        }


        /* Formulario */

        .contact-box {
            padding: 0;

            border: 0;
            border-radius: 0;

            background: transparent;
        }

        .contact-fields {
            display: grid;

            grid-template-columns: 1fr 1fr;

            gap: 16px;
        }

        .field {
            display: flex;
            flex-direction: column;

            gap: 7px;
        }

        .field-full {
            grid-column: 1 / -1;
        }

        .field label {
            color: var(--muted);

            font-size: .76rem;
        }

        .field input,
        .field textarea {
            width: 100%;

            padding: 14px 15px;

            border: 1px solid rgba(39,52,112,.08);
            border-radius: 10px;

            outline: none;

            background: var(--surface);
            color: var(--text);

            transition:
                border-color .15s ease,
                background-color .15s ease;
        }

        .field input {
            min-height: 52px;
        }

        .field textarea {
            min-height: 130px;

            resize: vertical;
        }

        .field input:focus,
        .field textarea:focus {
            border-color: rgba(39,52,112,.35);

            background: white;
        }

        .contact-submit {
            margin-top: 18px;
        }

        .contact-submit .btn:disabled {
            opacity: .72;

            cursor: wait;
        }

        .contact-status {
            min-height: 1.45em;

            margin-top: 12px;

            color: var(--muted);

            font-size: .88rem;
            line-height: 1.55;
        }

        .contact-status.is-success {
            color: var(--green);
        }

        .contact-status.is-error {
            color: #9B3D3D;
        }

        .contact-honeypot {
            position: absolute;

            width: 1px;
            height: 1px;

            overflow: hidden;

            clip: rect(0 0 0 0);
            clip-path: inset(50%);

            white-space: nowrap;
        }
/* ============================================================
           TABLET
           ============================================================ */

        @media (max-width: 940px) {

            .nav {
                display: none;
            }

            .hero {
                min-height: auto;
            }

            .hero-main {
                padding: 75px 0;
            }

            .hero-grid,
            .blog-layout,
            .contact-grid {
                grid-template-columns: 1fr;
            }

            .hero-grid,
            .blog-layout,
            .contact-grid {
                gap: 50px;
            }

            .hero-visual {
                max-width: 680px;
            }

            .clients-list {
                display: flex;
                align-items: center;
                justify-content: center;
                flex-wrap: wrap;

                gap: 32px;
            }

            .client-link {
                width: auto;
            }

            .client-logo {
                max-width: 135px;
            }

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

            .commerce-feature-icons {
                grid-template-columns: repeat(3, 1fr);
            }

            .webs-row {
                align-items: flex-start;
                flex-direction: column;

                gap: 20px;
            }

        }
/* ============================================================
           MOBILE
           ============================================================ */

        @media (max-width: 680px) {

            .site-container {
                width: min(
                    var(--content-width),
                    calc(100% - 30px)
                );
            }

            .section {
                padding: 75px 0;
            }

            .navbar {
                min-height: 78px;
            }

            .brand {
                font-size: 1.8rem;
            }

            .hero h1 {
                font-size: 3.05rem;
            }

            .hero-main {
                padding: 58px 0 70px;
            }


            /* Hero mobile compacto */

            .hero-visual {
                padding: 18px;

                border-radius: 22px;
            }

            .hero-ui {
                grid-template-columns: 1.25fr .75fr;
                grid-template-areas:
                    "main side";

                gap: 10px;
            }

            .hero-ui-bottom {
                display: none;
            }

            .hero-ui-main,
            .hero-ui-side {
                min-height: 125px;

                padding: 14px;
            }

            .ui-line {
                height: 6px;

                margin-bottom: 8px;
            }

            .hero-mini-grid {
                gap: 6px;

                margin-top: 16px;
            }

            .hero-mini {
                height: 32px;

                border-radius: 7px;
            }

            .hero-chart {
                height: 48px;

                gap: 4px;

                margin-top: 16px;
            }


            /* Capacidades */

            .systems-grid,
            .cases-grid,
            .contact-fields {
                grid-template-columns: 1fr;
            }


            /* Soluciones */

            .solutions-header {
                margin-bottom: 34px;
            }


            /* Comercio integrado */

            .commerce-feature {
                padding: 34px 26px;
            }

            .commerce-feature-title {
                margin-bottom: 24px;
            }

            .commerce-feature-icons {
                grid-template-columns: repeat(2, 1fr);

                gap: 10px;

                margin-bottom: 26px;
            }

            .commerce-feature-icon {
                min-height: 92px;

                padding: 13px 10px;
            }

            .commerce-feature-icon svg {
                width: 27px;
                height: 27px;
            }

            .commerce-feature-icon span {
                font-size: .71rem;
            }

            .commerce-feature-subtitle {
                font-size: 1.15rem;
            }


            /* Casos */

            .cases-block {
                margin-top: 60px;
                padding-top: 58px;
            }

            .case-row {
                grid-template-columns: 1fr;

                gap: 5px;
            }


            /* Blog */

            .blog-item {
                gap: 15px;
            }


            /* Webs */

            .webs-section {
                padding: 45px 0;
            }


            /* Footer */

            .footer-inner {
                align-items: flex-start;
                flex-direction: column;
            }

        }
