:root {
    --color-primary: #062b59;
    --color-secondary: #dc1724;
    --color-green-people: #3e8000;
    --color-wine: #80003e;
    --bg: #f3f6fa;
    --surface: #ffffff;
    --surface-strong: #ffffff;
    --surface-soft: #e9eef5;
    --ink: #071f3d;
    --muted: #53667b;
    --line: rgba(6, 43, 89, 0.14);
    --brand: var(--color-primary);
    --brand-strong: #031c3b;
    --brand-soft: #dbe5f0;
    --shadow: 0 12px 36px rgba(3, 28, 59, 0.09);
    --radius: 10px;
    --container: 1280px;
    --container-read: 820px;
    --gutter: clamp(1rem, 2vw, 1.5rem);
    --field-bg: #f8f9fb;
    --field-border: #d7dde4;
    --font-heading: "Space Grotesk", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    color: var(--ink);
    background: #fff;
    overflow-x: clip;
}

.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;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
}

a {
    color: inherit;
    text-decoration: none;
}

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

.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: var(--gutter);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    padding: 0.55rem 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 63, 130, 0.08);
}

.nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(1rem, 1.8vw, 1.75rem);
    max-width: var(--container);
}

.brand {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    flex-shrink: 0;
    gap: 0.75rem;
    margin-left: 0;
}

.brand img {
    width: 118px;
    height: 96px;
    object-fit: contain;
    object-position: left center;
}

.brand-wordmark {
    display: grid;
    gap: 0.05rem;
    line-height: 1.1;
}

.brand-wordmark strong {
    color: var(--brand-strong);
    font-size: 0.98rem;
    letter-spacing: 0.04em;
}

.brand-wordmark small {
    color: var(--muted);
    font-size: 0.7rem;
    font-weight: 700;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(0.85rem, 1.35vw, 1.5rem);
    margin-left: auto;
}

.site-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 3.25rem;
    position: relative;
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--muted);
}

.header-search {
    position: relative;
    display: flex;
    align-items: center;
    width: clamp(280px, 27vw, 440px);
    min-height: 3.15rem;
    margin-left: 0.35rem;
    padding: 0 5.4rem 0 2.8rem;
    border: 1px solid #ccd6e4;
    border-radius: 12px;
    background: #f9fbfd;
    transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.header-search:focus-within {
    border-color: rgba(6, 43, 89, 0.48);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(6, 43, 89, 0.08);
}

.header-search > i {
    position: absolute;
    left: 1rem;
    color: var(--brand);
    font-size: 1rem;
}

.header-search input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--ink);
    font: inherit;
    font-size: 0.9rem;
}

.header-search input::placeholder {
    color: #7a8799;
}

.header-search kbd {
    position: absolute;
    right: 2.85rem;
    padding: 0.18rem 0.38rem;
    border: 1px solid #dbe2ec;
    border-radius: 5px;
    color: #8b97a8;
    background: #fff;
    font: 500 0.68rem/1.2 "Manrope", sans-serif;
    white-space: nowrap;
}

.header-search button {
    position: absolute;
    right: 0.5rem;
    display: grid;
    width: 2rem;
    height: 2rem;
    place-items: center;
    border: 0;
    border-radius: 7px;
    background: transparent;
    color: var(--brand);
    cursor: pointer;
}

.header-search button:hover,
.header-search button:focus-visible {
    background: var(--brand-soft);
}

.header-cart-wrap {
    position: relative;
    flex: 0 0 auto;
}

.header-cart {
    position: relative;
    display: grid;
    width: 3rem;
    height: 3rem;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: var(--brand);
    cursor: pointer;
    font-size: 1.15rem;
    transition: background 160ms ease, transform 160ms ease;
}

.header-cart:hover,
.header-cart:focus-visible,
.header-cart[aria-expanded="true"] {
    background: var(--brand-soft);
    transform: translateY(-1px);
}

.header-cart-count {
    position: absolute;
    top: 0.15rem;
    right: 0.05rem;
    display: grid;
    min-width: 1.18rem;
    height: 1.18rem;
    padding: 0 0.25rem;
    place-items: center;
    border: 2px solid #fff;
    border-radius: 999px;
    background: var(--color-secondary);
    color: #fff;
    font-size: 0.64rem;
    font-weight: 800;
}

.header-cart-popover {
    position: absolute;
    z-index: 40;
    top: calc(100% + 0.75rem);
    right: 0;
    width: min(19rem, calc(100vw - 2rem));
    padding: 1.15rem;
    border: 1px solid rgba(6, 43, 89, 0.12);
    border-radius: 12px;
    background: #fff;
    color: var(--ink);
    box-shadow: 0 20px 45px rgba(3, 28, 59, 0.18);
}

.header-cart-popover strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1rem;
}

.header-cart-popover p {
    margin: 0.45rem 0 1rem;
    color: var(--muted);
    font-size: 0.86rem;
    line-height: 1.55;
}

.header-cart-popover .button {
    min-height: 2.7rem;
    font-size: 0.86rem;
}

.site-nav a[aria-current="page"] {
    color: var(--brand-strong);
}

.site-nav a[aria-current="page"]::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0.6rem;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: var(--color-secondary);
}

.site-nav .nav-cta[aria-current="page"]::after {
    display: none;
}

.nav-cta,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.92rem 1.45rem;
    border: 0;
    border-radius: 6px;
    cursor: pointer;
    font: inherit;
    font-weight: 800;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
}

.nav-cta,
.button-primary {
    background: var(--brand);
    color: #fff;
    box-shadow: 0 12px 24px rgba(15, 76, 151, 0.18);
}

.nav-cta {
    min-width: 126px;
    min-height: 2.8rem;
    color: #fff !important;
}

.button-secondary {
    background: #fff;
    color: var(--brand-strong);
    border: 1px solid rgba(15, 76, 151, 0.18);
}

.button-whatsapp {
    gap: 0.6rem;
    background: #25d366;
    color: #fff;
    box-shadow: 0 12px 24px rgba(37, 211, 102, 0.24);
}

.button-whatsapp i {
    font-size: 1rem;
    line-height: 1;
}

.button:hover,
.nav-cta:hover,
.text-link:hover {
    transform: translateY(-1px);
}

.nav-cta:hover,
.nav-cta:focus-visible,
.button-primary:hover,
.button-primary:focus-visible,
.mobile-contact-cta:hover,
.mobile-contact-cta:focus-visible,
.menu-toggle:hover,
.menu-toggle:focus-visible {
    background: #0b3b73;
    color: #fff;
    box-shadow: 0 8px 22px rgba(6, 43, 89, 0.24);
}

.button-secondary:hover,
.button-secondary:focus-visible {
    background: #f3f6fa;
    color: var(--brand-strong);
    border-color: rgba(6, 43, 89, 0.3);
}

.button-whatsapp:hover,
.button-whatsapp:focus-visible {
    background: #1fb456;
    color: #fff;
}

.menu-toggle,
.mobile-contact-cta {
    display: none;
}

.menu-toggle-icon {
    position: relative;
    width: 20px;
    height: 14px;
    display: block;
    border-top: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
}

.menu-toggle-icon span {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transform: translateY(-50%);
}

.hero,
.inner-hero,
.section {
    padding: 4rem 0;
}

.inner-hero {
    padding-bottom: 2rem;
}

.inner-hero + .section {
    padding-top: 1.5rem;
}

.hero-home {
    padding: 0;
}

.hero-shell,
.inner-hero-shell,
.split-panel,
.contact-grid,
.two-column-grid,
.footer-shell {
    display: grid;
    gap: 1.5rem;
}

.hero-shell,
.inner-hero-shell {
    grid-template-columns: 1fr;
    align-items: center;
    justify-items: center;
    padding: clamp(1rem, 3vw, 1.6rem) 0;
}

.hero-visual {
    position: relative;
    min-height: 68vh;
    overflow: hidden;
}

.hero-visual img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(72deg, rgba(3, 20, 42, 0.96) 0%, rgba(4, 38, 79, 0.84) 34%, rgba(6, 43, 89, 0.28) 58%, rgba(6, 43, 89, 0) 76%);
}

.hero-content {
    position: relative;
    min-height: 68vh;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: center;
    gap: 1.5rem;
    padding-top: 2.75rem;
    padding-bottom: 4.5rem;
}

.hero-copy-home {
    max-width: 42rem;
    color: #fff;
    align-self: center;
}

.hero-copy-home .eyebrow,
.hero-copy-home h1,
.hero-copy-home .lead {
    color: #fff;
}

.hero-copy-home .eyebrow {
    color: rgba(255, 255, 255, 0.8);
}

.hero-copy-home h1 {
    max-width: 10ch;
}

.hero-copy-home .lead {
    max-width: 37ch;
    color: rgba(255, 255, 255, 0.88);
}

.eyebrow,
.section-label {
    margin: 0 0 0.75rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #b80f1a;
    font-weight: 800;
}

.hero-copy h1,
.inner-hero h1,
.section h2,
.category-card h3,
.product-card h3,
.benefit-card h3,
.info-card h2 {
    margin: 0;
    line-height: 1.04;
    letter-spacing: -0.03em;
}

.hero-copy h1,
.inner-hero h1 {
    font-size: clamp(1.65rem, 3.2vw, 2.6rem);
    max-width: none;
}

.lead,
.section-heading p,
.category-card p,
.info-card p,
.hero-note li,
.footer-shell p,
.contact-form span {
    color: var(--muted);
    line-height: 1.7;
}

.hero-actions,
.centered-actions,
.form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-actions {
    margin-top: 1.8rem;
}

.hero-actions .button-primary {
    background: #003f82;
    color: #fff;
    border: 1px solid rgba(127, 196, 255, 0.45);
    box-shadow: 0 12px 24px rgba(0, 63, 130, 0.22);
}

.hero-actions .button-secondary {
    background: #ffffff;
    color: var(--brand-strong);
    border: 1px solid #7fc4ff;
    box-shadow: 0 12px 24px rgba(0, 63, 130, 0.1);
}

.hero-actions .button-whatsapp {
    background: #25d366;
    color: #fff;
    border: 1px solid rgba(37, 211, 102, 0.38);
    box-shadow: 0 12px 24px rgba(37, 211, 102, 0.2);
}

.hero-panel,
.hero-note,
.info-card,
.contact-form,
.error-card {
    padding: 1.6rem;
    border-radius: 20px;
    background: var(--surface);
    border: 1px solid #e6ebf2;
    box-shadow: 0 12px 40px rgba(3, 28, 59, 0.06);
}

.hero-panel {
    display: grid;
    gap: 1rem;
    align-content: center;
    background:
        linear-gradient(180deg, rgba(31, 95, 91, 0.92), rgba(18, 63, 60, 0.96)),
        linear-gradient(135deg, rgba(209, 123, 73, 0.25), rgba(255, 255, 255, 0));
    color: #fff;
}

.inner-hero-shell > div:first-child {
    max-width: 44rem;
}

.hero-stat {
    padding: 1.1rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.08);
}

.hero-stat strong {
    display: block;
    font-size: 2rem;
    margin-bottom: 0.25rem;
}

.section-soft {
    background: #fff;
}

.highlight-strip {
    position: relative;
    z-index: 2;
    margin-top: -1.25rem;
    padding-bottom: 1.4rem;
}

.highlight-strip-shell {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.1rem;
}

.highlight-item {
    position: relative;
    padding: 1.25rem 1.15rem 1.2rem;
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(246, 250, 255, 0.98) 100%);
    border: 1px solid rgba(13, 44, 84, 0.06);
    box-shadow: var(--shadow);
    text-align: left;
    overflow: hidden;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.highlight-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 146, 255, 0.1) 0%, rgba(0, 146, 255, 0.04) 22%, rgba(255, 255, 255, 0) 42%);
    pointer-events: none;
}

.highlight-item h2 {
    margin: 0;
    font-size: 1rem;
    line-height: 1.3;
    font-weight: 700;
    max-width: 15ch;
}

.highlight-icon {
    width: 3rem;
    height: 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--color-secondary);
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(0, 146, 255, 0.1) 0%, rgba(0, 63, 130, 0.06) 100%);
    box-shadow: inset 0 0 0 1px rgba(220, 23, 36, 0.07);
}

.highlight-icon svg,
.highlight-icon i {
    width: 2rem;
    height: 2rem;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.highlight-item:hover,
.highlight-item:focus-within {
    transform: translateY(-4px);
    border-color: rgba(0, 146, 255, 0.14);
    box-shadow: 0 20px 32px rgba(0, 63, 130, 0.14);
}

.highlight-item:hover .highlight-icon,
.highlight-item:focus-within .highlight-icon {
    background: linear-gradient(180deg, rgba(0, 146, 255, 0.16) 0%, rgba(0, 63, 130, 0.1) 100%);
}

.section-heading {
    max-width: 48rem;
    margin-bottom: 2.25rem;
    text-align: center;
    margin-inline: auto;
}

.section-heading-left {
    max-width: none;
    text-align: left;
    margin-inline: 0;
}

.section-heading h1 {
    margin: 0;
    line-height: 1.04;
    letter-spacing: -0.03em;
    font-size: clamp(1.8rem, 3vw, 2.65rem);
}

.product-heading {
    margin-bottom: 1rem;
}

.product-hero-section {
    padding-bottom: 1.1rem;
}

.product-detail-section {
    padding-top: 0;
}

.catalog-section {
    padding-top: 0;
}

.catalog-page {
    padding: 2rem 0 4.5rem;
}

.catalog-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    color: #7b899b;
    font-size: 0.82rem;
    font-weight: 600;
}

.catalog-breadcrumbs a {
    color: var(--brand);
}

.catalog-heading {
    margin: 0.65rem 0 1.15rem;
}

.catalog-heading h1 {
    max-width: 22ch;
    margin: 0;
    font-size: clamp(1.9rem, 3vw, 2.65rem);
    line-height: 1.06;
    letter-spacing: -0.04em;
}

.inner-hero-shell > div:first-child,
.split-panel > div:first-child {
    text-align: center;
}

.section-heading::after,
.inner-hero-shell > div:first-child::after,
.split-panel > div:first-child::after {
    content: "";
    display: block;
    width: 44px;
    height: 1px;
    margin: 0.85rem auto 0;
    border-radius: 999px;
    background: rgba(0, 146, 255, 0.55);
}

.section-heading-left::after {
    margin-left: 0;
    margin-right: 0;
}

.section h2,
.info-card h2 {
    font-size: clamp(1.6rem, 2.25vw, 2.15rem);
    line-height: 1.1;
}

.section-heading h2 span,
.featured-heading h2 span {
    color: var(--color-secondary);
}

.featured-heading > p:last-child {
    max-width: 36rem;
    margin: 0.8rem 0 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.6;
}

.category-grid,
.product-grid,
.benefit-list,
.two-column-grid {
    display: grid;
    gap: 1.2rem;
}

.service-banner-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.service-banner-card {
    position: relative;
    overflow: hidden;
    min-height: 320px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.service-banner-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-banner-copy {
    position: absolute;
    inset: auto 0 0 0;
    padding: 1.5rem;
    background: linear-gradient(180deg, rgba(3, 28, 59, 0) 0%, rgba(3, 28, 59, 0.94) 100%);
    color: #fff;
}

.service-banner-copy h3 {
    margin: 0 0 0.55rem;
    font-size: 1.45rem;
    line-height: 1.1;
}

.service-banner-copy p {
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.6;
}

.category-grid,
.product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.category-card,
.product-card,
.benefit-card {
    padding: 1.15rem;
    border-radius: 14px;
    border: 1px solid rgba(13, 44, 84, 0.1);
    background: #f5f7fa;
    box-shadow: 0 2px 10px rgba(3, 28, 59, 0.05);
}

.category-card h3,
.product-card h3,
.benefit-card h3 {
    font-size: 1rem;
    margin-bottom: 0;
}

.product-card {
    position: relative;
    overflow: hidden;
    padding: 0;
}

.product-media {
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--surface-soft);
    border-radius: 14px 14px 0 0;
}

.product-media > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(.22,1,.36,1);
}

.product-card:hover .product-media > img {
    transform: scale(1.05);
}

.product-body {
    padding: 1rem 1rem 1.15rem;
}

.product-category {
    margin: 0 0 0.45rem;
    font-size: 0.82rem;
    color: var(--color-secondary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.09em;
}

.product-sku {
    margin: 0 0 0.45rem;
    font-size: 0.76rem;
    color: var(--muted);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-link {
    color: inherit;
}

.product-link:hover,
.product-link:focus-visible {
    color: var(--brand);
}

/* Tarjetas del catálogo: fotografía dominante, ficha compacta y acción fija. */
.catalog-product-card {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    border: 1px solid rgba(6, 43, 89, 0.09);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(3, 28, 59, 0.055);
}

.catalog-product-card .product-media {
    position: relative;
    aspect-ratio: 1 / 0.94;
    padding: 0;
    border-radius: 14px 14px 0 0;
    background: #fff;
}

.catalog-product-card .product-media > img {
    object-fit: cover;
}

.product-brand-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    display: grid;
    width: 68px;
    height: 34px;
    box-sizing: border-box;
    place-items: center;
    padding: 6px 8px;
    overflow: hidden;
    border: 1px solid rgba(6, 43, 89, 0.08);
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 5px 14px rgba(3, 28, 59, 0.1);
    isolation: isolate;
    contain: paint;
    z-index: 3;
    line-height: 0;
}

.product-brand-badge img {
    display: block;
    width: auto !important;
    height: auto !important;
    max-width: 50px;
    max-height: 20px;
    object-fit: contain;
    object-position: center;
    transform: none !important;
}

.product-brand-badge img[src$="/hp.svg"] {
    width: 20px !important;
    height: 20px !important;
}

.product-brand-badge > span {
    display: block;
    max-width: 100%;
    overflow: hidden;
    color: #062b59;
    font-size: 0.58rem;
    font-weight: 800;
    line-height: 1.05;
    text-align: center;
    text-overflow: ellipsis;
}

.catalog-product-card .product-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: stretch;
    padding: 0.95rem 0.9rem 0.85rem;
    background: #f5f6f8;
}

.catalog-product-card .product-sku {
    margin-bottom: 0.4rem;
    color: #53667b;
    font-size: 0.69rem;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: uppercase;
}

.catalog-product-card h3 {
    min-height: 2.55em;
    color: var(--brand-strong);
    font-size: 0.94rem;
    line-height: 1.28;
    letter-spacing: -0.015em;
}

.catalog-product-card .product-category {
    margin: 0.45rem 0 0;
    color: #8995a5;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
}

.catalog-product-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    min-height: 2.55rem;
    margin-top: 1rem;
    padding: 0.6rem 0.8rem;
    border: 1px solid var(--brand);
    border-radius: 8px;
    background: #fff;
    color: var(--brand);
    font-size: 0.76rem;
    font-weight: 800;
    transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.catalog-product-action strong {
    font-size: 1rem;
    line-height: 1;
}

.catalog-product-action:hover,
.catalog-product-action:focus-visible {
    color: #fff;
    background: var(--brand);
    transform: translateY(-1px);
}

/* Destacados: contenido integrado en la imagen y revelado suave al interactuar. */
.featured-product-grid {
    gap: 22px;
}

.featured-product-card {
    position: relative;
    aspect-ratio: 3 / 4;
    min-height: 0;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 18px;
    background: var(--brand-strong);
    box-shadow: none;
    isolation: isolate;
}

.featured-product-card::before {
    position: absolute;
    inset: 0;
    z-index: 4;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: inherit;
    pointer-events: none;
    content: "";
    transition: border-color 0.35s ease;
}

.featured-product-image,
.featured-product-veil {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.featured-product-image {
    z-index: 1;
    object-fit: cover;
    transform: scale(1.01);
    transition: transform 0.75s cubic-bezier(.22,.61,.36,1), filter 0.55s ease;
}

.featured-product-veil {
    z-index: 2;
    background: linear-gradient(180deg, rgba(4, 18, 38, 0.02) 20%, rgba(4, 18, 38, 0.18) 49%, rgba(3, 17, 35, 0.94) 100%);
    transition: background 0.55s ease, backdrop-filter 0.55s ease;
}

.featured-product-body {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 5;
    padding: 22px;
    color: #fff;
}

.featured-product-card .product-category {
    margin-bottom: 8px;
    color: #ff7580;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
}

.featured-product-card h3 {
    max-width: 18ch;
    color: #fff;
    font-size: clamp(1.05rem, 1.35vw, 1.22rem);
    line-height: 1.16;
    letter-spacing: -0.015em;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.42);
}

.featured-product-detail {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    transform: translateY(8px);
    transition: grid-template-rows 0.52s cubic-bezier(.22,.61,.36,1), opacity 0.38s ease, transform 0.52s cubic-bezier(.22,.61,.36,1), margin 0.45s ease;
}

.featured-product-detail > div {
    min-height: 0;
    overflow: hidden;
}

.featured-product-card .product-sku {
    margin: 0 0 7px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.7rem;
}

.featured-product-description {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    line-height: 1.48;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.featured-product-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 12px;
    color: #ff7580;
    font-size: 0.8125rem;
    font-weight: 800;
}

.featured-product-link span {
    transition: transform 0.25s ease;
}

.featured-product-link:hover span,
.featured-product-link:focus-visible span {
    transform: translateX(4px);
}

.featured-product-card:hover::before,
.featured-product-card:focus-within::before {
    border-color: rgba(242, 202, 102, 0.72);
}

.featured-product-card:hover .featured-product-image,
.featured-product-card:focus-within .featured-product-image {
    transform: scale(1.065);
    filter: saturate(0.88);
}

.featured-product-card:hover .featured-product-veil,
.featured-product-card:focus-within .featured-product-veil {
    background: linear-gradient(180deg, rgba(3, 17, 35, 0.12) 4%, rgba(3, 17, 35, 0.38) 46%, rgba(2, 13, 28, 0.98) 100%);
    backdrop-filter: blur(1.5px);
}

.featured-product-card:hover .featured-product-detail,
.featured-product-card:focus-within .featured-product-detail {
    grid-template-rows: 1fr;
    margin-top: 10px;
    opacity: 1;
    transform: none;
}

.featured-product-link:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 3px;
}

.catalog-toolbar {
    display: grid;
    gap: 1.25rem;
    margin-top: 1.4rem;
    margin-bottom: 1.5rem;
    padding: 1.35rem;
    border-radius: 10px;
}

.catalog-category-toolbar {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 1.5rem;
    margin: 0 0 1.5rem;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(6, 43, 89, 0.1);
    border-radius: 12px;
    background: #f7f9fc;
}

.catalog-filter-rail {
    display: grid;
    grid-template-columns: 2.6rem minmax(0, 1fr) 2.6rem;
    align-items: center;
    min-width: 0;
    gap: 0.55rem;
}

.catalog-filter-arrow {
    display: grid;
    width: 2.6rem;
    height: 2.6rem;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(6, 43, 89, 0.12);
    border-radius: 50%;
    background: #fff;
    color: var(--brand);
    cursor: pointer;
    transition: color 160ms ease, background 160ms ease, opacity 160ms ease;
}

.catalog-filter-arrow:hover,
.catalog-filter-arrow:focus-visible {
    color: #fff;
    background: var(--brand);
}

.catalog-filter-arrow:disabled {
    opacity: 0.28;
    cursor: default;
}

.catalog-filter-heading {
    display: grid;
    min-width: 7.5rem;
    gap: 0.1rem;
}

.catalog-filter-heading span {
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.catalog-filter-heading strong {
    color: var(--brand-strong);
    font-family: var(--font-heading);
    font-size: 1rem;
}

.catalog-search-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.9rem;
    align-items: center;
}

.catalog-search-input {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0 1rem;
    min-height: 3.45rem;
    border: 1px solid rgba(13, 44, 84, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.92);
}

.catalog-search-input i {
    color: var(--color-secondary);
    font-size: 0.95rem;
}

.catalog-search-input input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--ink);
    font: inherit;
}

.catalog-filters {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.75rem;
    min-width: 0;
    padding: 0.2rem 0.35rem 0.35rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 18px, #000 calc(100% - 18px), transparent);
    mask-image: linear-gradient(90deg, transparent, #000 18px, #000 calc(100% - 18px), transparent);
}

.catalog-filters::-webkit-scrollbar {
    display: none;
}

.filter-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-height: 2.7rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(0, 63, 130, 0.14);
    background: rgba(255, 255, 255, 0.92);
    color: var(--brand-strong);
    font-size: 0.9rem;
    font-weight: 700;
    flex: 0 0 auto;
    scroll-snap-align: start;
    white-space: nowrap;
    transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.filter-chip:hover,
.filter-chip:focus-visible {
    transform: translateY(-1px);
    border-color: var(--color-secondary);
    background: rgba(220, 23, 36, 0.07);
}

.filter-chip.is-active {
    background: var(--brand);
    border-color: var(--brand);
    color: #fff;
    box-shadow: 0 10px 20px rgba(0, 63, 130, 0.16);
}

.filter-chip small {
    display: grid;
    min-width: 1.45rem;
    height: 1.45rem;
    padding: 0 0.3rem;
    place-items: center;
    border-radius: 999px;
    background: rgba(6, 43, 89, 0.08);
    color: var(--muted);
    font-size: 0.7rem;
    line-height: 1;
}

.filter-chip.is-active small {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}

.catalog-results-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
    scroll-margin-top: 7rem;
}

.catalog-results-head p {
    margin: 0;
    color: var(--muted);
    font-weight: 700;
}

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

.catalog-dynamic-region {
    position: relative;
    transition: opacity 180ms ease;
}

.catalog-dynamic-region.is-loading {
    opacity: 0.55;
    pointer-events: none;
}

.catalog-dynamic-region.is-loading::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(220, 23, 36, 0.07) 50%, rgba(255, 255, 255, 0) 100%);
    animation: catalog-loading-shimmer 1s linear infinite;
    pointer-events: none;
}

.catalog-pagination {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    flex-wrap: wrap;
}

.pagination-pages {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.pagination-link {
    min-width: 2.8rem;
    min-height: 2.8rem;
    padding: 0.7rem 0.95rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid rgba(0, 63, 130, 0.14);
    background: rgba(255, 255, 255, 0.94);
    color: var(--brand-strong);
    font-size: 0.92rem;
    font-weight: 700;
    transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.pagination-arrow {
    min-width: auto;
    padding-inline: 1rem;
}

.pagination-link:hover,
.pagination-link:focus-visible {
    transform: translateY(-1px);
    border-color: var(--color-secondary);
    background: rgba(220, 23, 36, 0.07);
}

.pagination-link.is-active {
    background: var(--brand);
    border-color: var(--brand);
    color: #fff;
    box-shadow: 0 10px 20px rgba(0, 63, 130, 0.16);
}

.text-link {
    display: inline-flex;
    margin-top: 1rem;
    color: var(--brand-strong);
    font-weight: 800;
}

.split-panel {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: start;
}

.benefit-list,
.two-column-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.category-section-heading {
    margin-bottom: 1.6rem;
}

.category-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}

.category-showcase-card {
    position: relative;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid rgba(13, 44, 84, 0.08);
    background: #dbe7f5;
    box-shadow: var(--shadow);
}

.category-showcase-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 220ms ease, filter 220ms ease;
}

.category-showcase-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 44, 92, 0.2) 0%, rgba(0, 63, 130, 0.42) 100%);
    transition: background 220ms ease;
}

.category-showcase-card h3 {
    position: relative;
    z-index: 1;
    width: min(84%, 18ch);
    margin: 0;
    color: #fff;
    text-align: center;
    line-height: 1.18;
    font-size: 1.18rem;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.28);
}

.category-showcase-card:hover img,
.category-showcase-card:focus-within img {
    transform: scale(1.05);
    filter: saturate(0.9);
}

.category-showcase-card:hover .category-showcase-overlay,
.category-showcase-card:focus-within .category-showcase-overlay {
    background: linear-gradient(180deg, rgba(0, 63, 130, 0.54) 0%, rgba(0, 63, 130, 0.82) 100%);
}

.hero-note strong {
    display: block;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.hero-note ul {
    margin: 0;
    padding-left: 1.2rem;
}

.contact-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: start;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
    gap: 1.5rem;
    align-items: start;
}

.product-detail-media {
    padding: 1rem;
}

.product-zoom {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: var(--surface-soft);
    cursor: zoom-in;
}

.product-detail-media img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 8px;
    background: var(--surface-soft);
}

.product-zoom img {
    transition: transform 120ms ease;
    transform-origin: center center;
    will-change: transform;
}

.product-zoom.is-active img {
    transform: scale(2.15);
}

.product-zoom-lens {
    position: absolute;
    top: 0;
    left: 0;
    width: 140px;
    height: 140px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2), rgba(220, 23, 36, 0.07));
    box-shadow: 0 10px 24px rgba(0, 63, 130, 0.18);
    opacity: 0;
    pointer-events: none;
    transition: opacity 140ms ease;
}

.product-zoom.is-active .product-zoom-lens {
    opacity: 1;
}

.product-zoom-note {
    margin: 0.85rem 0 0;
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.5;
    text-align: center;
}

.product-detail-copy {
    display: grid;
    gap: 1rem;
}

.product-detail-copy h2 {
    margin: 0;
}

.product-meta-list {
    display: grid;
    gap: 0.6rem;
    color: var(--muted);
    font-size: 0.96rem;
}

.about-grid {
    gap: 1.4rem;
}

.about-card {
    padding: 1.85rem 1.7rem 1.95rem;
}

.about-card .section-label {
    margin-bottom: 1.15rem;
}

.about-card h2 {
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    line-height: 1.14;
    margin-bottom: 1.15rem;
}

.about-card p:last-child {
    margin: 0;
}

.about-story {
    overflow: clip;
    padding-block: clamp(4rem, 7vw, 7rem);
}

.about-editorial {
    display: grid;
    grid-template-areas: "media copy";
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: clamp(3rem, 7vw, 7rem);
}

.about-editorial-copy {
    grid-area: copy;
}

.about-editorial-copy .section-label {
    margin-bottom: 1rem;
}

.about-editorial-copy h2 {
    max-width: 15ch;
    margin: 0;
    color: var(--brand-strong);
    font-size: clamp(2.2rem, 4.1vw, 4rem);
    line-height: 1.04;
    letter-spacing: -0.045em;
    text-wrap: balance;
}

.about-editorial-copy h2 span {
    color: var(--color-secondary);
}

.about-editorial-lead {
    max-width: 42rem;
    margin: 1.5rem 0 0;
    color: var(--muted);
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    line-height: 1.75;
}

.about-principles {
    margin-top: clamp(2rem, 4vw, 3.25rem);
    border-bottom: 1px solid var(--line);
}

.about-principles article {
    display: grid;
    grid-template-columns: 2.5rem minmax(0, 1fr);
    gap: 1.1rem;
    padding: 1.35rem 0;
    border-top: 1px solid var(--line);
}

.about-principles article > span {
    padding-top: 0.15rem;
    color: var(--color-secondary);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.about-principles h3 {
    margin: 0 0 0.45rem;
    color: var(--brand-strong);
    font-size: 1.05rem;
}

.about-principles p {
    max-width: 38rem;
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

.about-editorial-media {
    position: relative;
    grid-area: media;
    margin: 0;
    isolation: isolate;
}

.about-editorial-media::before {
    position: absolute;
    inset: 2rem -1.25rem -1.25rem 2rem;
    z-index: -1;
    content: "";
    border-radius: 28px 28px 100px 28px;
    background: rgba(201, 148, 34, 0.16);
}

.about-editorial-media img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center 42%;
    border-radius: 28px 28px 100px 28px;
    box-shadow: 0 24px 60px rgba(3, 28, 59, 0.15);
}

.about-editorial-media figcaption {
    position: absolute;
    right: 1.5rem;
    bottom: 1.5rem;
    left: 1.5rem;
    padding: 1rem 1.15rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px 14px 52px 14px;
    background: rgba(3, 28, 59, 0.86);
    color: #fff;
    backdrop-filter: blur(10px);
}

.about-editorial-media figcaption strong,
.about-editorial-media figcaption span {
    display: block;
}

.about-editorial-media figcaption strong {
    margin-bottom: 0.3rem;
    font-family: var(--font-heading);
}

.about-editorial-media figcaption span {
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.8rem;
    line-height: 1.45;
}

.contact-story,
.quote-story {
    overflow: clip;
    padding-block: clamp(4rem, 7vw, 7rem);
}

.contact-editorial {
    display: grid;
    grid-template-areas: "copy media";
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    align-items: center;
    gap: clamp(3rem, 7vw, 7rem);
}

.contact-editorial-copy {
    grid-area: copy;
}

.contact-editorial-copy h2,
.quote-editorial-intro h2 {
    margin: 0;
    color: var(--brand-strong);
    font-size: clamp(2.2rem, 4vw, 3.85rem);
    line-height: 1.04;
    letter-spacing: -0.045em;
    text-wrap: balance;
}

.contact-editorial-copy h2 {
    max-width: 15ch;
}

.contact-editorial-copy h2 span,
.quote-editorial-intro h2 span {
    color: var(--color-secondary);
}

.contact-editorial-lead,
.quote-editorial-lead {
    max-width: 42rem;
    margin: 1.5rem 0 0;
    color: var(--muted);
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    line-height: 1.75;
}

.contact-channels {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: clamp(2rem, 4vw, 3.25rem);
    border-bottom: 1px solid var(--line);
}

.contact-channel {
    display: grid;
    grid-template-columns: 2.85rem minmax(0, 1fr);
    align-items: start;
    gap: 0.9rem;
    min-width: 0;
    padding: 1.25rem 1.25rem 1.25rem 0;
    border-top: 1px solid var(--line);
    color: var(--ink);
}

a.contact-channel {
    transition: color 180ms ease;
}

a.contact-channel:hover,
a.contact-channel:focus-visible {
    color: var(--brand);
}

.contact-channel-wide {
    grid-column: 1 / -1;
}

.contact-channel-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.65rem;
    height: 2.65rem;
    border: 1px solid rgba(0, 63, 130, 0.18);
    border-radius: 50%;
    color: var(--brand);
    background: rgba(0, 63, 130, 0.04);
}

.contact-channel small,
.contact-channel strong,
.contact-channel em {
    display: block;
}

.contact-channel small {
    margin-bottom: 0.3rem;
    color: #b80f1a;
    font-size: 0.72rem;
    font-style: normal;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.contact-channel strong {
    overflow-wrap: anywhere;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    line-height: 1.45;
}

.contact-channel em {
    margin-top: 0.2rem;
    color: var(--muted);
    font-size: 0.86rem;
    font-style: normal;
    line-height: 1.5;
}

.contact-editorial-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-top: 2rem;
}

.contact-text-link {
    color: var(--brand-strong);
    font-weight: 800;
}

.contact-text-link span {
    display: inline-block;
    margin-left: 0.3rem;
    color: var(--color-secondary);
    transition: transform 180ms ease;
}

.contact-text-link:hover span,
.contact-text-link:focus-visible span {
    transform: translateX(0.25rem);
}

.contact-editorial-media,
.quote-editorial-media {
    position: relative;
    margin: 0;
    isolation: isolate;
}

.contact-editorial-media {
    grid-area: media;
}

.contact-editorial-media::before,
.quote-editorial-media::before {
    position: absolute;
    z-index: -1;
    content: "";
    background: rgba(201, 148, 34, 0.16);
}

.contact-editorial-media::before {
    inset: 2rem 2rem -1.25rem -1.25rem;
    border-radius: 28px 28px 28px 100px;
}

.contact-editorial-media img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center;
    border-radius: 28px 28px 28px 100px;
    box-shadow: 0 24px 60px rgba(3, 28, 59, 0.15);
}

.contact-editorial-media figcaption,
.quote-editorial-media figcaption {
    position: absolute;
    right: 1.5rem;
    bottom: 1.5rem;
    left: 1.5rem;
    padding: 1rem 1.15rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(3, 28, 59, 0.86);
    color: #fff;
    backdrop-filter: blur(10px);
}

.contact-editorial-media figcaption {
    border-radius: 14px 14px 14px 52px;
}

.contact-editorial-media figcaption strong,
.contact-editorial-media figcaption span,
.quote-editorial-media figcaption strong,
.quote-editorial-media figcaption span {
    display: block;
}

.contact-editorial-media figcaption strong,
.quote-editorial-media figcaption strong {
    margin-bottom: 0.3rem;
    font-family: var(--font-heading);
}

.contact-editorial-media figcaption span,
.quote-editorial-media figcaption span {
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.8rem;
    line-height: 1.45;
}

.quote-editorial {
    display: grid;
    grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
    align-items: start;
    gap: clamp(3rem, 7vw, 7rem);
}

.quote-editorial-intro h2 {
    max-width: 13ch;
}

.quote-editorial-media {
    margin-top: 2.25rem;
}

.quote-editorial-media::before {
    inset: 1.25rem -1rem -1rem 1.25rem;
    border-radius: 24px 24px 76px 24px;
}

.quote-editorial-media img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center 20%;
    border-radius: 24px 24px 76px 24px;
    box-shadow: 0 22px 52px rgba(3, 28, 59, 0.14);
}

.quote-editorial-media figcaption {
    border-radius: 12px 12px 42px 12px;
}

.quote-guidance {
    margin-top: 2.25rem;
    border-bottom: 1px solid var(--line);
}

.quote-guidance > div {
    display: grid;
    grid-template-columns: 2.5rem minmax(0, 1fr);
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid var(--line);
}

.quote-guidance span {
    color: var(--color-secondary);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.quote-guidance p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
}

.quote-editorial-form {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.quote-editorial-form .form-heading {
    padding-bottom: 1.5rem;
    margin-bottom: 0.5rem;
}

.quote-editorial-form .form-heading h2 {
    font-size: clamp(1.7rem, 2.5vw, 2.35rem);
}

.quote-editorial-form .form-field input,
.quote-editorial-form .form-field textarea {
    background: #f5f7fa;
}

.quote-editorial-form .form-field input:focus,
.quote-editorial-form .form-field textarea:focus {
    background: #fff;
}

.info-grid-balanced,
.quote-grid {
    align-items: stretch;
}

.content-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 2rem;
}

.content-card .section-label {
    margin-bottom: 1.15rem;
}

.content-card h2 {
    font-size: clamp(1.2rem, 1.7vw, 1.65rem);
    line-height: 1.14;
    margin-bottom: 1.15rem;
}

.content-card p {
    margin-top: 0;
}

.content-card .hero-actions {
    margin-top: auto;
    padding-top: 1.1rem;
}

.content-card .contact-list {
    margin-top: 0.2rem;
}

.quote-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
    gap: 1.5rem;
    align-items: start;
}

.claim-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
    gap: 1.5rem;
    align-items: start;
}

.claim-side {
    gap: 1rem;
}

.claim-logo {
    width: 190px;
    height: auto;
    margin-bottom: 0.25rem;
}

.claim-company-list {
    display: grid;
    gap: 0.55rem;
    color: var(--muted);
    line-height: 1.6;
}

.claim-note {
    display: grid;
    gap: 0.8rem;
    padding: 1rem 1.05rem;
    border-radius: 10px;
    background: rgba(0, 63, 130, 0.05);
    border: 1px solid rgba(0, 63, 130, 0.08);
}

.claim-note p {
    margin: 0;
}

.claim-form-card {
    padding: 2.125rem;
}

.claim-form {
    gap: 1rem;
}

.claim-toggle-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.claim-choice {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    min-height: 3rem;
    padding: 0.8rem 1rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 63, 130, 0.12);
    background: rgba(255, 255, 255, 0.94);
    color: var(--ink);
    font-weight: 700;
}

.claim-choice input {
    margin: 0;
}

.claim-alert {
    margin-bottom: 1rem;
    padding: 0.95rem 1rem;
    border-radius: 10px;
    font-weight: 700;
}

.claim-alert-success {
    background: rgba(37, 211, 102, 0.12);
    color: #167c3c;
}

.claim-alert-error {
    background: rgba(180, 30, 30, 0.1);
    color: #9f2222;
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem 1.375rem;
}

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

.form-heading {
    grid-column: 1 / -1;
    padding-bottom: 1.25rem;
    margin-bottom: 0.25rem;
    border-bottom: 1px solid #e6ebf2;
}

.form-heading .section-label {
    margin-bottom: 0.65rem;
}

.form-heading h2 {
    margin: 0;
    color: var(--brand-strong);
    font-size: clamp(1.35rem, 1.8vw, 1.75rem);
    line-height: 1.15;
    letter-spacing: -0.025em;
}

.form-heading > p:last-child {
    max-width: 42rem;
    margin: 0.65rem 0 0;
    color: var(--muted);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.quote-form {
    padding: 2.125rem;
}

.quote-side {
    display: grid;
    gap: 1rem;
}

.contact-list {
    margin-top: 0.35rem;
}

.form-field {
    display: grid;
    gap: 0.4rem;
}

.form-field span {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--ink);
}

.form-field input,
.form-field textarea,
.form-field select {
    width: 100%;
    min-height: 50px;
    padding: 0 14px;
    border-radius: 11px;
    border: 1.5px solid var(--field-border);
    background: var(--field-bg);
    font: inherit;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--ink);
    outline: none;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.form-field textarea {
    min-height: 140px;
    padding: 12px 14px;
    line-height: 1.55;
    resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #8f9bab;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
    border-color: #257cf4;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(37, 124, 244, 0.16);
}

.contact-form .button-primary {
    min-height: 52px;
    padding-inline: 34px;
    border-radius: 11px;
    background: linear-gradient(70deg, var(--color-secondary), #f05b65);
    color: var(--brand-strong);
    box-shadow: none;
}

.contact-form .button-primary:hover,
.contact-form .button-primary:focus-visible {
    background: linear-gradient(70deg, #d6a32f, #f0ca69);
    color: var(--brand-strong);
    box-shadow: 0 8px 22px rgba(201, 148, 34, 0.3);
}

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

.error-card {
    text-align: center;
    padding: 3rem;
}

.error-code {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 5rem;
    padding: 0.8rem 1.1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    background: rgba(15, 76, 151, 0.12);
    color: var(--brand);
    font-weight: 800;
}

.centered-actions {
    justify-content: center;
}

.not-found-section {
    display: grid;
    min-height: clamp(560px, 72vh, 760px);
    padding: clamp(3rem, 7vw, 6rem) 0;
    place-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 16% 20%, rgba(201, 148, 34, 0.12), transparent 28rem),
        linear-gradient(145deg, #f8fafc 0%, #eef3f9 100%);
}

.not-found-shell {
    display: grid;
    place-items: center;
}

.not-found-card {
    position: relative;
    width: min(100%, 760px);
    padding: clamp(2.25rem, 6vw, 4.75rem);
    overflow: hidden;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 30px 80px rgba(3, 28, 59, 0.12);
}

.not-found-card::after {
    position: absolute;
    right: -5rem;
    bottom: -7rem;
    width: 16rem;
    height: 16rem;
    border-radius: 50%;
    background: rgba(201, 148, 34, 0.12);
    content: "";
}

.not-found-visual {
    position: relative;
    display: inline-grid;
    margin-bottom: 1.5rem;
    place-items: center;
}

.not-found-visual span {
    color: rgba(3, 63, 130, 0.08);
    font-family: var(--font-heading);
    font-size: clamp(6.5rem, 18vw, 11rem);
    font-weight: 800;
    line-height: 0.75;
    letter-spacing: -0.08em;
}

.not-found-visual i {
    position: absolute;
    display: grid;
    width: 4.25rem;
    height: 4.25rem;
    place-items: center;
    border-radius: 18px;
    background: var(--brand);
    color: #fff;
    font-size: 1.65rem;
    box-shadow: 0 16px 34px rgba(3, 63, 130, 0.22);
    transform: rotate(-5deg);
}

.not-found-card h1 {
    margin-bottom: 0.85rem;
    color: var(--brand-strong);
    font-size: clamp(2rem, 5vw, 3.25rem);
    line-height: 1.05;
}

.not-found-card > p:not(.section-label) {
    max-width: 34rem;
    margin: 0 auto;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.65;
}

.not-found-actions {
    position: relative;
    z-index: 1;
    margin-top: 1.75rem;
}

.site-footer {
    background: #ffffff;
    color: var(--brand-strong);
}

.footer-topbar,
.footer-bottombar {
    background: #dc1724;
    color: #fff;
}

.footer-topbar p,
.footer-bottombar p {
    margin: 0;
    padding: 0.95rem 0;
    text-align: center;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 400;
}

.footer-main {
    padding: 3rem var(--gutter);
}

.footer-shell {
    grid-template-columns: minmax(240px, 0.9fr) minmax(260px, 1fr) minmax(300px, 1.02fr);
    align-items: start;
    gap: 2.6rem;
}

.footer-company p,
.footer-column,
.footer-item,
.footer-book,
.footer-social-links {
    color: var(--brand-strong);
}

.footer-company {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    min-height: 100%;
    padding-top: 0.2rem;
}

.footer-logo-color {
    width: 180px;
    max-height: 190px;
    object-fit: contain;
    height: auto;
    margin-bottom: 0.95rem;
}

.brand-band {
    padding: clamp(3.25rem, 5vw, 4.75rem) 0 clamp(4rem, 6vw, 5.75rem);
    background: #fff;
    color: var(--brand-strong);
    border-top: 0;
}

.brand-band-inner {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: var(--gutter);
}

.brand-band-heading {
    margin-bottom: clamp(1.8rem, 3vw, 2.65rem);
}

.brand-band-heading .section-label {
    margin-bottom: 0.55rem;
}

.brand-band-heading h2 {
    max-width: 18ch;
    margin: 0;
    color: var(--brand-strong);
    font-size: clamp(1.75rem, 2.7vw, 2.45rem);
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.brand-band-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.brand-band p {
    margin: 0;
    color: #e7c36a;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.brand-name-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 1rem 2rem;
    font-weight: 700;
    color: var(--brand-strong);
}

.footer-column {
    display: grid;
    gap: 1rem;
}

.footer-company-copy {
    max-width: 18rem;
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.7;
}

.footer-column h3 {
    margin: 0;
    font-size: 0.96rem;
    font-weight: 700;
    color: var(--brand-strong);
}

.footer-heading-main {
    margin-bottom: 0.15rem;
}

.footer-list {
    display: grid;
    gap: 0.85rem;
}

.footer-item,
.footer-book {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.96rem;
    line-height: 1.5;
}

.footer-icon {
    width: 1rem;
    height: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-secondary);
    flex-shrink: 0;
}

.footer-icon i {
    font-size: 0.95rem;
    line-height: 1;
}

.footer-book {
    margin-top: 1rem;
    font-weight: 600;
    padding-top: 0.2rem;
}

.footer-social-links {
    margin-top: 0.2rem;
    display: grid;
    gap: 0.9rem;
}

.footer-social-row {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    flex-wrap: wrap;
}

.footer-social-icon {
    width: 2.8rem;
    height: 2.8rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 63, 130, 0.22);
    border-radius: 11px;
    color: var(--brand-strong);
    box-shadow: 0 4px 14px rgba(0, 63, 130, 0.06);
    transition: transform 160ms ease, border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.footer-social-icon i {
    font-size: 1.2rem;
    line-height: 1;
}

.footer-social-icon:hover,
.footer-social-icon:focus-visible {
    transform: translateY(-1px);
    color: var(--brand);
    border-color: var(--color-secondary);
    background: rgba(0, 146, 255, 0.06);
}

/* Home: dirección editorial inspirada en un centro de servicio técnico. */
.hero-command {
    position: relative;
    overflow: hidden;
    width: min(calc(100% - 64px), 1840px);
    margin: 0.75rem auto 0;
    border-radius: 24px;
    background: var(--brand-strong);
    color: #fff;
    box-shadow: 0 18px 50px rgba(3, 28, 59, 0.16);
}

.hero-command::before {
    content: "";
    position: absolute;
    inset: 0 38% 0 0;
    z-index: 1;
    background:
        radial-gradient(circle at 1px 1px, rgba(220, 23, 36, 0.35) 1.2px, transparent 1.8px) 0 0 / 42px 42px,
        repeating-radial-gradient(circle at 18% 52%, transparent 0 66px, rgba(127, 196, 255, 0.16) 67px 68px, transparent 69px 116px),
        linear-gradient(rgba(127, 196, 255, 0.12) 1px, transparent 1px) 0 0 / 84px 84px,
        linear-gradient(90deg, rgba(127, 196, 255, 0.1) 1px, transparent 1px) 0 0 / 84px 84px,
        radial-gradient(circle at 28% 48%, rgba(25, 121, 215, 0.3), transparent 44%);
    opacity: 0.78;
    -webkit-mask-image: radial-gradient(ellipse at 34% 48%, #000 0%, rgba(0, 0, 0, 0.9) 48%, transparent 88%);
    mask-image: radial-gradient(ellipse at 34% 48%, #000 0%, rgba(0, 0, 0, 0.9) 48%, transparent 88%);
    animation: vilchezBlueprint 14s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes vilchezBlueprint {
    to {
        opacity: 0.64;
        transform: translate3d(10px, -6px, 0) scale(1.02);
    }
}

.hero-command-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.62fr) minmax(18rem, 0.38fr);
    align-items: center;
    max-width: var(--container);
    min-height: clamp(540px, 38vw, 650px);
    padding-block: clamp(4.5rem, 7vw, 6.5rem);
}

.hero-command-copy {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 0;
    padding: 0 clamp(1rem, 3vw, 3rem);
    text-align: center;
}

.hero-command-copy h1 {
    max-width: 13ch;
    margin: 0;
    font-size: clamp(2.75rem, 4.15vw, 4.6rem);
    line-height: 1.01;
    letter-spacing: -0.06em;
    text-wrap: balance;
    text-shadow: 0 8px 32px rgba(2, 15, 32, 0.34);
}

.hero-command-copy h1 span {
    color: #ff4b58;
}

.hero-command-copy .lead {
    max-width: 38rem;
    margin: 1.35rem 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(1rem, 1.3vw, 1.18rem);
    line-height: 1.5;
    text-wrap: balance;
}

.hero-command .hero-actions {
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
}

.hero-command .button-primary {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
    color: #081d38;
    box-shadow: none;
}

.hero-phone-link {
    display: grid;
    gap: 0.05rem;
    padding-left: 1.1rem;
    border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.hero-phone-link span {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero-phone-link strong {
    color: #fff;
    font-size: 1rem;
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem 1.25rem;
    margin-top: 2.5rem;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-proof span:not(:last-child)::after {
    content: "/";
    margin-left: 1.25rem;
    color: var(--color-secondary);
}

.hero-command-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    min-height: 0;
    overflow: hidden;
}

.hero-command-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(3, 22, 45, 0.96) 0%, rgba(3, 22, 45, 0.88) 35%, rgba(3, 22, 45, 0.58) 62%, rgba(3, 22, 45, 0.22) 100%),
        linear-gradient(180deg, rgba(3, 22, 45, 0.14) 0%, rgba(3, 22, 45, 0.2) 55%, rgba(3, 22, 45, 0.5) 100%);
    pointer-events: none;
}

.hero-command-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.hero-service-note {
    position: absolute;
    z-index: 2;
    right: clamp(1.25rem, 4vw, 4rem);
    bottom: 1.5rem;
    display: grid;
    gap: 0.25rem;
    max-width: 19rem;
    padding: 1rem 1.15rem;
    background: rgba(255, 255, 255, 0.94);
    color: var(--brand-strong);
    border-left: 4px solid var(--color-secondary);
    box-shadow: 0 20px 50px rgba(3, 20, 42, 0.28);
}

.hero-service-note span {
    color: var(--red-dark, #b80f1a);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-service-note strong {
    font-size: 0.9rem;
    line-height: 1.35;
}

.service-index {
    padding: 5.5rem 0;
    background: #fff;
}

.service-index-grid {
    display: grid;
    grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(3rem, 7vw, 7rem);
    align-items: start;
}

.service-index-intro {
    position: sticky;
    top: 7.5rem;
}

.service-index-intro h2 {
    max-width: 12ch;
    margin: 0;
    font-size: clamp(1.75rem, 2.7vw, 2.5rem);
    line-height: 1.07;
    letter-spacing: -0.045em;
}

.service-index-intro > p:not(.section-label) {
    max-width: 31rem;
    color: var(--muted);
    line-height: 1.7;
}

.service-index-intro .text-link {
    display: inline-flex;
    gap: 0.6rem;
    margin-top: 0.75rem;
    color: var(--brand);
    font-weight: 800;
}

.service-index-list {
    border-top: 1px solid var(--line);
}

.service-index-item {
    display: grid;
    grid-template-columns: 3.5rem 3rem minmax(0, 1fr);
    gap: 1.2rem;
    align-items: start;
    padding: 1.75rem 0;
    border-bottom: 1px solid var(--line);
}

.service-number {
    color: #b80f1a;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.service-index-icon {
    width: 2.75rem;
    height: 2.75rem;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--brand);
    border-radius: 50%;
}

.service-index-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.service-index-item h3 {
    margin: 0 0 0.45rem;
    color: var(--brand-strong);
    font-size: 1.3rem;
    line-height: 1.2;
}

.service-index-item p {
    max-width: 38rem;
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

/* Soluciones expansibles */
.sector-section {
    background: #fff;
}

.sector-heading {
    margin-bottom: 2.25rem;
}

.sector-heading h2 {
    max-width: none;
    font-size: clamp(1.75rem, 2.5vw, 2.35rem);
}

.sector-heading h2 span {
    color: var(--color-secondary);
}

.sector-grid {
    display: flex;
    gap: 14px;
    height: 460px;
}

.sector-card {
    position: relative;
    flex: 1;
    min-width: 0;
    overflow: hidden;
    border-radius: 18px;
    text-decoration: none;
    background: var(--brand-strong);
    transition: flex 0.5s cubic-bezier(.22,.61,.36,1);
}

.sector-card:focus-visible {
    outline: 3px solid var(--color-secondary);
    outline-offset: 3px;
}

@media (min-width: 761px) {
    .sector-grid:hover .sector-card,
    .sector-grid:focus-within .sector-card {
        flex: 0.72;
    }

    .sector-grid .sector-card:hover,
    .sector-grid .sector-card:focus-visible {
        flex: 2.4;
    }
}

.sector-card > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 0.7s ease;
}

.sector-card:hover > img,
.sector-card:focus-visible > img {
    transform: scale(1.08);
}

.sector-card-veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 20, 38, 0.05) 0%, rgba(10, 20, 38, 0.12) 38%, rgba(9, 18, 34, 0.6) 72%, rgba(8, 16, 30, 0.9) 100%);
    transition: background 0.5s ease;
}

.sector-card:hover .sector-card-veil,
.sector-card:focus-visible .sector-card-veil {
    background: linear-gradient(180deg, rgba(10, 20, 38, 0.15) 0%, rgba(9, 18, 34, 0.5) 52%, rgba(8, 16, 30, 0.92) 100%);
}

.sector-card-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px;
    border-radius: 999px;
    background: var(--color-secondary);
    color: var(--brand-strong);
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.sector-card-tag::before {
    width: 6px;
    height: 6px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--brand-strong);
    content: "";
}

.sector-card:hover .sector-card-tag,
.sector-card:focus-visible .sector-card-tag {
    opacity: 1;
    transform: none;
}

.sector-card-copy {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    padding: 22px 20px;
    color: #fff;
}

.sector-card-copy > strong {
    font-size: 1.25rem;
    line-height: 1.12;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.sector-card-description {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    max-width: 30rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    line-height: 1.5;
    transition: max-height 0.5s cubic-bezier(.22,.61,.36,1), opacity 0.4s ease, margin 0.4s ease;
}

.sector-card-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    color: #ff7580;
    font-size: 0.8125rem;
    font-weight: 700;
    transition: max-height 0.5s ease, opacity 0.4s ease, margin 0.4s ease;
}

.sector-card:hover .sector-card-description,
.sector-card:focus-visible .sector-card-description {
    max-height: 120px;
    opacity: 1;
    margin-top: 8px;
}

.sector-card:hover .sector-card-link,
.sector-card:focus-visible .sector-card-link {
    max-height: 40px;
    opacity: 1;
    margin-top: 12px;
}

.sector-card-arrow {
    transition: transform 0.3s ease;
}

.sector-card:hover .sector-card-arrow,
.sector-card:focus-visible .sector-card-arrow {
    transform: translateX(4px);
}

/* Identidad Vilchez: precisión industrial en azul y rojo. */
.site-header {
    padding: 0.25rem 0;
    border-bottom: 0;
    box-shadow: 0 8px 30px rgba(3, 28, 59, 0.08);
}

.nav-shell {
    min-height: 86px;
}

.brand img {
    width: clamp(230px, 20vw, 292px);
    height: 72px;
    object-fit: contain;
}

.site-nav a[aria-current="page"]::after {
    background: var(--color-secondary);
}

.nav-cta,
.button-primary {
    background: var(--color-secondary);
    color: #fff;
    box-shadow: 0 12px 26px rgba(220, 23, 36, 0.2);
}

.nav-cta:hover,
.nav-cta:focus-visible,
.button-primary:hover,
.button-primary:focus-visible {
    background: #b80f1a;
    color: #fff;
    box-shadow: 0 14px 30px rgba(220, 23, 36, 0.28);
}

.hero-command {
    width: 100%;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
}

.hero-command::before {
    inset: auto auto 0 0;
    width: 43%;
    height: 7px;
    background: var(--color-secondary);
    opacity: 1;
    -webkit-mask-image: none;
    mask-image: none;
    animation: none;
}

.hero-command-grid {
    grid-template-columns: minmax(0, 1fr);
    min-height: clamp(590px, 48vw, 720px);
    padding-block: clamp(5rem, 9vw, 8rem);
}

.hero-command-copy {
    width: min(100%, 690px);
    align-items: flex-start;
    justify-content: center;
    padding: 0;
    text-align: left;
}

.hero-command-copy::before {
    display: inline-flex;
    margin-bottom: 1.25rem;
    padding: 0.42rem 0.72rem;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 999px;
    background: rgba(3, 28, 59, 0.48);
    color: rgba(255, 255, 255, 0.84);
    content: "CANON · EQUIPOS · SOPORTE";
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.hero-command-copy h1 {
    max-width: 11ch;
    font-size: clamp(3rem, 5.6vw, 5.65rem);
    line-height: 0.96;
}

.hero-command-copy h1 span {
    color: #ff4b58;
}

.hero-command-copy .lead {
    max-width: 36rem;
    margin-top: 1.5rem;
    font-size: clamp(1rem, 1.45vw, 1.22rem);
    text-wrap: pretty;
}

.hero-command .hero-actions {
    justify-content: flex-start;
}

.hero-command .button-primary {
    color: #fff;
}

.hero-command-media::after {
    background:
        linear-gradient(90deg, rgba(3, 20, 42, 0.72) 0%, rgba(3, 20, 42, 0.35) 42%, rgba(3, 20, 42, 0.04) 72%),
        linear-gradient(180deg, rgba(3, 20, 42, 0.05) 0%, rgba(3, 20, 42, 0.22) 100%);
}

.hero-command-media img {
    object-position: center center;
}

.service-index {
    padding: clamp(4.5rem, 7vw, 7rem) 0;
    background: #f4f7fb;
}

.service-index-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.75rem;
}

.service-index-intro {
    position: static;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
    column-gap: 3rem;
    align-items: end;
}

.service-index-intro .section-label,
.service-index-intro h2 {
    grid-column: 1;
}

.service-index-intro > p:not(.section-label),
.service-index-intro .text-link {
    grid-column: 2;
}

.service-index-intro > p:not(.section-label) {
    grid-row: 1 / span 2;
    align-self: center;
}

.service-index-intro .text-link {
    margin-top: 1rem;
}

.service-index-intro h2 {
    max-width: 15ch;
    font-size: clamp(2.1rem, 4vw, 3.8rem);
}

.service-index-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    border: 0;
}

.service-index-item {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    min-height: 240px;
    padding: 1.7rem;
    overflow: hidden;
    border: 1px solid rgba(6, 43, 89, 0.1);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(3, 28, 59, 0.07);
}

.service-number {
    position: absolute;
    top: 1rem;
    right: 1.15rem;
    color: rgba(6, 43, 89, 0.16);
    font: 700 2.5rem/1 var(--font-heading);
}

.service-index-icon {
    width: 3.15rem;
    height: 3.15rem;
    border-radius: 12px;
    background: var(--color-secondary);
}

.service-index-item > div {
    grid-column: 1 / -1;
    align-self: end;
}

.featured-catalog-section {
    background: #fff;
}

.featured-catalog-flap {
    display: none;
}

.section-label,
.service-number,
.sector-card-link {
    color: var(--color-secondary);
}

.sector-card-tag {
    color: #fff;
}

.footer-logo-panel {
    width: min(100%, 310px);
    min-height: 92px;
}

.footer-logo-panel .footer-logo-white {
    max-height: 82px;
}

@media (max-width: 980px) {
    .service-index-intro {
        grid-template-columns: 1fr;
    }

    .service-index-intro .section-label,
    .service-index-intro h2,
    .service-index-intro > p:not(.section-label),
    .service-index-intro .text-link {
        grid-column: 1;
        grid-row: auto;
    }

    .service-index-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .brand img {
        width: min(220px, calc(100vw - 7rem));
        height: 62px;
    }

    .hero-command-grid {
        min-height: 650px;
        padding: 5rem 0 8rem;
    }

    .hero-command-copy {
        padding: 0 0.25rem;
    }

    .hero-command-copy h1 {
        font-size: clamp(2.75rem, 13vw, 4rem);
    }

    .hero-command-media img {
        object-position: 64% center;
    }

    .hero-command-media::after {
        background: linear-gradient(90deg, rgba(3, 20, 42, 0.86), rgba(3, 20, 42, 0.38));
    }
}

/* Banners interiores */
.page-hero {
    padding: 12px 32px 8px;
    overflow-x: clip;
}

.page-hero-panel {
    position: relative;
    min-height: 330px;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-radius: 24px;
    background: var(--brand-strong);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.page-hero-image,
.page-hero-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.page-hero-image {
    object-fit: cover;
    object-position: center 45%;
    transform: translate3d(0, var(--page-hero-shift, 0), 0) scale(1.1);
    transform-origin: center;
    will-change: transform;
}

.page-hero-contact .page-hero-image {
    object-position: center 48%;
}

.page-hero-overlay {
    background: linear-gradient(90deg, rgba(3, 20, 42, 0.96) 0%, rgba(4, 31, 64, 0.86) 46%, rgba(4, 31, 64, 0.34) 100%);
}

.page-hero-mark {
    display: none;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 760px;
    padding: 56px 52px;
}

.page-hero-crumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.8125rem;
    font-weight: 600;
}

.page-hero-crumbs a {
    color: rgba(255, 255, 255, 0.72);
}

.page-hero-crumbs span:last-child {
    color: #fff;
}

.page-hero-badge {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 14px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: rgba(231, 195, 106, 0.16);
    color: #ff7580;
    font-size: 0.72rem;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.page-hero h1 {
    max-width: 18ch;
    margin: 0 0 14px;
    color: #fff;
    font-size: clamp(1.9rem, 3vw, 2.5rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
}

.page-hero-content > p {
    max-width: 40rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.125rem;
    line-height: 1.55;
}

.page-hero + .section,
.page-hero + .catalog-section {
    padding-top: 3.5rem;
}

/* Movimiento de marcas */
.brand-band {
    position: relative;
    overflow: hidden;
}

.brand-marquee {
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.brand-marquee-track {
    display: flex;
    width: max-content;
    animation: vilchezMarquee 24s linear infinite;
}

.brand-name-row {
    align-items: center;
    flex-wrap: nowrap;
    min-width: max-content;
    padding-right: clamp(4.5rem, 7.5vw, 8rem);
    gap: clamp(4.5rem, 7.5vw, 8rem);
}

.brand-logo {
    display: block;
    width: auto;
    max-width: 145px;
    height: 36px;
    object-fit: contain;
    opacity: 0.82;
    filter: saturate(0.9);
    transition: opacity 180ms ease, filter 180ms ease, transform 180ms ease;
}

.brand-logo:hover {
    opacity: 1;
    filter: saturate(1);
    transform: translateY(-1px);
}

.brand-logo-konica {
    height: 50px;
}

.brand-logo-canon,
.brand-logo-ricoh {
    width: 132px;
    height: auto;
}

.brand-logo-kyocera,
.brand-logo-hp {
    width: 42px;
    height: 42px;
}

@keyframes vilchezMarquee {
    to { transform: translateX(-50%); }
}

/* Fondo orgánico del catálogo destacado */
.featured-catalog-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding-block: clamp(5.5rem, 7vw, 7rem);
    background: #eef1f7;
}

.featured-catalog-flap {
    position: absolute;
    left: 0;
    z-index: 2;
    width: 100%;
    height: clamp(3.375rem, 7vw, 5.5rem);
    line-height: 0;
    pointer-events: none;
}

.featured-catalog-flap svg {
    display: block;
    width: auto;
    height: 100%;
}

.featured-catalog-flap path {
    fill: #fff;
}

.featured-catalog-flap-top {
    top: -1px;
}

.featured-catalog-flap-bottom {
    bottom: -1px;
}

.featured-catalog-section > .container {
    position: relative;
    z-index: 1;
}

/* Interacciones y entrada de contenido */
.js .reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(.22,.61,.36,1);
}

.js .reveal.is-visible {
    opacity: 1;
    transform: none;
}

.product-card:not(.featured-product-card),
.category-showcase-card {
    transition: transform 0.35s cubic-bezier(.22,.61,.36,1), box-shadow 0.35s ease;
}

.product-card:not(.featured-product-card):hover,
.category-showcase-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(3, 28, 59, 0.12);
}

.product-card:not(.featured-product-card)::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--color-secondary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.product-card:not(.featured-product-card):hover::after {
    transform: scaleX(1);
}

.hero-command::after {
    content: "";
    position: absolute;
    top: -11rem;
    left: 28%;
    z-index: 0;
    width: 28rem;
    height: 28rem;
    border-radius: 50%;
    background: rgba(31, 118, 205, 0.28);
    filter: blur(90px);
    animation: vilchezGlow 7s ease-in-out infinite;
    pointer-events: none;
}

@keyframes vilchezGlow {
    50% { opacity: 0.45; transform: translate3d(2rem, 1rem, 0) scale(1.08); }
}

/* Footer corporativo */
.site-footer {
    background: linear-gradient(180deg, #092d57 0%, #031a35 100%);
    color: #fff;
}

.footer-main {
    padding: 3.75rem var(--gutter) 3rem;
}

.footer-contact-rail {
    display: grid;
    grid-template-columns: minmax(290px, 0.88fr) minmax(0, 2.45fr);
    align-items: center;
    gap: clamp(2rem, 4vw, 4.5rem);
    padding-bottom: 2rem;
    margin-bottom: 2.5rem;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.28);
}

.footer-contact-rail h2 {
    max-width: 18ch;
    margin: 0;
    color: #fff;
    font-size: clamp(1.8rem, 2.4vw, 2.45rem);
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.footer-contact-actions {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 0.78fr) minmax(0, 1.27fr);
    align-items: center;
    gap: clamp(1.25rem, 2.4vw, 2.5rem);
    width: 100%;
}

.footer-contact-card {
    display: flex;
    align-items: center;
    min-width: 0;
    gap: 0.9rem;
}

.footer-contact-card > span:last-child {
    display: grid;
    gap: 0.15rem;
}

.footer-contact-card small {
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.footer-contact-card strong {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.4;
    overflow-wrap: anywhere;
}

.footer-contact-address strong {
    display: block;
    max-width: 18rem;
}

.footer-contact-icon {
    width: 3.1rem;
    height: 3.1rem;
    flex: 0 0 3.1rem;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #fff;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.footer-contact-card:hover .footer-contact-icon {
    color: var(--brand-strong);
    background: var(--color-secondary);
    border-color: var(--color-secondary);
    transform: translateY(-2px);
}

.footer-shell-new {
    grid-template-columns: minmax(270px, 1.15fr) repeat(3, minmax(160px, 0.85fr));
    gap: clamp(2rem, 3vw, 3.5rem);
    padding-bottom: 0.5rem;
}

.site-footer .footer-company,
.site-footer .footer-column,
.site-footer .footer-item,
.site-footer .footer-social-links {
    color: rgba(255, 255, 255, 0.72);
}

.footer-logo-panel {
    display: flex;
    align-items: center;
    width: 154px;
    min-height: 118px;
    padding: 0.45rem;
    margin-bottom: 1.25rem;
    border-radius: 8px;
    background: #fff;
}

.footer-logo-panel .footer-logo-white {
    width: 100%;
    max-height: 108px;
    margin: 0;
    object-fit: contain;
    object-position: left center;
}

.footer-shell-new .footer-company {
    padding-right: 1.75rem;
}

.site-footer .footer-company-copy {
    max-width: 19rem;
    margin: 0 0 1.35rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.55;
}

.site-footer .footer-column h3 {
    padding-bottom: 0.75rem;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer-link-list {
    display: grid;
    gap: 0.85rem;
}

.footer-link-list a {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-link-list a span {
    width: 7px;
    height: 7px;
    background: var(--color-secondary);
    transition: width 0.2s ease;
}

.footer-link-list a:hover {
    color: #fff;
}

.footer-link-list a:hover span {
    width: 15px;
}

.site-footer .footer-social-icon {
    color: #fff;
    border-color: transparent;
    background: rgba(255, 255, 255, 0.09);
    box-shadow: none;
}

.site-footer .footer-social-icon:hover {
    color: var(--brand-strong);
    background: var(--color-secondary);
}

.site-footer .footer-icon {
    color: var(--color-secondary);
    background: transparent;
}

.footer-hours {
    gap: 1rem;
}

.footer-bottombar {
    background: #dc1724;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.whatsapp-float {
    position: fixed;
    z-index: 30;
    right: clamp(1rem, 2.5vw, 2rem);
    bottom: clamp(1rem, 2.5vw, 2rem);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 50%;
    background: #1faa59;
    color: #fff;
    box-shadow: 0 14px 34px rgba(8, 73, 39, 0.3);
    transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float i {
    font-size: 1.85rem;
}

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

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
    transform: translateY(-3px);
    background: #168f49;
    box-shadow: 0 18px 40px rgba(8, 73, 39, 0.38);
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .js .reveal {
        opacity: 1;
        transform: none;
    }
}

/* Hero principal más compacto y navegación manual de imágenes. */
.hero-command-grid {
    min-height: clamp(480px, 38vw, 560px);
    padding-block: clamp(3.5rem, 6vw, 5rem);
}

.hero-command.hero-slider-ready .hero-command-slide {
    z-index: 0;
    display: block;
    opacity: 0;
    transform: scale(1.065);
    animation: none;
    transition: opacity 850ms ease, transform 7.5s ease;
}

.hero-command.hero-slider-ready .hero-command-slide.is-active {
    z-index: 1;
    opacity: 1;
    transform: scale(1.01);
}

.hero-slide-nav {
    position: absolute;
    right: clamp(1.25rem, 5vw, 5rem);
    bottom: 1.5rem;
    z-index: 6;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.42rem;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 999px;
    background: rgba(3, 20, 42, .68);
    box-shadow: 0 12px 30px rgba(0,0,0,.2);
    backdrop-filter: blur(12px);
}

.hero-slide-arrow,
.hero-slide-dots button {
    display: grid;
    min-width: 2.35rem;
    height: 2.35rem;
    padding: 0;
    place-items: center;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: rgba(255,255,255,.72);
    cursor: pointer;
    font: 800 .72rem/1 var(--font-heading);
    transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.hero-slide-dots {
    display: flex;
    gap: 0.3rem;
}

.hero-slide-dots button {
    border: 1px solid rgba(255,255,255,.16);
}

.hero-slide-dots button.is-active {
    background: #e5102b;
    border-color: #e5102b;
    color: #fff;
    box-shadow: 0 7px 18px rgba(229, 16, 43, .35);
}

.hero-slide-arrow:hover,
.hero-slide-arrow:focus-visible,
.hero-slide-dots button:hover,
.hero-slide-dots button:focus-visible {
    background: rgba(255,255,255,.14);
    color: #fff;
    transform: translateY(-1px);
}

@media (max-width: 760px) {
    .hero-command-grid {
        min-height: 520px;
        padding: 3.5rem 0 5.5rem;
    }

    .hero-slide-nav {
        right: 1rem;
        bottom: 1rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-command.hero-slider-ready .hero-command-slide,
    .hero-command.hero-slider-ready .hero-command-slide-two {
        display: block;
        transition: none;
    }
}

/* Contraste uniforme para las acciones de todos los formularios públicos. */
.contact-form .button-primary,
.contact-form button.button-primary,
.quote-form .button-primary,
.claim-form .button-primary {
    background: linear-gradient(135deg, #f0082a, #d80a25);
    color: #fff;
    border-color: transparent;
    text-shadow: none;
    box-shadow: 0 12px 26px rgba(220, 23, 36, .22);
}

.contact-form .button-primary:hover,
.contact-form .button-primary:focus-visible,
.contact-form button.button-primary:hover,
.contact-form button.button-primary:focus-visible,
.quote-form .button-primary:hover,
.quote-form .button-primary:focus-visible,
.claim-form .button-primary:hover,
.claim-form .button-primary:focus-visible {
    background: #b80f1a;
    color: #fff;
    border-color: transparent;
    box-shadow: 0 14px 30px rgba(220, 23, 36, .3);
}

/* Footer Vilchez v3: composición basada en la referencia aprobada. */
.site-footer {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    margin-top: clamp(5rem, 8vw, 8rem);
    background:
        linear-gradient(135deg, rgba(255,255,255,.74), transparent 26%) 0 0 / 440px 170px no-repeat,
        linear-gradient(180deg, #edf1f6 0 155px, #061f3e 155px 100%);
}

.site-footer::before,
.site-footer::after {
    position: absolute;
    z-index: 0;
    background: linear-gradient(135deg, #ff001f 0%, #d5001f 58%, #9d0019 100%);
    content: "";
    pointer-events: none;
}

.site-footer::before {
    top: 0;
    right: 0;
    width: clamp(170px, 20vw, 340px);
    height: 205px;
    clip-path: polygon(38% 0, 100% 0, 100% 67%, 0 100%, 23% 72%);
}

.site-footer::after {
    bottom: -105px;
    left: -100px;
    width: clamp(260px, 28vw, 500px);
    height: 230px;
    clip-path: polygon(0 0, 100% 100%, 0 100%);
}

.footer-main.footer-main-v2 {
    position: relative;
    z-index: 2;
    padding: 0 var(--gutter) clamp(2.5rem, 4vw, 4rem);
}

.footer-cta-v2 {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(520px, 1.15fr);
    align-items: center;
    width: min(100%, 1240px);
    min-height: 170px;
    gap: clamp(2rem, 4vw, 4rem);
    margin: 0 auto;
    padding: clamp(1.8rem, 3vw, 2.8rem) clamp(2rem, 4.5vw, 4.5rem);
    border: 0;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 20px 50px rgba(2, 20, 42, 0.16);
    transform: translateY(-48px);
}

.footer-cta-v2 > div:first-child {
    min-width: 0;
}

.footer-cta-v2 p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0 0 0.55rem;
    color: #ed0b26;
    font-size: clamp(0.72rem, 1vw, 0.88rem);
    letter-spacing: 0.04em;
}

.footer-cta-v2 p::before {
    width: 48px;
    height: 3px;
    flex: 0 0 auto;
    background: #ed0b26;
    content: "";
}

.footer-cta-v2 h2 {
    max-width: 17ch;
    margin: 0;
    color: #071f3e;
    font-size: clamp(2rem, 3.25vw, 3.35rem);
    line-height: 1.02;
    letter-spacing: -0.05em;
}

.footer-cta-v2 h2 span {
    display: block;
    color: #e70b25;
}

.footer-cta-actions-v2 {
    display: grid;
    grid-template-columns: minmax(250px, 1.16fr) minmax(220px, .94fr);
    align-items: center;
    gap: clamp(1rem, 2vw, 1.8rem);
    padding-left: clamp(2rem, 4vw, 4rem);
    border-left: 1px solid rgba(6, 37, 72, 0.45);
}

.footer-whatsapp-v2,
.footer-quote-v2 {
    min-height: 64px;
    padding: 0.9rem 1.4rem;
    border-radius: 14px;
    font-size: clamp(0.86rem, 1.25vw, 1rem);
    font-weight: 800;
}

.footer-whatsapp-v2 {
    gap: 0.85rem;
    background: linear-gradient(135deg, #ff0428, #df001f);
    color: #fff;
    box-shadow: 0 18px 35px rgba(226, 0, 32, 0.2);
}

.footer-whatsapp-v2 i {
    font-size: 1.75rem;
}

.footer-whatsapp-v2 b {
    margin-left: auto;
    font-size: 1.35rem;
}

.footer-quote-v2 {
    justify-content: space-between;
    gap: 1rem;
    border: 1px solid #617695;
    color: #071f3e;
    background: #fff;
}

.footer-brandline-v2 {
    display: grid;
    grid-template-columns: minmax(330px, .85fr) minmax(0, 1.35fr);
    align-items: center;
    gap: clamp(2rem, 5vw, 4.75rem);
    width: min(100%, 1130px);
    margin: -6px auto clamp(2.4rem, 4vw, 3.5rem);
    padding: 0;
    border: 0;
}

.footer-brandline-v2 img {
    width: min(100%, 365px);
    height: auto;
}

.footer-brandline-v2 p {
    max-width: none;
    min-height: 76px;
    display: flex;
    align-items: center;
    margin: 0;
    padding-left: clamp(2rem, 5vw, 4.5rem);
    border-left: 1px solid rgba(146, 180, 220, 0.56);
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(1rem, 1.7vw, 1.22rem);
    line-height: 1.55;
    text-align: left;
}

.footer-brandline-v2 strong {
    display: contents;
    color: #ff0829;
    font-weight: 800;
}

.footer-layout-v2 {
    display: grid;
    grid-template-columns: minmax(250px, .95fr) minmax(300px, 1.05fr) minmax(310px, 1.08fr);
    align-items: start;
    gap: clamp(3rem, 7vw, 7rem);
    width: min(100%, 1130px);
    margin: 0 auto;
}

.footer-column-heading-v2,
.footer-contact-v2 > .footer-column-heading-v2 {
    display: flex;
    grid-template-columns: none;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
    color: #fff;
}

.footer-column-heading-v2 > span {
    display: grid;
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(145deg, #ff1734, #e30022);
    color: #fff;
    box-shadow: 0 10px 26px rgba(229, 0, 34, .2);
}

.footer-column-heading-v2 > span i {
    color: #fff;
    font-size: 1rem;
}

.footer-kicker-v2,
.footer-column-heading-v2 .footer-kicker-v2 {
    margin: 0;
    color: #fff;
    font-size: 0.95rem;
    letter-spacing: 0.025em;
}

.footer-nav-v2 > div:not(.footer-column-heading-v2),
.footer-categories-v2 > div:not(.footer-column-heading-v2) {
    display: grid;
    gap: 0.65rem;
}

.footer-nav-v2 a,
.footer-categories-v2 a {
    position: relative;
    padding-left: 1.7rem;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.91rem;
    font-weight: 500;
}

.footer-nav-v2 a::before,
.footer-categories-v2 a::before {
    top: 0.08em;
    left: 0.15rem;
    width: auto;
    height: auto;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #ff0b2c;
    content: "›";
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 0.7;
}

.footer-contact-v2 {
    gap: 0.65rem;
}

.footer-contact-v2 > a,
.footer-contact-v2 > div:not(.footer-column-heading-v2) {
    grid-template-columns: 46px minmax(0, 1fr);
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.91rem;
}

.footer-contact-v2 > a > i,
.footer-contact-v2 > div:not(.footer-column-heading-v2) > i {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(145deg, #ff1734, #e30022);
    color: #fff;
}

.footer-bottombar {
    position: relative;
    z-index: 2;
    background: transparent;
    border-top: 1px solid rgba(153, 184, 220, 0.24);
}

.footer-bottombar::after {
    position: absolute;
    right: -80px;
    bottom: -105px;
    z-index: -1;
    width: clamp(260px, 27vw, 480px);
    height: 230px;
    background: linear-gradient(145deg, #9f0018, #ff0024);
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
    content: "";
}

.footer-bottom-v2 {
    min-height: 92px;
    width: min(100%, 1200px);
    padding: 0 var(--gutter);
}

.footer-bottom-v2 p {
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.78rem;
}

.footer-partners-v2 {
    display: flex;
    align-items: center;
    gap: 1.35rem;
}

.footer-partners-v2 > span[aria-hidden="true"] {
    width: 1px;
    height: 32px;
    background: rgba(255,255,255,.45);
}

.footer-canon-v2 {
    width: 106px;
    height: auto;
    filter: saturate(1.3) brightness(1.2);
}

.footer-datadex-v2 img {
    width: 100px;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

@media (max-width: 1050px) {
    .footer-cta-v2 {
        grid-template-columns: 1fr;
        gap: 1.7rem;
    }

    .footer-cta-actions-v2 {
        padding-top: 1.5rem;
        padding-left: 0;
        border-top: 1px solid rgba(6, 37, 72, 0.2);
        border-left: 0;
    }

    .footer-layout-v2 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 2.2rem;
    }
}

@media (max-width: 760px) {
    .site-footer {
        background: linear-gradient(180deg, #edf1f6 0 220px, #061f3e 220px 100%);
    }

    .site-footer::before {
        width: 155px;
        height: 145px;
    }

    .site-footer::after {
        opacity: .65;
    }

    .footer-main.footer-main-v2 {
        padding-inline: 1rem;
    }

    .footer-cta-v2 {
        min-height: 0;
        gap: 1.35rem;
        padding: 1.6rem;
        border-radius: 18px;
        transform: translateY(-34px);
    }

    .footer-cta-v2 p::before {
        width: 30px;
    }

    .footer-cta-v2 h2 {
        font-size: clamp(1.9rem, 9vw, 2.5rem);
    }

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

    .footer-whatsapp-v2,
    .footer-quote-v2 {
        width: 100%;
        min-height: 58px;
    }

    .footer-brandline-v2 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 0;
        text-align: center;
    }

    .footer-brandline-v2 img {
        width: min(88%, 330px);
        margin-inline: auto;
    }

    .footer-brandline-v2 p {
        display: block;
        min-height: 0;
        padding: 1.4rem 0 0;
        border-top: 1px solid rgba(146, 180, 220, 0.42);
        border-left: 0;
        text-align: center;
    }

    .footer-layout-v2 {
        grid-template-columns: 1fr;
        width: min(100%, 350px);
        gap: 2.5rem;
    }

    .footer-nav-v2,
    .footer-categories-v2 {
        text-align: left;
    }

    .footer-nav-v2 a,
    .footer-categories-v2 a {
        width: auto;
        margin-inline: 0;
    }

    .footer-kicker-v2,
    .footer-column-heading-v2 .footer-kicker-v2 {
        text-align: left;
    }

    .footer-contact-v2 {
        width: 100%;
        margin-inline: 0;
    }

    .footer-bottom-v2 {
        flex-direction: column;
        gap: 1.4rem;
        min-height: 0;
        padding: 1.5rem 1rem 6rem;
        text-align: center;
    }

    .footer-partners-v2 {
        justify-content: center;
    }
}

@keyframes catalog-loading-shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

@media (max-width: 1024px) {
    .contact-editorial,
    .quote-editorial {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

    .contact-editorial {
        grid-template-areas:
            "copy"
            "media";
    }

    .contact-editorial-copy h2,
    .quote-editorial-intro h2 {
        max-width: 18ch;
    }

    .contact-editorial-media {
        width: min(100% - 1rem, 680px);
    }

    .contact-editorial-media img {
        aspect-ratio: 16 / 11;
    }

    .quote-editorial-intro {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
        gap: 0 2.5rem;
    }

    .quote-editorial-intro > .section-label,
    .quote-editorial-intro > h2,
    .quote-editorial-intro > .quote-editorial-lead {
        grid-column: 1;
    }

    .quote-editorial-media {
        grid-column: 2;
        grid-row: 1 / span 4;
        margin-top: 0;
    }

    .quote-guidance {
        grid-column: 1;
    }

    .brand img {
        width: 108px;
        height: 88px;
    }

    .header-search {
        width: 100%;
        margin: 0.5rem 0 0;
    }

    .header-cart-wrap {
        align-self: flex-start;
    }

    .header-cart-popover {
        position: static;
        margin-top: 0.5rem;
    }

    .footer-contact-rail {
        align-items: flex-start;
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .footer-contact-actions {
        width: 100%;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.25rem 2rem;
    }

    .footer-shell-new {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-command-grid {
        grid-template-columns: minmax(0, 0.66fr) minmax(14rem, 0.34fr);
        min-height: 520px;
    }

    .hero-command-copy {
        padding: 0 1.5rem;
    }

    .hero-command-media {
        min-height: 0;
    }

    .service-index-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .service-index-intro {
        position: static;
    }

    .service-index-intro h2 {
        max-width: 18ch;
    }

    .category-grid,
    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-banner-grid,
    .highlight-strip-shell,
    .hero-content,
    .catalog-search-form {
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding-bottom: 3.5rem;
    }

    .highlight-strip {
        margin-top: -0.5rem;
    }

    .split-panel,
    .contact-grid,
    .product-detail-grid,
    .quote-grid,
    .claim-grid,
    .footer-shell,
    .hero-shell,
    .inner-hero-shell,
    .two-column-grid,
    .benefit-list {
        grid-template-columns: 1fr;
    }

    .footer-shell {
        gap: 2rem;
    }

    .footer-shell.footer-shell-new {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 0.75rem);
        right: 1rem;
        left: 1rem;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 1rem;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: var(--shadow);
        border: 1px solid rgba(13, 44, 84, 0.08);
        gap: 0.35rem;
        justify-content: flex-start;
    }

    .site-nav.is-open {
        display: flex;
    }

    .menu-toggle,
    .mobile-contact-cta {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0.8rem 1rem;
        border-radius: 6px;
        border: 1px solid rgba(13, 44, 84, 0.12);
        background: rgba(255, 255, 255, 0.92);
        color: var(--ink);
        font: inherit;
        font-weight: 800;
    }

    .menu-toggle {
        width: 46px;
        min-width: 46px;
        height: 44px;
        padding: 0;
    }

    .brand {
        order: 1;
    }

    .mobile-contact-cta {
        order: 2;
        justify-self: end;
    }

    .menu-toggle {
        order: 3;
        justify-self: end;
    }
}

@media (max-width: 900px) {
    .footer-contact-actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-contact-address {
        grid-column: 1 / -1;
    }

    .footer-contact-address strong {
        max-width: none;
    }
}

@media (max-width: 760px) {
    .contact-story,
    .quote-story {
        padding-block: 3.5rem 4.5rem;
    }

    .contact-editorial-copy h2,
    .quote-editorial-intro h2 {
        font-size: clamp(2rem, 8.5vw, 3rem);
    }

    .quote-editorial-intro {
        display: block;
    }

    .quote-editorial-media {
        margin-top: 2.25rem;
    }

    .about-editorial {
        grid-template-areas:
            "copy"
            "media";
        grid-template-columns: 1fr;
        gap: 2.75rem;
    }

    .about-editorial-copy h2 {
        max-width: 18ch;
        font-size: clamp(2rem, 8.5vw, 3rem);
    }

    .about-editorial-media {
        width: calc(100% - 0.75rem);
    }

    .sector-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        height: auto;
    }

    .sector-card {
        height: 200px;
        border-radius: 14px;
    }

    .sector-card-tag {
        display: none;
    }

    .sector-card-copy {
        padding: 14px 12px;
    }

    .sector-card-copy > strong {
        font-size: 0.9375rem;
        line-height: 1.12;
    }

    .sector-card-description {
        display: -webkit-box;
        max-height: none;
        margin-top: 5px;
        overflow: hidden;
        font-size: 0.75rem;
        line-height: 1.35;
        opacity: 1;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .sector-card-link {
        display: none;
    }

    .sector-card-veil,
    .sector-card:hover .sector-card-veil,
    .sector-card:focus-visible .sector-card-veil {
        background: linear-gradient(180deg, rgba(10, 20, 38, 0.12) 0%, rgba(9, 18, 34, 0.5) 48%, rgba(8, 16, 30, 0.92) 100%);
    }
}

@media (max-width: 640px) {
    .contact-channels {
        grid-template-columns: 1fr;
    }

    .contact-channel,
    .contact-channel-wide {
        grid-column: 1;
    }

    .contact-editorial-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .contact-text-link {
        padding: 0.6rem 0;
        text-align: center;
    }

    .contact-editorial-media,
    .quote-editorial-media {
        width: calc(100% - 0.75rem);
    }

    .contact-editorial-media::before {
        inset: 1rem 1rem -0.75rem -0.75rem;
        border-radius: 20px 20px 20px 64px;
    }

    .contact-editorial-media img {
        aspect-ratio: 4 / 5;
        border-radius: 20px 20px 20px 64px;
    }

    .quote-editorial-media::before {
        inset: 0.9rem -0.75rem -0.75rem 0.9rem;
        border-radius: 20px 20px 58px 20px;
    }

    .quote-editorial-media img {
        border-radius: 20px 20px 58px 20px;
    }

    .contact-editorial-media figcaption,
    .quote-editorial-media figcaption {
        right: 1rem;
        bottom: 1rem;
        left: 1rem;
    }

    .site-header {
        padding: 0.55rem 0;
    }

    .nav-shell {
        gap: 0.55rem;
        min-height: 3.9rem;
    }

    .mobile-contact-cta {
        min-height: 42px;
        padding: 0.68rem 0.82rem;
        font-size: 0.875rem;
    }

    .topbar-shell {
        min-height: auto;
        padding: 0.55rem 0;
        text-align: center;
    }

    .topbar-shell > span {
        display: none;
    }

    .topbar-shell {
        justify-content: center;
    }

    .hero,
    .inner-hero,
    .section {
        padding: 1.5rem 0 3rem;
    }

    .inner-hero {
        padding-bottom: 1.1rem;
    }

    .inner-hero + .section {
        padding-top: 1rem;
    }

    .hero-copy h1,
    .inner-hero h1 {
        max-width: 100%;
        font-size: clamp(1.7rem, 9vw, 2.5rem);
    }

    .brand img {
        width: 90px;
        height: 72px;
    }

    .sector-heading h2 {
        font-size: 1.85rem;
    }

    .brand-wordmark small {
        display: none;
    }

    .brand-wordmark strong {
        font-size: 0.82rem;
    }

    .brand-band-shell,
    .brand-name-row {
        justify-content: center;
        text-align: center;
    }

    .brand-band {
        padding-block: 2.7rem 4rem;
    }

    .brand-band-heading {
        margin-bottom: 1.65rem;
    }

    .brand-band-heading h2 {
        font-size: 1.85rem;
    }

    .brand-name-row {
        gap: 3.5rem;
        padding-right: 3.5rem;
    }

    .featured-catalog-section {
        padding-block: 5rem;
    }

    .page-hero {
        padding: 8px var(--gutter) 0;
    }

    .page-hero-panel {
        min-height: 310px;
        border-radius: 18px;
    }

    .page-hero-content {
        padding: 36px 24px;
    }

    .page-hero-crumbs {
        display: none;
    }

    .page-hero h1 {
        max-width: 16ch;
        font-size: 1.85rem;
    }

    .page-hero-contact .page-hero-image {
        object-position: 68% center;
    }

    .about-story {
        padding-block: 3.5rem 4.5rem;
    }

    .about-editorial-media::before {
        inset: 1rem -0.75rem -0.75rem 1rem;
        border-radius: 22px 22px 68px 22px;
    }

    .about-editorial-media img {
        border-radius: 22px 22px 68px 22px;
    }

    .about-editorial-media figcaption {
        right: 1rem;
        bottom: 1rem;
        left: 1rem;
        border-radius: 12px 12px 36px 12px;
    }

    .page-hero-mark {
        right: -1rem;
        top: -1rem;
        font-size: 11rem;
    }

    .footer-main {
        padding: 3rem 1.25rem 2.5rem;
    }

    .footer-contact-actions,
    .footer-contact-card {
        width: 100%;
    }

    .footer-contact-actions {
        grid-template-columns: 1fr;
        gap: 1.15rem;
    }

    .footer-contact-address {
        grid-column: auto;
    }

    .footer-contact-card {
        padding: 0.9rem;
        border: 1px solid rgba(255, 255, 255, 0.11);
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.045);
    }

    .footer-contact-rail h2 {
        max-width: 13ch;
    }

    .whatsapp-float {
        width: 3.6rem;
        height: 3.6rem;
        justify-content: center;
        padding: 0;
    }

    .footer-shell-new .footer-company {
        padding-right: 0;
    }

    .footer-logo-panel {
        width: min(100%, 290px);
        min-height: 86px;
        margin-bottom: 1.1rem;
    }

    .hero-command {
        width: calc(100% - 2rem);
        margin-top: 0.75rem;
        border-radius: 16px;
    }

    .hero-command::before {
        inset: 0;
        opacity: 0.48;
        -webkit-mask-image: radial-gradient(ellipse at 42% 38%, #000 0%, rgba(0, 0, 0, 0.72) 38%, transparent 76%);
        mask-image: radial-gradient(ellipse at 42% 38%, #000 0%, rgba(0, 0, 0, 0.72) 38%, transparent 76%);
    }

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

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

    .brand-band-shell {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-visual,
    .hero-content {
        min-height: 470px;
    }

    .hero-command-grid {
        grid-template-columns: 1fr;
        min-height: auto;
        width: 100%;
        padding-inline: 0;
    }

    .hero-command-copy {
        padding: 3.5rem 1rem 2.75rem;
    }

    .hero-command-copy h1 {
        max-width: 12ch;
        font-size: clamp(2.1rem, 10vw, 2.75rem);
    }

    .hero-command .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-phone-link {
        padding: 0.75rem 0 0 0;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        border-left: 0;
    }

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

    .hero-proof span:not(:last-child)::after {
        display: none;
    }

    .hero-command-media {
        min-height: 0;
        margin-right: 0;
        clip-path: none;
    }

    .hero-command-media::after {
        background:
            linear-gradient(90deg, rgba(3, 22, 45, 0.9) 0%, rgba(3, 22, 45, 0.76) 58%, rgba(3, 22, 45, 0.55) 100%),
            linear-gradient(180deg, rgba(3, 22, 45, 0.3) 0%, rgba(3, 22, 45, 0.62) 100%);
    }

    .hero-command-media img {
        object-position: 67% center;
    }

    .hero-service-note {
        right: 1rem;
        bottom: 1rem;
        left: 1rem;
    }

    .service-index {
        padding: 4rem 0;
    }

    .service-index-grid {
        width: min(calc(100% - 2rem), var(--container));
    }

    .service-index-item {
        grid-template-columns: 2.5rem minmax(0, 1fr);
        gap: 0.9rem;
    }

    .service-index-icon {
        grid-column: 1;
        grid-row: 2;
    }

    .service-index-item > div {
        grid-column: 2;
        grid-row: 1 / span 2;
    }

    .hero-content {
        align-items: end;
        padding-top: 5.25rem;
        padding-bottom: 2rem;
    }

    .highlight-strip {
        margin-top: 0;
    }

    .category-grid,
    .product-grid,
    .contact-form,
    .highlight-strip-shell,
    .service-banner-grid {
        grid-template-columns: 1fr;
    }

    .featured-product-card {
        width: 100%;
        min-width: 0;
        min-height: 0;
        aspect-ratio: 4 / 3;
        border-radius: 16px;
    }

    .featured-product-body {
        padding: 18px;
    }

    .quote-form,
    .claim-form-card {
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    .catalog-results-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .catalog-filters {
        flex-wrap: nowrap;
        gap: 0.6rem;
        margin-inline: -0.15rem;
        padding: 0 0.15rem 0.35rem;
        overflow-x: auto;
        scrollbar-width: thin;
    }

    .catalog-filter-rail {
        grid-template-columns: minmax(0, 1fr);
    }

    .catalog-filter-arrow {
        display: none;
    }

    .catalog-category-toolbar {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        padding: 0.9rem;
    }

    .catalog-filter-heading {
        display: flex;
        align-items: baseline;
        gap: 0.45rem;
    }

    .filter-chip {
        flex: 0 0 auto;
    }

    .catalog-results .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.75rem;
    }

    .catalog-product-card .product-body {
        padding: 0.8rem;
    }

    .catalog-product-card h3 {
        min-height: 3.7em;
        font-size: 0.86rem;
    }

    .catalog-product-action {
        min-height: 2.4rem;
        padding-inline: 0.45rem;
        font-size: 0.7rem;
    }

    .product-brand-badge {
        top: 8px;
        right: 8px;
        width: 58px;
        height: 30px;
    }

    .button,
    .nav-cta {
        width: 100%;
    }

    .hero-actions,
    .centered-actions,
    .form-actions {
        flex-direction: column;
    }

    .hero-panel,
    .hero-note,
    .info-card,
    .contact-form,
    .error-card,
    .category-card,
    .product-card:not(.featured-product-card),
    .benefit-card {
        border-radius: 14px;
    }

    .footer-company p {
        font-size: 0.9rem;
    }

    .product-zoom {
        cursor: default;
    }

    .product-zoom-note {
        display: none;
    }
}

@media (max-width: 460px) {
    .catalog-results .product-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .catalog-product-card h3 {
        min-height: 0;
        font-size: 1rem;
    }

    .catalog-product-action {
        min-height: 2.75rem;
        font-size: 0.78rem;
    }

    .footer-logo-panel {
        width: min(100%, 255px);
    }
}

@media (hover: none) {
    .featured-product-card .featured-product-image {
        transform: scale(1.035);
        filter: saturate(0.92);
    }

    .featured-product-card .featured-product-veil {
        background: linear-gradient(180deg, rgba(3, 17, 35, 0.08) 4%, rgba(3, 17, 35, 0.32) 46%, rgba(2, 13, 28, 0.98) 100%);
    }

    .featured-product-card .featured-product-detail {
        grid-template-rows: 1fr;
        margin-top: 10px;
        opacity: 1;
        transform: none;
    }
}

/* Precedencia final de la identidad Vilchez. */
.site-header { padding: .25rem 0; border-bottom: 0; box-shadow: 0 8px 30px rgba(3,28,59,.08); }
.nav-shell { min-height: 86px; }
.brand img { width: clamp(230px,20vw,292px); height: 72px; object-fit: contain; }
.nav-cta,.button-primary { background: var(--color-secondary); color: #fff; box-shadow: 0 12px 26px rgba(220,23,36,.2); }
.nav-cta:hover,.nav-cta:focus-visible,.button-primary:hover,.button-primary:focus-visible { background: #b80f1a; color: #fff; }
.hero-command { width: 100%; margin: 0; border-radius: 0; box-shadow: none; }
.hero-command::before { inset: auto auto 0 0; width: 43%; height: 7px; background: var(--color-secondary); opacity: 1; -webkit-mask-image: none; mask-image: none; animation: none; }
.hero-command-grid { grid-template-columns: minmax(0,1fr); min-height: clamp(590px,48vw,720px); padding-block: clamp(5rem,9vw,8rem); }
.hero-command-copy { width: min(100%,690px); align-items: flex-start; justify-content: center; padding: 0; text-align: left; }
.hero-command-copy::before { display: inline-flex; margin-bottom: 1.25rem; padding: .42rem .72rem; border: 1px solid rgba(255,255,255,.26); border-radius: 999px; background: rgba(3,28,59,.48); color: rgba(255,255,255,.84); content: "CANON · EQUIPOS · SOPORTE"; font-size: .72rem; font-weight: 800; letter-spacing: .12em; }
.hero-command-copy h1 { max-width: 11ch; font-size: clamp(3rem,5.6vw,5.65rem); line-height: .96; }
.hero-command-copy h1 span { color: #ff4b58; }
.hero-command-copy .lead { max-width: 36rem; margin-top: 1.5rem; font-size: clamp(1rem,1.45vw,1.22rem); text-wrap: pretty; }
.hero-command .hero-actions { justify-content: flex-start; }
.hero-command .button-primary { color: #fff; }
.hero-command-media { min-height: 0; margin-right: 0; clip-path: none; }
.hero-command-media::after { background: linear-gradient(90deg,rgba(3,20,42,.72) 0%,rgba(3,20,42,.35) 42%,rgba(3,20,42,.04) 72%),linear-gradient(180deg,rgba(3,20,42,.05),rgba(3,20,42,.22)); }
.hero-command-media img { object-position: center center; }
.service-index { padding: clamp(4.5rem,7vw,7rem) 0; background: #f4f7fb; }
.service-index-grid { grid-template-columns: minmax(0,1fr); gap: 2.75rem; }
.service-index-intro { position: static; display: grid; grid-template-columns: minmax(0,1.1fr) minmax(260px,.9fr); column-gap: 3rem; align-items: end; }
.service-index-intro .section-label,.service-index-intro h2 { grid-column: 1; }
.service-index-intro>p:not(.section-label),.service-index-intro .text-link { grid-column: 2; }
.service-index-intro>p:not(.section-label) { grid-row: 1/span 2; align-self: center; }
.service-index-intro h2 { max-width: 15ch; font-size: clamp(2.1rem,4vw,3.8rem); }
.service-index-list { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 1rem; border: 0; }
.service-index-item { position: relative; display: grid; grid-template-columns: auto 1fr; gap: 1rem; min-height: 240px; padding: 1.7rem; overflow: hidden; border: 1px solid rgba(6,43,89,.1); border-radius: 18px; background: #fff; box-shadow: 0 18px 45px rgba(3,28,59,.07); }
.service-number { position: absolute; top: 1rem; right: 1.15rem; color: rgba(6,43,89,.16); font: 700 2.5rem/1 var(--font-heading); }
.service-index-icon { width: 3.15rem; height: 3.15rem; border-radius: 12px; background: var(--color-secondary); }
.service-index-item>div { grid-column: 1/-1; align-self: end; }
.featured-catalog-section { background: #fff; }
.featured-catalog-flap { display: none; }
.section-label,.sector-card-link { color: var(--color-secondary); }
.sector-card-tag { color: #fff; }
.footer-logo-panel { width: min(100%,310px); min-height: 92px; }
.footer-logo-panel .footer-logo-white { max-height: 82px; }

@media (max-width: 980px) {
    .service-index-intro { grid-template-columns: 1fr; }
    .service-index-intro .section-label,.service-index-intro h2,.service-index-intro>p:not(.section-label),.service-index-intro .text-link { grid-column: 1; grid-row: auto; }
    .service-index-list { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
    .brand img { width: min(220px,calc(100vw - 7rem)); height: 62px; }
    .hero-command-grid { min-height: 650px; padding: 5rem 0 8rem; }
    .hero-command-copy { padding: 0 .25rem; }
    .hero-command-copy h1 { font-size: clamp(2.75rem,13vw,4rem); }
    .hero-command-media img { object-position: 64% center; }
    .hero-command-media::after { background: linear-gradient(90deg,rgba(3,20,42,.86),rgba(3,20,42,.38)); }
}

/* Cabeceras interiores Vilchez: banners horizontales y contenidos breves. */
.page-hero {
    padding: 0;
    background: var(--brand-strong);
}

.page-hero-panel {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: clamp(250px, 25vw, 330px);
    overflow: hidden;
    border: 0;
    border-radius: 0;
    background: var(--brand-strong);
    box-shadow: none;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: min(calc(100% - 3rem), 1180px);
    max-width: 1180px;
    margin: 0 auto;
    padding: clamp(2.25rem, 4.5vw, 3.75rem) 0;
}

.page-hero-content::after {
    position: absolute;
    left: 0;
    bottom: clamp(1.4rem, 3vw, 2rem);
    width: 64px;
    height: 4px;
    background: var(--color-secondary);
    content: "";
}

.page-hero-crumbs {
    margin-bottom: clamp(1.25rem, 2.5vw, 2rem);
    color: rgba(255, 255, 255, 0.62);
}

.page-hero-crumbs a {
    color: rgba(255, 255, 255, 0.82);
}

.page-hero-crumbs span:last-child {
    color: #fff;
}

.page-hero-badge {
    min-height: 0;
    padding: 0;
    margin-bottom: 0.75rem;
    border-radius: 0;
    background: transparent;
    color: #ff7a83;
    font-size: 0.75rem;
    letter-spacing: 0.14em;
}

.page-hero h1 {
    max-width: 20ch;
    margin: 0;
    color: #fff;
    font-size: clamp(2rem, 3.8vw, 3.75rem);
    line-height: 1.02;
    letter-spacing: -0.035em;
}

.page-hero-visual {
    position: absolute;
    inset: 0;
    min-height: 0;
    overflow: hidden;
    background: var(--brand-strong);
    clip-path: none;
}

.page-hero-visual::before {
    display: none;
}

.page-hero-visual::after {
    position: absolute;
    inset: 0;
    z-index: 1;
    height: auto;
    background: linear-gradient(90deg, rgba(2, 17, 36, 0.96) 0%, rgba(3, 25, 53, 0.86) 42%, rgba(3, 25, 53, 0.3) 78%, rgba(3, 25, 53, 0.18) 100%);
    content: "";
}

.page-hero-image,
.page-hero-contact .page-hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
    object-fit: cover;
    object-position: center;
    transform: none;
    filter: saturate(0.78) contrast(1.05);
}

.page-hero + .section,
.page-hero + .catalog-section {
    padding-top: clamp(4rem, 7vw, 6.5rem);
}

@media (max-width: 860px) {
    .page-hero-panel {
        min-height: 245px;
        border-radius: 0;
    }

    .page-hero-content {
        width: min(calc(100% - 2rem), 1180px);
        padding: 2.25rem 0 3rem;
    }

    .page-hero-content::after {
        left: 0;
        bottom: 1.35rem;
    }

    .page-hero-crumbs {
        margin-bottom: 1.5rem;
    }

    .page-hero h1 {
        max-width: 16ch;
        font-size: clamp(1.85rem, 8.5vw, 2.8rem);
    }

    .page-hero-visual {
        min-height: 0;
        clip-path: none;
    }

    .page-hero-image,
    .page-hero-contact .page-hero-image {
        inset: 0;
        width: 100%;
        height: 100%;
        border-radius: 0;
    }
}

/* Escala de marca en cabecera y versión clara del footer. */
.nav-shell {
    min-height: 104px;
}

.brand img {
    width: clamp(280px, 24vw, 360px);
    height: 88px;
}

.footer-logo-panel {
    width: min(100%, 330px);
    min-height: 100px;
    padding: 0;
    background: transparent;
}

.footer-logo-panel .footer-logo-white {
    max-height: 100px;
}

@media (max-width: 760px) {
    .nav-shell {
        min-height: 92px;
    }

    .brand img {
        width: min(255px, calc(100vw - 6.5rem));
        height: 76px;
    }

    .footer-logo-panel {
        width: min(100%, 290px);
    }
}

/* Fotografía de catálogo: producto completo, sin recortes agresivos. */
.catalog-product-card .product-media {
    aspect-ratio: 4 / 3;
    padding: clamp(0.65rem, 1.2vw, 1rem);
    background:
        radial-gradient(circle at 50% 32%, rgba(255, 255, 255, 0.98), rgba(241, 244, 248, 0.92) 72%),
        #f4f6f9;
}

.catalog-product-card .product-media > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    mix-blend-mode: multiply;
    transition: transform 240ms ease;
}

.catalog-product-card:hover .product-media > img,
.catalog-product-card:focus-within .product-media > img {
    transform: scale(1.025);
}

.featured-product-card {
    background: #f2f4f7;
}

.featured-product-image {
    object-fit: contain;
    object-position: center 34%;
    transform: scale(0.94);
}

.featured-product-card:hover .featured-product-image,
.featured-product-card:focus-within .featured-product-image {
    transform: scale(0.985);
}

.featured-product-veil {
    background: linear-gradient(180deg, rgba(3, 17, 35, 0) 28%, rgba(3, 17, 35, 0.16) 52%, rgba(3, 17, 35, 0.97) 100%);
}

.product-detail-media {
    background: #f4f6f9;
}

.product-detail-media img {
    aspect-ratio: 4 / 3;
    padding: clamp(0.75rem, 2vw, 1.5rem);
    object-fit: contain;
    background: radial-gradient(circle at 50% 35%, #fff, #eef2f6 78%);
}

@media (max-width: 760px) {
    .catalog-product-card .product-media {
        aspect-ratio: 1 / 1;
        padding: 0.55rem;
    }
}

/* Banners internos: gráfica sutil inspirada en impresión. */
.page-hero {
    background: #f3f6fa;
}

.page-hero-panel {
    isolation: isolate;
    min-height: clamp(225px, 20vw, 285px);
    background:
        radial-gradient(circle at 78% 20%, rgba(34, 143, 232, 0.18), transparent 25%),
        linear-gradient(112deg, #03182f 0%, #052c56 58%, #073d70 100%);
}

.page-hero-panel::before {
    position: absolute;
    inset: 0 0 0 48%;
    z-index: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 1.2px, transparent 1.4px) 0 0 / 13px 13px;
    opacity: 0.38;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 38%, #000 100%);
    mask-image: linear-gradient(90deg, transparent, #000 38%, #000 100%);
    content: "";
}

.page-hero-panel::after {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 0;
    width: min(50%, 680px);
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(0, 179, 255, 0.6), rgba(232, 26, 45, 0.55));
    content: "";
}

.page-hero-print-motif {
    position: absolute;
    top: 50%;
    right: clamp(2rem, 8vw, 8rem);
    z-index: 1;
    width: clamp(245px, 27vw, 370px);
    height: clamp(135px, 14vw, 190px);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 22px 22px 14px 14px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.11), rgba(255,255,255,.035)),
        rgba(1, 18, 38, 0.34);
    box-shadow: 0 26px 55px rgba(0, 8, 20, 0.24), inset 0 1px rgba(255,255,255,.08);
    opacity: 0.78;
    transform: translateY(-36%);
}

.page-hero-print-motif::before {
    position: absolute;
    right: 8%;
    bottom: 25%;
    left: 8%;
    height: 22%;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 7px;
    background: rgba(0, 9, 22, 0.26);
    box-shadow: inset 0 8px 18px rgba(0,0,0,.16);
    content: "";
}

.page-hero-print-motif::after {
    position: absolute;
    right: 16%;
    bottom: 0;
    left: 16%;
    height: 18%;
    border: 1px solid rgba(255,255,255,.12);
    border-bottom: 0;
    border-radius: 8px 8px 0 0;
    background: rgba(255,255,255,.055);
    content: "";
}

.page-hero-print-paper {
    position: absolute;
    top: -28%;
    left: 18%;
    width: 64%;
    height: 78%;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 8px 8px 3px 3px;
    background:
        linear-gradient(135deg, rgba(255,255,255,.2), rgba(255,255,255,.07)),
        rgba(178, 219, 250, 0.08);
    box-shadow: 0 16px 28px rgba(0, 8, 20, 0.2);
    transform: perspective(500px) rotateX(-4deg);
    animation: pageHeroPaperFeed 5.5s ease-in-out infinite;
}

.page-hero-print-paper::before,
.page-hero-print-paper::after {
    position: absolute;
    left: 13%;
    height: 2px;
    border-radius: 2px;
    background: rgba(255,255,255,.2);
    content: "";
}

.page-hero-print-paper::before {
    top: 28%;
    width: 58%;
    box-shadow: 0 15px rgba(255,255,255,.14), 0 30px rgba(255,255,255,.1);
}

.page-hero-print-paper::after {
    top: 17%;
    width: 28%;
    background: rgba(255, 82, 96, 0.48);
}

.page-hero-print-paper i {
    position: absolute;
    inset: -20% 0 auto;
    height: 28%;
    background: linear-gradient(180deg, transparent, rgba(104, 205, 255, 0.32), transparent);
    animation: pageHeroScanLine 3.8s ease-in-out infinite;
}

.page-hero-print-lights {
    position: absolute;
    top: 17%;
    right: 8%;
    display: flex;
    gap: 5px;
}

.page-hero-print-lights i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #16b9e8;
    box-shadow: 0 0 10px currentColor;
}

.page-hero-print-lights i:nth-child(2) { background: #e62b6f; }
.page-hero-print-lights i:nth-child(3) { background: #f3d33b; }
.page-hero-print-lights i:nth-child(4) { background: #152236; }

@keyframes pageHeroPaperFeed {
    0%, 100% { transform: perspective(500px) rotateX(-4deg) translateY(0); }
    50% { transform: perspective(500px) rotateX(-4deg) translateY(7px); }
}

@keyframes pageHeroScanLine {
    0%, 18% { transform: translateY(0); opacity: 0; }
    35% { opacity: 1; }
    78% { transform: translateY(430%); opacity: .7; }
    100% { transform: translateY(430%); opacity: 0; }
}

.page-hero-content {
    z-index: 2;
    padding-block: clamp(2rem, 4vw, 3.25rem);
}

.page-hero-visual {
    display: none;
}

/* Hero principal: alternancia, Ken Burns y barrido diagonal de luz. */
.hero-command-media {
    background: #03172f;
}

.hero-command-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.015);
    animation: heroVilchezCycle 16s ease-in-out infinite;
    will-change: opacity, transform;
}

.hero-command-slide-one {
    opacity: 1;
    object-position: center center;
}

.hero-command-slide-two {
    object-position: center center;
    animation-delay: -8s;
}

@keyframes heroVilchezCycle {
    0% { opacity: 1; transform: scale(1.015); }
    42% { opacity: 1; transform: scale(1.095); }
    50% { opacity: 0; transform: scale(1.11); }
    92% { opacity: 0; transform: scale(1.015); }
    100% { opacity: 1; transform: scale(1.015); }
}

.hero-diagonal-light {
    position: absolute;
    top: -35%;
    bottom: -35%;
    left: -32%;
    z-index: 2;
    width: 18%;
    background: linear-gradient(90deg, transparent, rgba(180, 224, 255, 0.2), rgba(255,255,255,.42), transparent);
    filter: blur(18px);
    mix-blend-mode: screen;
    transform: skewX(-21deg);
    animation: heroVilchezLight 7s cubic-bezier(.4,0,.2,1) infinite;
    pointer-events: none;
}

@keyframes heroVilchezLight {
    0%, 20% { left: -32%; opacity: 0; }
    34% { opacity: 0.85; }
    62% { left: 116%; opacity: 0.55; }
    70%, 100% { left: 116%; opacity: 0; }
}

/* Footer Vilchez v2: CTA central y tres bloques equilibrados. */
.site-footer {
    position: relative;
    margin-top: clamp(3rem, 6vw, 5rem);
    background:
        radial-gradient(circle at 12% 16%, rgba(31, 118, 205, 0.2), transparent 25%),
        linear-gradient(135deg, rgba(255,255,255,.035) 25%, transparent 25%) 0 0 / 26px 26px,
        #041b35;
}

.footer-main.footer-main-v2 {
    padding: 0 var(--gutter) clamp(3rem, 5vw, 4.5rem);
}

.footer-cta-v2 {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 2rem;
    padding: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 0;
    border-top: 5px solid var(--color-secondary);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(1, 13, 28, 0.28);
    transform: translateY(-44px);
}

.footer-brandline-v2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    width: min(100%, 1120px);
    margin: 0 auto clamp(2.25rem, 4vw, 3.25rem);
    padding-bottom: clamp(1.5rem, 3vw, 2.25rem);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brandline-v2 img {
    width: min(100%, 245px);
    height: auto;
}

.footer-brandline-v2 p {
    max-width: 31rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.9rem;
    line-height: 1.65;
    text-align: right;
}

.footer-cta-v2 p,
.footer-kicker-v2 {
    margin: 0 0 0.65rem;
    color: var(--color-secondary);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.footer-cta-v2 h2 {
    max-width: 18ch;
    margin: 0;
    color: var(--brand-strong);
    font-size: clamp(1.75rem, 3vw, 2.8rem);
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.footer-cta-actions-v2 {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
}

.footer-whatsapp-v2,
.footer-quote-v2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.25rem;
    padding: 0.8rem 1.15rem;
    border-radius: 10px;
    font-size: 0.86rem;
    font-weight: 800;
    white-space: nowrap;
}

.footer-whatsapp-v2 {
    gap: 0.65rem;
    background: #13a858;
    color: #fff;
}

.footer-whatsapp-v2 i {
    font-size: 1.15rem;
}

.footer-quote-v2 {
    gap: 0.6rem;
    border: 1px solid rgba(6, 43, 89, 0.18);
    color: var(--brand-strong);
}

.footer-layout-v2 {
    display: grid;
    grid-template-columns: minmax(240px, 1fr) minmax(240px, 1fr) minmax(290px, 1.08fr);
    align-items: start;
    gap: clamp(2.5rem, 6vw, 6rem);
    width: min(100%, 1120px);
    margin: 0 auto;
}

.footer-nav-v2 > div,
.footer-categories-v2 > div {
    display: grid;
    gap: 0.82rem;
}

.footer-nav-v2 a,
.footer-categories-v2 a {
    position: relative;
    padding-left: 1rem;
    color: rgba(255,255,255,.74);
    font-size: 0.88rem;
    font-weight: 600;
    transition: color 180ms ease, transform 180ms ease;
}

.footer-nav-v2 a::before,
.footer-categories-v2 a::before {
    position: absolute;
    top: 0.58em;
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--color-secondary);
    content: '';
}

.footer-nav-v2 a:hover,
.footer-nav-v2 a:focus-visible,
.footer-categories-v2 a:hover,
.footer-categories-v2 a:focus-visible {
    color: #fff;
    transform: translateX(3px);
}

.footer-contact-v2 {
    display: grid;
    gap: 0.9rem;
}

.footer-contact-v2 > a,
.footer-contact-v2 > div {
    display: grid;
    grid-template-columns: 2.1rem minmax(0, 1fr);
    align-items: start;
    gap: 0.75rem;
    color: rgba(255,255,255,.75);
    font-size: 0.88rem;
    line-height: 1.5;
}

.footer-contact-v2 i {
    display: grid;
    width: 2.1rem;
    height: 2.1rem;
    place-items: center;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    color: #ff5965;
}

.footer-bottombar {
    background: rgba(1, 12, 26, 0.64);
    border-top: 1px solid rgba(255,255,255,.09);
}

.footer-bottom-v2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 64px;
    padding-right: calc(var(--gutter) + 4.75rem);
}

.footer-bottom-v2 p {
    margin: 0;
    color: rgba(255,255,255,.6);
    font-size: 0.78rem;
}

.footer-datadex-v2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: transparent;
}

.footer-datadex-v2 img {
    display: block;
    width: 108px;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

@media (max-width: 900px) {
    .footer-cta-v2,
    .footer-layout-v2 {
        grid-template-columns: 1fr;
    }

    .footer-cta-actions-v2 {
        justify-content: flex-start;
    }

    .footer-layout-v2 {
        width: min(100%, 620px);
        gap: 2.25rem;
    }

    .footer-brandline-v2 {
        width: min(100%, 620px);
    }
}

@media (max-width: 600px) {
    .page-hero-panel {
        min-height: 220px;
    }

    .page-hero-panel::before {
        inset: 0 0 0 42%;
    }

    .page-hero-panel::after {
        right: 0;
    }

    .page-hero-print-motif {
        right: -7rem;
        width: 255px;
        height: 138px;
        opacity: 0.32;
    }

    .hero-command-slide-one {
        object-position: 64% center;
    }

    .hero-command-slide-two {
        object-position: 70% center;
    }

    .footer-main.footer-main-v2 {
        padding-inline: 1rem;
    }

    .footer-cta-v2 {
        padding: 1.5rem;
        transform: translateY(-32px);
    }

    .footer-cta-actions-v2 {
        align-items: stretch;
        flex-direction: column;
    }

    .footer-whatsapp-v2,
    .footer-quote-v2 {
        width: 100%;
    }

    .footer-brandline-v2 {
        align-items: center;
        flex-direction: column;
        margin-top: -0.25rem;
        text-align: center;
    }

    .footer-brandline-v2 p {
        text-align: center;
    }

    .footer-nav-v2,
    .footer-categories-v2 {
        text-align: center;
    }

    .footer-nav-v2 a,
    .footer-categories-v2 a {
        width: fit-content;
        margin-inline: auto;
    }

    .footer-contact-v2 {
        width: min(100%, 330px);
        margin-inline: auto;
    }

    .footer-kicker-v2 {
        text-align: center;
    }

    .footer-bottom-v2 {
        justify-content: center;
        flex-direction: column;
        padding: 1rem 1rem 5.5rem;
        text-align: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-command-slide {
        animation: none;
    }

    .hero-command-slide-one {
        opacity: 1;
        transform: none;
    }

    .hero-command-slide-two,
    .hero-diagonal-light {
        display: none;
    }

    .page-hero-print-paper,
    .page-hero-print-paper i {
        animation: none;
    }
}

/* Garantiza que el footer de referencia prevalezca sobre estilos heredados. */
.site-footer {
    overflow: hidden;
    margin-top: clamp(5rem, 8vw, 8rem);
    background:
        linear-gradient(135deg, rgba(255,255,255,.72), transparent 27%) 0 0 / 450px 210px no-repeat,
        linear-gradient(180deg, #edf1f6 0 210px, transparent 210px),
        radial-gradient(circle at 76% 42%, rgba(21, 76, 137, .2), transparent 32%),
        linear-gradient(135deg, rgba(255,255,255,.025) 25%, transparent 25%) 0 0 / 28px 28px,
        #061f3e;
}

.footer-main.footer-main-v2 {
    padding: 54px var(--gutter) clamp(2.5rem, 4vw, 4rem);
}

.footer-cta-v2 {
    grid-template-columns: minmax(0, 1.05fr) minmax(520px, 1.15fr);
    width: min(100%, 1240px);
    min-height: 170px;
    gap: clamp(2rem, 4vw, 4rem);
    margin: 0 auto;
    padding: clamp(1.8rem, 3vw, 2.8rem) clamp(2rem, 4.5vw, 4.5rem);
    border: 0;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 20px 50px rgba(2, 20, 42, 0.16);
    transform: none;
}

.footer-cta-v2 p {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: .55rem;
    color: #ed0b26;
    font-size: clamp(.72rem, 1vw, .88rem);
    letter-spacing: .04em;
}

.footer-cta-v2 h2 {
    max-width: 17ch;
    color: #071f3e;
    font-size: clamp(2rem, 3.25vw, 3.35rem);
    line-height: 1.02;
}

.footer-cta-v2 h2 span {
    display: block;
    color: #e70b25;
}

.footer-cta-actions-v2 {
    display: grid;
    grid-template-columns: minmax(250px, 1.16fr) minmax(220px, .94fr);
    gap: clamp(1rem, 2vw, 1.8rem);
    padding-left: clamp(2rem, 4vw, 4rem);
    border-left: 1px solid rgba(6, 37, 72, .45);
}

.footer-whatsapp-v2,
.footer-quote-v2 {
    min-height: 64px;
    padding: .9rem 1.4rem;
    border-radius: 14px;
    font-size: clamp(.86rem, 1.25vw, 1rem);
}

.footer-whatsapp-v2 {
    gap: .85rem;
    background: linear-gradient(135deg, #ff0428, #df001f);
    box-shadow: 0 18px 35px rgba(226, 0, 32, .2);
}

.footer-whatsapp-v2 i { font-size: 1.75rem; }
.footer-whatsapp-v2 b { margin-left: auto; font-size: 1.35rem; }

.footer-quote-v2 {
    justify-content: space-between;
    border: 1px solid #617695;
    background: #fff;
}

.footer-brandline-v2 {
    grid-template-columns: minmax(330px, .85fr) minmax(0, 1.35fr);
    gap: clamp(2rem, 5vw, 4.75rem);
    width: min(100%, 1130px);
    margin: clamp(2.6rem, 4vw, 3.6rem) auto clamp(2.4rem, 4vw, 3.5rem);
    padding: 0;
    border: 0;
}

.footer-brandline-v2 img { width: min(100%, 365px); margin: 0; }

.footer-brandline-v2 p {
    max-width: none;
    min-height: 76px;
    display: flex;
    align-items: center;
    padding-left: clamp(2rem, 5vw, 4.5rem);
    border-left: 1px solid rgba(146, 180, 220, .56);
    color: rgba(255,255,255,.88);
    font-size: clamp(1rem, 1.7vw, 1.22rem);
    text-align: left;
}

.footer-layout-v2 {
    grid-template-columns: minmax(250px, .95fr) minmax(300px, 1.05fr) minmax(310px, 1.08fr);
    gap: clamp(3rem, 7vw, 7rem);
    width: min(100%, 1130px);
    margin: 0 auto;
}

.footer-column-heading-v2,
.footer-contact-v2 > .footer-column-heading-v2 {
    display: flex;
    grid-template-columns: none;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.footer-column-heading-v2 > span {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    background: linear-gradient(145deg, #ff1734, #e30022);
}

.footer-kicker-v2,
.footer-column-heading-v2 .footer-kicker-v2 {
    margin: 0;
    color: #fff;
    font-size: .95rem;
    letter-spacing: .025em;
}

.footer-nav-v2 > div:not(.footer-column-heading-v2),
.footer-categories-v2 > div:not(.footer-column-heading-v2) {
    display: grid;
    grid-template-columns: 1fr;
    gap: .65rem;
}

.footer-nav-v2 a,
.footer-categories-v2 a {
    padding-left: 1.7rem;
    color: rgba(255,255,255,.88);
    font-size: .91rem;
    font-weight: 500;
}

.footer-nav-v2 a::before,
.footer-categories-v2 a::before {
    top: .08em;
    left: .15rem;
    width: auto;
    height: auto;
    border-radius: 0;
    background: transparent;
    color: #ff0b2c;
    content: "›";
    font-size: 1.5rem;
    line-height: .7;
}

.footer-contact-v2 { gap: .65rem; }

.footer-contact-v2 > a,
.footer-contact-v2 > div:not(.footer-column-heading-v2) {
    grid-template-columns: 46px minmax(0, 1fr);
    align-items: center;
    gap: 1rem;
    color: rgba(255,255,255,.88);
    font-size: .91rem;
}

.footer-contact-v2 > a > i,
.footer-contact-v2 > div:not(.footer-column-heading-v2) > i {
    width: 46px;
    height: 46px;
    background: linear-gradient(145deg, #ff1734, #e30022);
    color: #fff;
}

.footer-bottombar { background: transparent; }

.footer-bottom-v2 {
    width: min(100%, 1200px);
    min-height: 92px;
    padding: 0 var(--gutter);
}

.footer-bottom-v2 p { color: rgba(255,255,255,.74); }
.footer-datadex-v2 img { width: 100px; }

@media (max-width: 1050px) {
    .footer-cta-v2 { grid-template-columns: 1fr; gap: 1.7rem; }
    .footer-cta-actions-v2 {
        padding-top: 1.5rem;
        padding-left: 0;
        border-top: 1px solid rgba(6,37,72,.2);
        border-left: 0;
    }
    .footer-layout-v2 { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2.2rem; }
}

@media (max-width: 760px) {
    .site-footer {
        background:
            linear-gradient(180deg, #edf1f6 0 400px, transparent 400px),
            linear-gradient(135deg, rgba(255,255,255,.025) 25%, transparent 25%) 0 0 / 28px 28px,
            #061f3e;
    }
    .footer-main.footer-main-v2 { padding: 34px 1rem 2.5rem; }
    .footer-cta-v2 {
        min-height: 0;
        gap: 1.35rem;
        padding: 1.6rem;
        border-radius: 18px;
        transform: none;
    }
    .footer-cta-v2 h2 { font-size: clamp(1.9rem, 9vw, 2.5rem); }
    .footer-cta-actions-v2 { grid-template-columns: 1fr; }
    .footer-whatsapp-v2,
    .footer-quote-v2 { width: 100%; min-height: 58px; }
    .footer-brandline-v2 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2.5rem;
        text-align: center;
    }
    .footer-brandline-v2 img { width: min(88%, 330px); margin-inline: auto; }
    .footer-brandline-v2 p {
        display: block;
        min-height: 0;
        padding: 1.4rem 0 0;
        border-top: 1px solid rgba(146,180,220,.42);
        border-left: 0;
        text-align: center;
    }
    .footer-layout-v2 { grid-template-columns: 1fr; width: min(100%, 350px); gap: 2.5rem; }
    .footer-nav-v2,
    .footer-categories-v2 { text-align: left; }
    .footer-nav-v2 a,
    .footer-categories-v2 a { width: auto; margin-inline: 0; }
    .footer-kicker-v2,
    .footer-column-heading-v2 .footer-kicker-v2 { text-align: left; }
    .footer-contact-v2 { width: 100%; margin-inline: 0; }
    .footer-bottom-v2 {
        flex-direction: column;
        gap: 1.4rem;
        min-height: 0;
        padding: 1.5rem 1rem 6rem;
        text-align: center;
    }
}

@media (min-width: 1051px) {
    .footer-main.footer-main-v2.container {
        max-width: none;
        padding-bottom: 1.75rem;
    }

    .footer-cta-v2 {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.15fr);
        width: min(100%, 1600px);
        padding-block: 1.7rem;
    }

    .footer-cta-v2 h2 {
        max-width: 20ch;
    }

    .footer-brandline-v2,
    .footer-layout-v2 {
        width: min(100%, 1440px);
    }

    .footer-brandline-v2 {
        grid-template-columns: 440px minmax(0, 1fr);
        margin-top: 2rem;
        margin-bottom: 2rem;
    }

    .footer-brandline-v2 img {
        width: min(100%, 420px);
    }

    .footer-bottom-v2 {
        width: min(100%, 1440px);
        max-width: 1440px;
    }

    .footer-nav-v2 > div:not(.footer-column-heading-v2),
    .footer-categories-v2 > div:not(.footer-column-heading-v2),
    .footer-contact-v2 {
        gap: .52rem;
    }
}

/* Ajustes fieles a la muestra: fondo liso, títulos alineados y divisor contenido. */
.site-footer {
    background-color: #061f3e;
    background-image:
        linear-gradient(180deg, #eef1f5 0, #eef1f5 210px, transparent 210px),
        radial-gradient(ellipse at 72% 56%, #0d315c 0%, #082749 34%, #061f3e 72%);
    background-position: 0 0;
    background-size: 100% 100%;
}

.footer-cta-v2 {
    background: #fff;
}

.footer-nav-v2 > .footer-column-heading-v2,
.footer-categories-v2 > .footer-column-heading-v2,
.footer-contact-v2 > .footer-column-heading-v2 {
    display: flex;
    grid-template-columns: none;
    align-items: center;
    width: 100%;
    min-height: 46px;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.footer-nav-v2 > .footer-column-heading-v2 .footer-kicker-v2,
.footer-categories-v2 > .footer-column-heading-v2 .footer-kicker-v2,
.footer-contact-v2 > .footer-column-heading-v2 .footer-kicker-v2 {
    width: auto;
    margin: 0;
    line-height: 1.2;
}

.footer-bottombar {
    border-top: 0;
}

.footer-bottom-v2 {
    position: relative;
    border-top: 1px solid rgba(153, 184, 220, 0.3);
}

@media (max-width: 760px) {
    .site-footer {
        background-image:
            linear-gradient(180deg, #eef1f5 0, #eef1f5 320px, transparent 320px),
            radial-gradient(ellipse at 72% 62%, #0d315c 0%, #082749 34%, #061f3e 72%);
    }
}

/* Escala contenida para armonizar el footer con el ancho general del sitio. */
@media (min-width: 1051px) {
    .footer-cta-v2 {
        grid-template-columns: minmax(470px, .95fr) minmax(0, 1.05fr);
        width: min(100%, 1280px);
        gap: 2.25rem;
        padding-inline: 3rem;
    }

    .footer-cta-v2 h2 {
        max-width: 20ch;
        font-size: clamp(2rem, 2.8vw, 2.9rem);
    }

    .footer-cta-actions-v2 {
        padding-left: 2.5rem;
    }

    .footer-brandline-v2 {
        grid-template-columns: 300px minmax(0, 1fr);
        width: min(100%, 960px);
        gap: 2.5rem;
        justify-content: center;
    }

    .footer-brandline-v2 img {
        width: 290px;
        justify-self: center;
    }

    .footer-brandline-v2 p {
        padding-left: 2.5rem;
    }

    .footer-layout-v2 {
        width: min(100%, 1120px);
        gap: clamp(2.5rem, 5vw, 5rem);
    }

    .footer-bottom-v2 {
        width: min(100%, 1200px);
        max-width: 1200px;
    }
}

@media (max-width: 1050px) {
    .footer-brandline-v2 img {
        width: min(100%, 290px);
        margin-inline: auto;
    }
}

@media (max-width: 760px) {
    .footer-brandline-v2 img {
        width: min(82%, 260px);
    }
}

/* Transición superior limpia: del blanco al gris, sin la pieza roja inclinada. */
.site-footer::before {
    display: none;
}

.site-footer {
    background-image:
        linear-gradient(180deg, #ffffff 0, #f7f9fb 80px, #e4e9ef 210px, transparent 210px),
        radial-gradient(ellipse at 72% 56%, #0d315c 0%, #082749 34%, #061f3e 72%);
}

@media (max-width: 760px) {
    .site-footer {
        background-image:
            linear-gradient(180deg, #ffffff 0, #f7f9fb 110px, #e4e9ef 320px, transparent 320px),
            radial-gradient(ellipse at 72% 62%, #0d315c 0%, #082749 34%, #061f3e 72%);
    }
}

/* Acerca el cierre de contenido al CTA del footer. */
.site-footer {
    margin-top: clamp(1rem, 1.75vw, 1.5rem);
}

main > .sector-section:last-child {
    padding-bottom: 1.5rem;
}

.footer-main.footer-main-v2 {
    padding-top: 36px;
}

@media (max-width: 760px) {
    .footer-main.footer-main-v2 {
        padding-top: 24px;
    }
}

/* El CTA cruza la transición: 50% sobre blanco y 50% sobre azul. */
.site-footer {
    background-image:
        linear-gradient(180deg, #ffffff 0, #f7f9fb 48px, #e4e9ef 121px, transparent 121px),
        radial-gradient(ellipse at 72% 56%, #0d315c 0%, #082749 34%, #061f3e 72%);
}

@media (max-width: 760px) {
    .site-footer {
        background-image:
            linear-gradient(180deg, #ffffff 0, #f7f9fb 76px, #e4e9ef 205px, transparent 205px),
            radial-gradient(ellipse at 72% 62%, #0d315c 0%, #082749 34%, #061f3e 72%);
    }
}

/* Microinteracciones del CTA del footer. */
.footer-whatsapp-v2,
.footer-quote-v2 {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.footer-whatsapp-v2::after,
.footer-quote-v2::after {
    position: absolute;
    top: -55%;
    bottom: -55%;
    left: -28%;
    z-index: -1;
    width: 18%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.48), transparent);
    filter: blur(2px);
    transform: skewX(-20deg);
    content: "";
    pointer-events: none;
}

.footer-quote-v2::after {
    background: linear-gradient(90deg, transparent, rgba(20, 72, 130, .12), transparent);
}

.footer-whatsapp-v2:hover,
.footer-whatsapp-v2:focus-visible,
.footer-quote-v2:hover,
.footer-quote-v2:focus-visible {
    transform: translateY(-3px);
}

.footer-whatsapp-v2:hover,
.footer-whatsapp-v2:focus-visible {
    box-shadow: 0 22px 38px rgba(226, 0, 32, .3);
}

.footer-quote-v2:hover,
.footer-quote-v2:focus-visible {
    border-color: #e30a28;
    box-shadow: 0 16px 30px rgba(6, 43, 89, .12);
}

.footer-whatsapp-v2:hover::after,
.footer-whatsapp-v2:focus-visible::after,
.footer-quote-v2:hover::after,
.footer-quote-v2:focus-visible::after {
    animation: footerButtonSweep 760ms cubic-bezier(.22,.61,.36,1);
}

.footer-whatsapp-v2 b,
.footer-quote-v2 > span,
.footer-whatsapp-v2 i {
    transition: transform 220ms ease;
}

.footer-whatsapp-v2:hover b,
.footer-whatsapp-v2:focus-visible b,
.footer-quote-v2:hover > span,
.footer-quote-v2:focus-visible > span {
    transform: translateX(5px);
}

.footer-whatsapp-v2:hover i,
.footer-whatsapp-v2:focus-visible i {
    transform: scale(1.08) rotate(-5deg);
}

@keyframes footerButtonSweep {
    from { left: -28%; }
    to { left: 118%; }
}

/* El trazo rojo recorre todo el perímetro de las tarjetas de producto. */
@property --catalog-border-angle {
    syntax: "<angle>";
    inherits: false;
    initial-value: 0deg;
}

.product-card:not(.featured-product-card)::after {
    position: absolute;
    inset: 0;
    z-index: 6;
    width: auto;
    height: auto;
    padding: 2px;
    border-radius: inherit;
    background: conic-gradient(
        from var(--catalog-border-angle),
        transparent 0deg,
        transparent 260deg,
        rgba(255, 18, 47, .22) 282deg,
        #f0082a 316deg,
        #ff6a78 338deg,
        transparent 360deg
    );
    opacity: 0;
    transform: none;
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    transition: opacity 180ms ease;
    content: "";
    pointer-events: none;
}

.product-card:not(.featured-product-card):hover::after,
.product-card:not(.featured-product-card):focus-within::after {
    opacity: 1;
    transform: none;
    animation: catalogBorderOrbit 1.35s linear infinite;
}

@keyframes catalogBorderOrbit {
    to { --catalog-border-angle: 360deg; }
}

@media (prefers-reduced-motion: reduce) {
    .footer-whatsapp-v2:hover::after,
    .footer-whatsapp-v2:focus-visible::after,
    .footer-quote-v2:hover::after,
    .footer-quote-v2:focus-visible::after {
        animation: none;
    }

    .product-card:not(.featured-product-card):hover::after,
    .product-card:not(.featured-product-card):focus-within::after {
        background: #f0082a;
        animation: none;
    }
}

/* Precedencia final para la altura compacta y los controles del hero. */
.hero-command .hero-command-grid {
    min-height: clamp(480px, 38vw, 560px);
    padding-block: clamp(3.5rem, 6vw, 5rem);
}

@media (max-width: 760px) {
    .hero-command .hero-command-grid {
        min-height: 520px;
        padding: 3.5rem 0 5.5rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-command.hero-slider-ready .hero-command-slide,
    .hero-command.hero-slider-ready .hero-command-slide-two {
        display: block;
        animation: none;
        transition: none;
    }
}

/* Ajuste final: el hero conserva presencia sin dominar la primera pantalla. */
.hero-command .hero-command-grid {
    min-height: 520px;
    padding-block: 2.75rem 4.5rem;
}

.hero-command .hero-command-copy {
    width: min(100%, 760px);
}

.hero-command .hero-command-copy::before {
    margin-bottom: .85rem;
}

.hero-command .hero-command-copy h1 {
    max-width: 13ch;
    font-size: clamp(2.75rem, 4.5vw, 4.4rem);
    line-height: .95;
}

.hero-command .hero-command-copy .lead {
    margin-top: 1rem;
    font-size: clamp(.95rem, 1.2vw, 1.08rem);
}

.hero-command .hero-actions {
    margin-top: 1.25rem;
}

@media (max-width: 760px) {
    .hero-command .hero-command-grid {
        min-height: 500px;
        padding: 2.75rem 0 5rem;
    }

    .hero-command .hero-command-copy {
        width: 100%;
        padding-inline: 1rem;
    }

    .hero-command .hero-command-copy h1 {
        max-width: 11ch;
        font-size: clamp(2.15rem, 10.5vw, 2.85rem);
    }

    .hero-command .hero-command-copy .lead {
        margin-top: .9rem;
        font-size: .95rem;
    }

    .hero-command .hero-actions {
        margin-top: 1.1rem;
    }
}


