/* ============================================================
   Website Home — home.css
   Design system: light, blue-indigo accent, agency aesthetic
   Reference: resources/newformat.png
   Font: Inter (300–700)
   ============================================================ */

:root {
    /* === Brand & accent (W&H palette from paleta-colores.md) === */
    --wh-cyan:         #09C5F7;
    --wh-blue:         #148DE9;
    --wh-indigo:       #2244D6;
    --wh-gray-100:     #DADADA;
    --wh-gray-500:     #808080;
    --wh-black:        #212121;

    /* Semantic shortcuts */
    --w-accent:        var(--wh-blue);     /* primary: corporate blue */
    --w-accent-dark:   var(--wh-indigo);   /* hover / solid buttons */
    --w-accent-soft:   var(--wh-cyan);     /* highlights, gradient end */
    --w-blue-soft:     rgba(34, 68, 214, 0.08);  /* indigo tint backgrounds */
    --w-blue-line:     rgba(34, 68, 214, 0.18);  /* hover borders */
    --w-gradient:      linear-gradient(135deg, var(--wh-cyan) 0%, var(--wh-blue) 50%, var(--wh-indigo) 100%);

    /* === Surface (light hierarchy) === */
    --w-canvas:        #ffffff;
    --w-surface:       #f9fafb;          /* alt sections (cool light gray) */
    --w-card:          #ffffff;
    --w-elevated:      #ffffff;
    --w-muted-bg:      #f3f4f6;

    /* === Hairlines & borders === */
    --w-hairline:      var(--wh-gray-100);
    --w-hairline-strong: #c6c6c6;

    /* === Text === */
    --w-ink:           var(--wh-black);
    --w-body:          var(--wh-black);
    --w-body-strong:   var(--wh-black);
    --w-muted:         var(--wh-gray-500);

    /* === Spacing === */
    --w-xxs:    4px;
    --w-xs:     8px;
    --w-sm:     14px;
    --w-md:     20px;
    --w-lg:     28px;
    --w-xl:     48px;
    --w-xxl:    72px;
    --w-section: 96px;
    --w-section-sm: 72px;

    /* === Border radius === */
    --w-r-xs:   4px;
    --w-r-sm:   8px;
    --w-r-md:   14px;
    --w-r-lg:   20px;
    --w-r-xl:   28px;
    --w-r-full: 9999px;

    /* === Shadows (subtle, premium) === */
    --w-shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.04);
    --w-shadow-sm: 0 2px 6px rgba(15, 23, 42, 0.05), 0 1px 2px rgba(15, 23, 42, 0.04);
    --w-shadow-md: 0 8px 24px rgba(15, 23, 42, 0.06), 0 2px 6px rgba(15, 23, 42, 0.04);
    --w-shadow-lg: 0 18px 40px rgba(15, 23, 42, 0.08), 0 4px 12px rgba(15, 23, 42, 0.05);
    --w-shadow-blue: 0 10px 28px rgba(34, 68, 214, 0.18);
    --w-shadow-cyan: 0 10px 28px rgba(9, 197, 247, 0.22);

    /* === Motion === */
    --w-ease: cubic-bezier(0.4, 0, 0.2, 1);
    --w-dur:  0.22s;

    /* === Typography === */
    --w-font: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    /* Letter-spacing */
    --w-ls-eyebrow: 0.5px;

    /* === Layout === */
    --w-max:    1200px;
    --w-nav-h:  72px;
}

/* === Reset / Base === */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--w-font);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: var(--w-body);
    background: var(--w-canvas);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

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

h1, h2, h3, h4, h5, h6 {
    color: var(--w-ink);
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    letter-spacing: -0.018em;
}
h1 { font-size: clamp(2.25rem, 4vw + 1rem, 3.75rem); letter-spacing: -0.025em; }
h2 { font-size: clamp(1.75rem, 2.4vw + 1rem, 2.75rem); letter-spacing: -0.022em; }
h3 { font-size: clamp(1.25rem, 1vw + 0.75rem, 1.5rem); line-height: 1.3; }
h4 { font-size: 1.125rem; line-height: 1.4; }
h5, h6 { font-size: 0.875rem; text-transform: uppercase; letter-spacing: var(--w-ls-eyebrow); }

p { margin: 0 0 1rem 0; }
p:last-child { margin-bottom: 0; }

a {
    color: var(--w-accent);
    text-decoration: none;
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}
a:hover { color: var(--w-accent-dark); }

/* === Skip-link === */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--w-ink);
    color: #fff;
    padding: 0.75rem 1.25rem;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    z-index: 1060;
    border-radius: 0 0 var(--w-r-sm) 0;
    transition: top 0.2s ease;
}
.skip-link:focus,
.skip-link:focus-visible {
    top: 0;
    outline: 2px solid var(--w-accent);
    outline-offset: 2px;
}

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

/* ============================================================
   Top Nav (light, centered, with logo + links + pill CTA)
   ============================================================ */
.w-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid transparent;
    height: var(--w-nav-h);
    z-index: 1040;
    transition: border-color var(--w-dur) var(--w-ease), background var(--w-dur) var(--w-ease);
}
.w-nav.is-stuck {
    background: rgba(255, 255, 255, 0.94);
    border-bottom-color: var(--w-hairline);
    box-shadow: 0 2px 16px rgba(15, 23, 42, 0.04);
}
.w-nav__inner {
    max-width: var(--w-max);
    height: 100%;
    margin: 0 auto;
    padding: 0 var(--w-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--w-lg);
}
.w-nav__brand {
    display: flex;
    align-items: center;
    gap: var(--w-sm);
    color: var(--w-ink);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.0625rem;
    letter-spacing: -0.01em;
}
.w-nav__brand:hover { color: var(--w-ink); }
.w-nav__logo-img {flex: 0 0 auto; display: block; }
.w-nav__menu {
    display: flex; align-items: center; gap: var(--w-lg);
    list-style: none; padding: 0; margin: 0;
}
.w-nav__link {
    color: var(--w-body);
    font-size: 0.9375rem;
    font-weight: 500;
    text-decoration: none;
    padding: var(--w-xs) 0;
    position: relative;
    transition: color 0.2s ease;
}
.w-nav__link:hover { color: var(--w-ink); }
.w-nav__link[aria-current="page"] { color: var(--w-ink); }
.w-nav__link[aria-current="page"]::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: -4px;
    height: 2px;
    background: var(--w-accent);
    border-radius: 2px;
}
.w-nav__cta {
    display: inline-flex;
    align-items: center;
    gap: var(--w-xs);
    background: var(--w-gradient);
    color: #fff;
    padding: 0.625rem 1.25rem;
    border-radius: var(--w-r-full);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 14px rgba(34, 68, 214, 0.35);
}
.w-nav__cta:hover { background: var(--w-gradient); color: #fff; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(34, 68, 214, 0.45); }
.w-nav__cta i { font-size: 0.75rem; }

.w-nav__toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--w-hairline);
    color: var(--w-ink);
    width: 44px; height: 44px;
    cursor: pointer;
    border-radius: var(--w-r-sm);
    align-items: center; justify-content: center;
}
.w-nav__toggle:focus { outline: 2px solid var(--w-accent); outline-offset: 2px; }

/* === Top-nav dropdown (desktop, generated from tbl_nav) === */
.w-nav__item { position: relative; }
.w-nav__item .w-nav__link { display: inline-flex; align-items: center; gap: 4px; }
.w-nav__caret {
    font-size: 0.7rem;
    transition: transform var(--w-dur) var(--w-ease);
}
.w-nav__item.has-sub.is-open > .w-nav__link .w-nav__caret,
.w-nav__item:hover > .w-nav__link .w-nav__caret { transform: rotate(180deg); }

.w-nav__submenu {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    min-width: 220px;
    list-style: none;
    padding: 8px;
    margin: 0;
    background: var(--w-elevated);
    border: 1px solid var(--w-hairline);
    border-radius: var(--w-r-md);
    box-shadow: var(--w-shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity var(--w-dur) var(--w-ease),
                transform var(--w-dur) var(--w-ease),
                visibility var(--w-dur) var(--w-ease);
    z-index: 1050;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.w-nav__item.has-sub.is-open > .w-nav__submenu,
.w-nav__item.has-sub:hover > .w-nav__submenu,
.w-nav__item.has-sub:focus-within > .w-nav__submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.w-nav__submenu .w-nav__link {
    display: block;
    width: 100%;
    padding: 8px 12px;
    border-radius: var(--w-r-sm);
    font-size: 0.9rem;
    color: var(--w-body);
    text-decoration: none;
    transition: background var(--w-dur) var(--w-ease), color var(--w-dur) var(--w-ease);
}
.w-nav__submenu .w-nav__link:hover { background: var(--w-blue-soft); color: var(--w-ink); }

@media (max-width: 1023.98px) {
    .w-nav__menu, .w-nav__cta { display: none; }
    .w-nav__toggle { display: inline-flex; }
    .w-nav__submenu { display: none; }
}

/* === Mobile offcanvas (light theme) === */
.w-offcanvas {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: 100%;
    max-width: 360px;
    background: var(--w-canvas);
    color: var(--w-ink);
    border-left: 1px solid var(--w-hairline);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1055;
    display: flex; flex-direction: column;
    box-shadow: -10px 0 40px rgba(0,0,0,0.06);
}
.w-offcanvas.is-open { transform: translateX(0); }
.w-offcanvas__header {
    padding: var(--w-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--w-hairline);
}
.w-offcanvas__close {
    background: transparent;
    border: 1px solid var(--w-hairline);
    color: var(--w-ink);
    width: 36px; height: 36px;
    cursor: pointer;
    border-radius: var(--w-r-sm);
    display: inline-flex;
    align-items: center; justify-content: center;
}
.w-offcanvas__close:hover { border-color: var(--w-accent); color: var(--w-accent); }

.w-offcanvas__body {
    flex: 1 1 auto;
    padding: var(--w-lg);
    overflow-y: auto;
    display: flex; flex-direction: column;
}
.w-offcanvas__nav {
    list-style: none; padding: 0;
    margin: 0 0 var(--w-xl) 0;
    display: flex; flex-direction: column; gap: 2px;
}
.w-offcanvas__nav a {
    display: flex; align-items: center; gap: var(--w-sm);
    padding: var(--w-md) 0;
    color: var(--w-body);
    font-size: 1rem; font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid var(--w-hairline);
}
.w-offcanvas__nav a:hover,
.w-offcanvas__nav a[aria-current="page"] { color: var(--w-ink); }
.w-offcanvas__nav a i { color: var(--w-accent); font-size: 1.125rem; width: 24px; }

.w-offcanvas__cta { margin-top: auto; padding-top: var(--w-lg); }
.w-offcanvas__cta a {
    display: block; width: 100%; text-align: center;
    padding: 0.875rem;
    background: var(--w-accent);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--w-r-full);
}
.w-offcanvas__contact {
    margin-top: var(--w-lg);
    padding-top: var(--w-lg);
    border-top: 1px solid var(--w-hairline);
    color: var(--w-muted);
    font-size: 0.875rem;
    display: flex; flex-direction: column; gap: 6px;
}
.w-offcanvas__contact a { color: var(--w-muted); text-decoration: none; }
.w-offcanvas__contact a:hover { color: var(--w-ink); }
.w-offcanvas__contact i { color: var(--w-accent); margin-right: 6px; }

/* === Offcanvas submenu (collapsible, generated from tbl_nav) === */
.w-offcanvas__item {
    list-style: none;
}
.w-offcanvas__item > a {
    display: flex;
    align-items: center;
    gap: var(--w-sm);
    padding: var(--w-md) 0;
    padding-right: 44px;
    color: var(--w-body);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid var(--w-hairline);
    transition: color var(--w-dur) var(--w-ease);
}
.w-offcanvas__item:not(.has-sub) > a { padding-right: 0; }
.w-offcanvas__item > a > span { flex: 1 1 auto; }
.w-offcanvas__item > a > i { color: var(--w-accent); font-size: 1.125rem; width: 24px; }
.w-offcanvas__item > a:hover,
.w-offcanvas__item > a[aria-current="page"] { color: var(--w-ink); }

.w-offcanvas__item.has-sub { position: relative; }
.w-offcanvas__subtoggle {
    position: absolute;
    top: 6px;
    right: 0;
    width: 36px;
    height: 36px;
    background: transparent;
    border: 1px solid var(--w-hairline);
    border-radius: var(--w-r-sm);
    color: var(--w-ink);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--w-dur) var(--w-ease),
                border-color var(--w-dur) var(--w-ease),
                color var(--w-dur) var(--w-ease);
}
.w-offcanvas__subtoggle:hover { border-color: var(--w-accent); color: var(--w-accent); }
.w-offcanvas__item.has-sub.is-open > .w-offcanvas__subtoggle { transform: rotate(180deg); }

.w-offcanvas__subnav {
    list-style: none;
    padding: 4px 0 8px 28px;
    margin: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--w-hairline);
}
.w-offcanvas__item.has-sub.is-open > .w-offcanvas__subnav { display: flex; }
.w-offcanvas__subnav li > a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 0;
    color: var(--w-body);
    font-size: 0.95rem;
    text-decoration: none;
    transition: color var(--w-dur) var(--w-ease);
}
.w-offcanvas__subnav li > a::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--w-accent);
    border-radius: 50%;
    flex: 0 0 auto;
    opacity: 0.6;
}
.w-offcanvas__subnav li > a:hover { color: var(--w-ink); }

.w-offcanvas-backdrop {
    position: fixed; inset: 0;
    background: rgba(15, 23, 42, 0.45);
    z-index: 1050;
    opacity: 0; visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}
.w-offcanvas-backdrop.is-open { opacity: 1; visibility: visible; }

/* ============================================================
   Buttons (pill, indigo)
   ============================================================ */
.w-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--w-sm);
    height: 50px;
    padding: 0 1.625rem;
    background: var(--w-gradient);
    color: #fff;
    font-family: var(--w-font);
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1;
    border-radius: var(--w-r-full);
    border: 1px solid transparent;
    text-decoration: none;
    cursor: pointer;
    transition: transform var(--w-dur) var(--w-ease),
                box-shadow var(--w-dur) var(--w-ease),
                background var(--w-dur) var(--w-ease);
    white-space: nowrap;
    box-shadow: var(--w-shadow-blue);
    letter-spacing: 0.005em;
}
.w-btn:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(34, 68, 214, 0.4);
}
.w-btn:active { transform: translateY(0); }
.w-btn i { font-size: 0.875rem; transition: transform var(--w-dur) var(--w-ease); }
.w-btn:hover i { transform: translateX(2px); }
.w-btn--outline {
    background: transparent;
    color: var(--w-ink);
    border: 1px solid var(--w-hairline-strong);
    box-shadow: none;
}
.w-btn--outline:hover {
    background: var(--w-ink);
    color: #fff;
    border-color: var(--w-ink);
    box-shadow: 0 10px 24px rgba(33, 33, 33, 0.18);
}
.w-hero__cta .w-btn--outline {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.w-hero__cta .w-btn--outline:hover {
    background: #fff;
    color: var(--wh-indigo);
    border-color: #fff;
}
.w-btn--ghost {
    background: transparent;
    color: var(--w-accent);
    border-color: transparent;
    padding: 0 var(--w-md);
    height: auto;
    box-shadow: none;
}
.w-btn--ghost:hover { color: var(--w-accent-dark); background: var(--w-blue-soft); box-shadow: none; }
.w-btn--sm { height: 42px; padding: 0 1.25rem; font-size: 0.875rem; }

/* ============================================================
   Hero (image-background, centered copy, blue accent)
   Reference: "Web Design, SEO & Internet Marketing For Your Business"
   ============================================================ */
.w-hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    color: #fff;
    padding: calc(var(--w-nav-h) + var(--w-xxl)) var(--w-lg) var(--w-xxl);
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--w-gradient);
}
.w-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.14;
    mix-blend-mode: overlay;
}
.w-hero__bg img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.w-hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(9, 197, 247, 0.18), transparent 60%),
        linear-gradient(180deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.30) 100%);
}
.w-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--w-lg);
}
.w-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--w-sm);
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.55rem 1.1rem;
    border-radius: var(--w-r-full);
    font-size: 0.8125rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.w-hero__eyebrow i { color: var(--wh-cyan); font-size: 0.875rem; }
.w-hero__title {
    color: #fff;
    font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem);
    line-height: 1.05;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.028em;
    text-wrap: balance;
}
.w-hero__title em {
    font-style: normal;
    background: linear-gradient(135deg, #ffffff 0%, #cfe9ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.w-hero__lede {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.6;
    max-width: 640px;
    margin: 0;
    text-wrap: pretty;
}
.w-hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--w-md);
    justify-content: center;
    margin-top: var(--w-sm);
}
.w-hero__cta .w-btn--outline {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.w-hero__cta .w-btn--outline:hover {
    background: #fff;
    color: var(--wh-indigo);
    border-color: #fff;
}

/* === Trust strip (integrated inside the hero) === */
.w-hero__trust {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: var(--w-sm) var(--w-xl);
    margin-top: var(--w-lg);
    padding-top: var(--w-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    width: 100%;
    max-width: 760px;
}
.w-hero__trust-item {
    display: inline-flex;
    align-items: center;
    gap: var(--w-xs);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.005em;
}
.w-hero__trust-item i {
    color: var(--wh-cyan);
    font-size: 1rem;
    background: rgba(9, 197, 247, 0.15);
    width: 26px; height: 26px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1023.98px) {
    .w-hero { min-height: 100svh; padding: calc(var(--w-nav-h) + var(--w-xl)) var(--w-md) var(--w-xl); }
    .w-hero__inner { gap: var(--w-md); }
    .w-hero__trust { gap: var(--w-sm) var(--w-lg); }
}
@media (max-width: 575.98px) {
    .w-hero { min-height: 100svh; padding: calc(var(--w-nav-h) + var(--w-lg)) var(--w-sm) var(--w-lg); }
    .w-hero__trust { padding-top: var(--w-md); margin-top: var(--w-md); }
}

/* ============================================================
   Section scaffolding (light, generous padding)
   ============================================================ */
.w-section {
    padding: var(--w-section) var(--w-lg);
    background: var(--w-canvas);
    color: var(--w-body);
    position: relative;
}
.w-section--alt { background: var(--w-surface); }

.w-section__inner {
    max-width: var(--w-max);
    margin: 0 auto;
}

.w-section__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: var(--w-xl);
    margin-bottom: var(--w-xxl);
    flex-wrap: wrap;
}
.w-section__head--center {
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--w-xxl);
}
.w-section__head--left {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    margin-bottom: var(--w-xxl);
}
.w-section__head-text {min-width: 0; }
.w-section__action { flex: 0 0 auto; }

.w-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--w-xs);
    color: var(--w-accent);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: var(--w-sm);
}
.w-eyebrow::before {
    content: '';
    display: inline-block;
    width: 22px; height: 2px;
    background: var(--w-gradient);
    border-radius: 2px;
    margin-right: 2px;
}
.w-eyebrow--dot::before {
    content: '';
    display: inline-block;
    width: 8px; height: 8px;
    background: var(--w-gradient);
    border-radius: 50%;
}

.w-section__title {
    color: var(--w-ink);
    font-size: clamp(1.875rem, 2.4vw + 1rem, 2.875rem);
    line-height: 1.12;
    font-weight: 700;
    margin: 0 0 var(--w-md) 0;
    letter-spacing: -0.025em;
    max-width: 22ch;
}
.w-section__head--center .w-section__title { margin-left: auto; margin-right: auto; }
.w-section__title em {
    font-style: normal;
    background: var(--w-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.w-section__lede {
    color: var(--w-body);
    font-size: 1.0625rem;
    line-height: 1.65;
    max-width: 60ch;
    margin: 0;
}
.w-section__head--center .w-section__lede { margin-left: auto; margin-right: auto; }

@media (max-width: 1023.98px) {
    .w-section { padding: var(--w-xl) var(--w-md); }
    .w-section__head { gap: var(--w-md); margin-bottom: var(--w-xl); }
    .w-section__head--center,
    .w-section__head--left { margin-bottom: var(--w-xl); }
}

/* ============================================================
   About Company — image + copy + feature list + CTA
   Reference: "Websites that tell your brand's story"
   ============================================================ */
.w-about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--w-xxl);
    align-items: center;
}
.w-about__media {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: var(--w-r-lg);
    overflow: hidden;
    box-shadow: var(--w-shadow-lg);
    border: 1px solid var(--w-hairline);
}
.w-about__media img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s var(--w-ease);
}
.w-about__media:hover img { transform: scale(1.02); }
.w-about__media-arrow {
    position: absolute;
    right: -20px; top: 50%;
    transform: translateY(-50%);
    width: 56px; height: 56px;
    background: var(--w-gradient);
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center; justify-content: center;
    box-shadow: var(--w-shadow-blue);
    transition: transform var(--w-dur) var(--w-ease), box-shadow var(--w-dur) var(--w-ease);
}
.w-about__media-arrow:hover { transform: translateY(-50%) scale(1.06); box-shadow: 0 14px 30px rgba(34, 68, 214, 0.45); }
.w-about__media-arrow svg { width: 20px; height: 20px; }

.w-about__copy { display: flex; flex-direction: column; gap: var(--w-md); }
.w-about__features {
    list-style: none;
    padding: 0;
    margin: var(--w-md) 0 var(--w-lg) 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--w-md) var(--w-lg);
}
.w-about__feature {
    display: flex;
    align-items: center;
    gap: var(--w-sm);
    color: var(--w-ink);
    font-size: 0.9375rem;
    font-weight: 500;
    padding: 4px 0;
}
.w-about__feature i {
    color: var(--wh-cyan);
    font-size: 1.25rem;
    flex: 0 0 auto;
    background: var(--w-blue-soft);
    width: 30px; height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.w-about__cta { margin-top: var(--w-sm); align-self: flex-start; }

/* === About micro-trust row (subtle stats) === */
.w-about__trust {
    display: flex;
    flex-wrap: wrap;
    gap: var(--w-xl);
    padding-top: var(--w-lg);
    margin-top: var(--w-sm);
    border-top: 1px solid var(--w-hairline);
}
.w-about__trust-item { display: flex; flex-direction: column; gap: 2px; }
.w-about__trust-value {
    color: var(--w-ink);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.02em;
}
.w-about__trust-value em {
    font-style: normal;
    background: var(--w-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.w-about__trust-label {
    color: var(--w-muted);
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1.3;
    margin-top: 4px;
}

@media (max-width: 1023.98px) {
    .w-about__grid { grid-template-columns: 1fr; gap: var(--w-xl); }
    .w-about__media-arrow { right: 16px; }
    .w-about__features { grid-template-columns: 1fr; gap: var(--w-sm) var(--w-lg); }
    .w-about__trust { gap: var(--w-lg); }
}

/* ============================================================
   Stats (4 cells, light cards, blue numbers)
   ============================================================ */
.w-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--w-md);
}
.w-stats__cell {
    background: var(--w-card);
    border: 1px solid var(--w-hairline);
    border-radius: var(--w-r-md);
    padding: var(--w-lg);
    text-align: center;
}
.w-stats__value {
    background: var(--w-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: var(--w-xs);
}
.w-stats__label {
    color: var(--w-muted);
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.4;
}
@media (max-width: 1023.98px) { .w-stats { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575.98px)  { .w-stats { grid-template-columns: 1fr; } }

/* ============================================================
   Services (3x2 grid, photo + title + desc + arrow icon)
   Reference: "What we can offer today"
   ============================================================ */
.w-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--w-lg);
}
.w-service {
    background: var(--w-card);
    border: 1px solid var(--w-hairline);
    border-radius: var(--w-r-md);
    padding: var(--w-xl) var(--w-lg);
    display: flex;
    flex-direction: column;
    gap: var(--w-sm);
    transition: border-color var(--w-dur) var(--w-ease),
                box-shadow var(--w-dur) var(--w-ease),
                transform var(--w-dur) var(--w-ease);
    position: relative;
    overflow: hidden;
}
.w-service::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--w-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s var(--w-ease);
}
.w-service:hover {
    border-color: var(--w-blue-line);
    box-shadow: var(--w-shadow-md);
    transform: translateY(-3px);
}
.w-service:hover::before { transform: scaleX(1); }
.w-service__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--w-sm);
}
.w-service__title {
    color: var(--w-ink);
    font-size: 1.1875rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    letter-spacing: -0.01em;
}
.w-service__icon-btn {
    width: 38px; height: 38px;
    background: var(--w-gradient);
    color: #fff;
    border: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center; justify-content: center;
    flex: 0 0 auto;
    transition: transform var(--w-dur) var(--w-ease), box-shadow var(--w-dur) var(--w-ease);
    text-decoration: none;
    box-shadow: 0 3px 10px rgba(34, 68, 214, 0.25);
}
.w-service__icon-btn:hover { transform: scale(1.08) rotate(-8deg); box-shadow: 0 5px 14px rgba(34, 68, 214, 0.35); }
.w-service__icon-btn i { font-size: 0.9375rem; }
.w-service__desc {
    color: var(--w-body);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
    flex: 1 1 auto;
}
.w-service__media {
    aspect-ratio: 16 / 10;
    border-radius: var(--w-r-sm);
    overflow: hidden;
    background: var(--w-muted-bg);
    margin-top: var(--w-md);
    border: 1px solid var(--w-hairline);
}
.w-service__media img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s var(--w-ease);
}
.w-service:hover .w-service__media img { transform: scale(1.05); }

@media (max-width: 1023.98px) { .w-services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575.98px)  { .w-services-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Works (Our Works / portfolio preview — 2x2 imac mockups)
   Reference: "Excellence from concept to completion"
   ============================================================ */
.w-works-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--w-lg);
}
.w-work {
    background: var(--w-card);
    border: 1px solid var(--w-hairline);
    border-radius: var(--w-r-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform var(--w-dur) var(--w-ease),
                box-shadow var(--w-dur) var(--w-ease),
                border-color var(--w-dur) var(--w-ease);
}
.w-work:hover {
    transform: translateY(-3px);
    box-shadow: var(--w-shadow-lg);
    border-color: var(--w-blue-line);
}
.w-work__media {
    aspect-ratio: 16 / 10;
    background: var(--w-muted-bg);
    overflow: hidden;
    position: relative;
}
.w-work__media img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s var(--w-ease);
}
.w-work:hover .w-work__media img { transform: scale(1.04); }
.w-work__body {
    padding: var(--w-xl) var(--w-lg);
    display: flex;
    flex-direction: column;
    gap: var(--w-xs);
}
.w-work__title {
    color: var(--w-ink);
    font-size: 1.1875rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.01em;
}
.w-work__desc {
    color: var(--w-body);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 575.98px) { .w-works-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Why Choose Us (3 columns, icon + title + desc)
   Reference: "Why choose us?"
   ============================================================ */
.w-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--w-lg);
}
.w-why {
    background: var(--w-card);
    border: 1px solid var(--w-hairline);
    border-radius: var(--w-r-md);
    padding: var(--w-lg);
    display: flex;
    flex-direction: column;
    gap: var(--w-sm);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.w-why:hover { border-color: var(--w-blue-line); box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06); }
.w-why__icon {
    width: 56px; height: 56px;
    background: var(--w-blue-soft);
    color: var(--w-accent);
    border-radius: 50%;
    display: inline-flex;
    align-items: center; justify-content: center;
    margin-bottom: var(--w-sm);
}
.w-why__icon i { font-size: 1.5rem; }
.w-why__title {
    color: var(--w-ink);
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0;
}
.w-why__desc {
    color: var(--w-body);
    font-size: 0.9375rem;
    line-height: 1.55;
    margin: 0;
}
@media (max-width: 1023.98px) { .w-why-grid { grid-template-columns: 1fr; } }

/* === Mini CTA "Do you want t..." === */
.w-mini-cta {
    background: var(--w-card);
    border: 1px solid var(--w-hairline);
    border-radius: var(--w-r-md);
    padding: var(--w-xl) var(--w-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--w-lg);
    flex-wrap: wrap;
}
.w-mini-cta__copy { display: flex; align-items: center; gap: var(--w-md); flex: 1 1 320px; min-width: 0; }
.w-mini-cta__icon {
    width: 48px; height: 48px;
    background: var(--w-blue-soft);
    color: var(--w-accent);
    border-radius: 50%;
    display: inline-flex;
    align-items: center; justify-content: center;
    flex: 0 0 auto;
}
.w-mini-cta__icon i { font-size: 1.25rem; }
.w-mini-cta__title {
    color: var(--w-ink);
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}
.w-mini-cta__desc {
    color: var(--w-body);
    font-size: 0.9375rem;
    line-height: 1.5;
    margin: 4px 0 0 0;
}
.w-mini-cta__action { flex: 0 0 auto; }

/* ============================================================
   Partners & Supporters (logos grid)
   Reference: "100+ Partners & supporters"
   ============================================================ */
.w-partners-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--w-md);
}
.w-partner {
    background: var(--w-card);
    border: 1px solid var(--w-hairline);
    border-radius: var(--w-r-md);
    padding: var(--w-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--w-sm);
    color: var(--w-body);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
    min-height: 76px;
}
.w-partner:hover { border-color: var(--w-accent); color: var(--w-ink); transform: translateY(-2px); }
.w-partner i { color: var(--w-accent); font-size: 1.125rem; }
.w-partner__name { white-space: nowrap; }
@media (max-width: 1023.98px) { .w-partners-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 575.98px)  { .w-partners-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   Testimonials (3-up grid, light cards, 5-star rating)
   Reference: "Lo que dicen nuestros clientes"
   ============================================================ */
.w-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--w-lg);
}
.w-testimonial {
    background: var(--w-card);
    border: 1px solid var(--w-hairline);
    border-radius: var(--w-r-md);
    padding: var(--w-xl) var(--w-lg);
    display: flex;
    flex-direction: column;
    gap: var(--w-md);
    transition: transform 0.25s var(--w-ease), box-shadow 0.25s var(--w-ease), border-color 0.25s var(--w-ease);
    position: relative;
}
.w-testimonial::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px; height: 100%;
    background: var(--w-gradient);
    border-radius: var(--w-r-md) 0 0 var(--w-r-md);
    opacity: 0;
    transition: opacity var(--w-dur) var(--w-ease);
}
.w-testimonial:hover {
    transform: translateY(-4px);
    border-color: var(--w-blue-line);
    box-shadow: var(--w-shadow-md);
}
.w-testimonial:hover::before { opacity: 1; }
.w-testimonial__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--w-sm);
}
.w-testimonial__stars { color: #F5A524; font-size: 0.875rem; display: inline-flex; gap: 2px; letter-spacing: 0.04em; }
.w-testimonial__mark {
    color: var(--w-blue-line);
    font-size: 1.75rem;
    line-height: 1;
    opacity: 0.6;
}
.w-testimonial__quote { margin: 0; flex: 1 1 auto; }
.w-testimonial__quote p {
    color: var(--w-body);
    font-size: 0.9375rem;
    line-height: 1.65;
    margin: 0;
}
.w-testimonial__author {
    display: flex;
    align-items: center;
    gap: var(--w-sm);
    padding-top: var(--w-md);
    border-top: 1px solid var(--w-hairline);
}
.w-testimonial__avatar {
    width: 44px; height: 44px;
    background: var(--w-blue-soft);
    color: var(--w-accent);
    border-radius: 50%;
    display: inline-flex;
    align-items: center; justify-content: center;
    font-weight: 700;
    font-size: 0.9375rem;
    flex: 0 0 auto;
    overflow: hidden;
    border: 1px solid var(--w-hairline);
}
.w-testimonial__avatar img {
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.w-testimonial__avatar--img { background: transparent; }
.w-testimonial__name { color: var(--w-ink); font-weight: 600; font-size: 0.9375rem; line-height: 1.3; }
.w-testimonial__role { color: var(--w-muted); font-size: 0.8125rem; line-height: 1.3; }
.w-testimonial__meta {
    color: var(--w-muted);
    font-size: 0.8125rem;
    line-height: 1.4;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 2px;
}
.w-testimonial__source {
    color: var(--w-muted);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    padding: 2px 8px;
    border-radius: var(--w-r-full);
    background: var(--w-surface);
    border: 1px solid var(--w-hairline);
    font-size: 0.75rem;
    font-weight: 500;
    transition: color var(--w-dur) var(--w-ease), border-color var(--w-dur) var(--w-ease);
}
.w-testimonial__source:hover { color: var(--w-accent); border-color: var(--w-accent); }
.w-testimonial__source i { font-size: 0.8125rem; }

/* Aggregate rating badge (Google) in section head */
.w-aggregate {
    display: flex;
    align-items: center;
    gap: var(--w-md);
    background: var(--w-card);
    border: 1px solid var(--w-hairline);
    border-radius: var(--w-r-md);
    padding: var(--w-md) var(--w-lg);
    box-shadow: var(--w-shadow-sm);
}
.w-aggregate__score {
    color: var(--w-ink);
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.025em;
}
.w-aggregate__detail { display: flex; flex-direction: column; gap: 2px; }
.w-aggregate__stars { color: #F5A524; font-size: 0.8125rem; display: inline-flex; gap: 2px; letter-spacing: 0.03em; }
.w-aggregate__label { color: var(--w-muted); font-size: 0.8125rem; text-decoration: none; font-weight: 500; }
.w-aggregate__label:hover { color: var(--w-accent); text-decoration: underline; }

@media (max-width: 1023.98px) { .w-testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575.98px)  { .w-testimonials-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Blog Cards (3-up, image + date + title + desc)
   Reference: "Latest Blog & Articles"
   ============================================================ */
.w-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--w-lg);
}
.w-blog-card {
    background: var(--w-card);
    border: 1px solid var(--w-hairline);
    border-radius: var(--w-r-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform var(--w-dur) var(--w-ease),
                box-shadow var(--w-dur) var(--w-ease),
                border-color var(--w-dur) var(--w-ease);
}
.w-blog-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--w-shadow-md);
    border-color: var(--w-blue-line);
}
.w-blog-card__media {
    aspect-ratio: 16 / 10;
    background: var(--w-muted-bg);
    overflow: hidden;
    position: relative;
}
.w-blog-card__media img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s var(--w-ease);
}
.w-blog-card:hover .w-blog-card__media img { transform: scale(1.05); }
.w-blog-card__body {
    padding: var(--w-xl) var(--w-lg);
    display: flex; flex-direction: column;
    gap: var(--w-sm);
    flex: 1 1 auto;
}
.w-blog-card__date {
    color: var(--w-muted);
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.w-blog-card__date::before {
    content: '';
    display: inline-block;
    width: 4px; height: 4px;
    background: var(--w-accent);
    border-radius: 50%;
}
.w-blog-card__title {
    color: var(--w-ink);
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.35;
    margin: 0;
    letter-spacing: -0.01em;
}
.w-blog-card__title a { color: var(--w-ink); text-decoration: none; }
.w-blog-card__title a:hover { color: var(--wh-blue); }
.w-blog-card__desc {
    color: var(--w-body);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1 1 auto;
}
.w-blog-card__link {
    margin-top: var(--w-sm);
    color: var(--wh-blue);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding-top: var(--w-sm);
    border-top: 1px solid var(--w-hairline);
}
.w-blog-card__link:hover { color: var(--wh-indigo); }
.w-blog-card__link i { transition: transform var(--w-dur) var(--w-ease); }
.w-blog-card__link:hover i { transform: translateX(3px); }

@media (max-width: 1023.98px) { .w-blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575.98px)  { .w-blog-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Locations (3-up, light cards, pin icon)
   ============================================================ */
.w-locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--w-lg);
}
.w-loc {
    background: var(--w-card);
    border: 1px solid var(--w-hairline);
    border-radius: var(--w-r-md);
    padding: var(--w-xl) var(--w-lg);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: var(--w-sm);
    align-items: center;
    transition: border-color var(--w-dur) var(--w-ease),
                box-shadow var(--w-dur) var(--w-ease),
                transform var(--w-dur) var(--w-ease);
}
.w-loc:hover {
    border-color: var(--w-blue-line);
    box-shadow: var(--w-shadow-md);
    transform: translateY(-3px);
}
.w-loc__icon {
    width: 60px; height: 60px;
    background: var(--w-blue-soft);
    color: var(--w-accent);
    border-radius: 50%;
    display: inline-flex;
    align-items: center; justify-content: center;
    margin-bottom: var(--w-xs);
    border: 1px solid var(--w-hairline);
}
.w-loc__icon i { font-size: 1.5rem; }
.w-loc__name { color: var(--w-ink); font-size: 1.1875rem; font-weight: 700; margin: 0; letter-spacing: -0.01em; }
.w-loc__desc { color: var(--w-body); font-size: 0.9375rem; line-height: 1.6; margin: 0; }
@media (max-width: 1023.98px) { .w-locations-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Locations v2 — mapa interactivo (Perú / Chile / Bolivia)
   Geografía real Natural Earth 50m, rampa de marca índigo→cyan
   Layout:  MAPA sticky (izq) + LISTADO de países apilado (der)
   ============================================================ */

/* Stats inline (dentro de w-section__action) */
.w-locations-stats {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: var(--w-lg);
    flex-wrap: wrap;
}
.w-locations-stats li {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.05;
}
.w-locations-stats strong {
    font-size: clamp(1.5rem, 1.6vw + 0.6rem, 2rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    background: var(--w-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.w-locations-stats span {
    color: var(--w-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
    margin-top: 4px;
}

/* ── Layout 2 columnas: mapa sticky + listado de países ── */
.w-locations-layout {
    display: grid;
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: var(--w-xl);
    align-items: start;
}
.w-locations-mapcol {
    position: sticky;
    top: calc(var(--w-nav-h) + 16px);
}

/* ── Mapa ── */
.w-locations-map {
    /* Rampa de marca: índigo (PE) → azul (CL) → cyan (BO) → turquesa (VE) */
    --loc-pe: #2244D6;
    --loc-cl: #148DE9;
    --loc-bo: #0E9BD8;
    --loc-ve: #0DB5CE;
    --loc-pe-soft: #E8EBFC;
    --loc-cl-soft: #E2F0FD;
    --loc-bo-soft: #DFF4FC;
    --loc-ve-soft: #DFF7FB;
    background: var(--w-card);
    border: 1px solid var(--w-hairline);
    border-radius: var(--w-r-lg);
    padding: var(--w-sm);
    margin: 0;
    box-shadow: var(--w-shadow-sm);
    overflow: hidden;
    position: relative;
}
.w-locations-svg {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--w-r-md);
}

/* Textura de puntos del océano */
.w-map__ocean-dot { fill: #D9E4F0; }

/* Líneas de referencia (Ecuador, Trópico de Capricornio) */
.w-map__grid {
    stroke: #D3DEEA;
    stroke-width: 1;
    stroke-dasharray: 2 5;
    fill: none;
    pointer-events: none;
}
.w-map__grid-label {
    font-family: var(--w-font);
    font-size: 9.5px;
    font-weight: 500;
    fill: #9BA9BD;
    letter-spacing: 0.05em;
    pointer-events: none;
    user-select: none;
}

/* Países de contexto (sin cobertura) */
.w-map__land {
    fill: #EDF1F7;
    stroke: #ffffff;
    stroke-width: 1.5;
    stroke-linejoin: round;
}
.w-map__geo-label {
    font-family: var(--w-font);
    font-size: 10px;
    font-weight: 600;
    fill: #A3B0C2;
    letter-spacing: 0.14em;
    pointer-events: none;
    user-select: none;
}
.w-map__geo-label--ocean {
    fill: #A9BCD2;
    font-weight: 500;
    font-size: 9.5px;
    letter-spacing: 0.32em;
}

/* Países con cobertura (hover/foco → color pleno de marca) */
.w-map__fc { outline: none; }
.w-map__fc--pe { --fc: var(--loc-pe); --fc-soft: var(--loc-pe-soft); }
.w-map__fc--cl { --fc: var(--loc-cl); --fc-soft: var(--loc-cl-soft); }
.w-map__fc--bo { --fc: var(--loc-bo); --fc-soft: var(--loc-bo-soft); }
.w-map__fc--ve { --fc: var(--loc-ve); --fc-soft: var(--loc-ve-soft); }
.w-map__country {
    fill: var(--fc-soft);
    stroke: #ffffff;
    stroke-width: 2;
    stroke-linejoin: round;
    cursor: pointer;
    transition: fill var(--w-dur) var(--w-ease),
                stroke var(--w-dur) var(--w-ease);
    outline: none;
}
.w-map__label {
    font-family: var(--w-font);
    font-size: 15px;
    font-weight: 700;
    fill: var(--fc);
    letter-spacing: 0.16em;
    pointer-events: none;
    user-select: none;
    paint-order: stroke;
    stroke: rgba(255, 255, 255, 0.85);
    stroke-width: 3px;
    stroke-linejoin: round;
    transition: fill var(--w-dur) var(--w-ease),
                stroke var(--w-dur) var(--w-ease);
}
.w-map__fc:hover .w-map__country,
.w-map__fc:focus-within .w-map__country,
.w-map__fc.is-active .w-map__country { fill: var(--fc); }
.w-map__fc:hover .w-map__label,
.w-map__fc:focus-within .w-map__label,
.w-map__fc.is-active .w-map__label { fill: #ffffff; stroke: rgba(0, 0, 0, 0.18); }
.w-map__fc:focus-within .w-map__country { stroke: var(--w-ink); }

/* Marcadores de ciudad */
.w-map__city {
    --mc: var(--w-accent-dark);
    cursor: pointer;
    outline: none;
    transition: opacity var(--w-dur) var(--w-ease);
}
.w-map__city[data-country="PE"] { --mc: var(--loc-pe); }
.w-map__city[data-country="CL"] { --mc: var(--loc-cl); }
.w-map__city[data-country="BO"] { --mc: var(--loc-bo); }
.w-map__city[data-country="VE"] { --mc: var(--loc-ve); }
.w-locations-svg.has-active .w-map__city:not(.is-highlight) { opacity: 0.35; }
.w-map__city-pulse {
    fill: var(--mc);
    opacity: 0;
    transform-origin: center;
    transform-box: fill-box;
    pointer-events: none;
}
.w-map__city:hover .w-map__city-pulse,
.w-map__city:focus-visible .w-map__city-pulse,
.w-map__city.is-highlight .w-map__city-pulse {
    animation: w-map-pulse 1.8s ease-out infinite;
}
@keyframes w-map-pulse {
    0%   { transform: scale(0.55); opacity: 0.45; }
    100% { transform: scale(2.4);  opacity: 0;    }
}
/* Anillo punteado = base de operaciones (Tacna) */
.w-map__city-halo {
    fill: none;
    stroke: var(--mc);
    stroke-width: 1.4;
    stroke-dasharray: 2.5 3;
    opacity: 0.85;
    pointer-events: none;
}
.w-map__city-dot {
    fill: #ffffff;
    stroke: var(--mc);
    stroke-width: 2.5;
    transition: r var(--w-dur) var(--w-ease),
                fill var(--w-dur) var(--w-ease),
                stroke var(--w-dur) var(--w-ease);
}
.w-map__city:hover .w-map__city-dot,
.w-map__city:focus-visible .w-map__city-dot,
.w-map__city.is-highlight .w-map__city-dot {
    fill: var(--mc);
    r: 8;
}
.w-map__city:focus-visible .w-map__city-dot { stroke: var(--w-ink); }
.w-map__city-label {
    font-family: var(--w-font);
    font-size: 12px;
    font-weight: 600;
    fill: var(--w-ink);
    paint-order: stroke;
    stroke: #ffffff;
    stroke-width: 3.5px;
    stroke-linejoin: round;
    pointer-events: none;
    user-select: none;
}

/* Brújula N */
.w-map__compass {
    position: absolute;
    top: var(--w-md);
    right: var(--w-md);
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--w-hairline);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--w-shadow-xs);
    pointer-events: none;
    z-index: 2;
}
.w-map__compass-arrow {
    color: var(--w-accent);
    font-size: 1rem;
    line-height: 1;
    font-weight: 700;
}
.w-map__compass-label {
    color: var(--w-muted);
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1;
    margin-top: 1px;
}

/* Caption + leyenda (chips) */
.w-map__caption {
    margin: var(--w-sm) 0 0;
}
.w-map__legend {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: var(--w-xs);
    font-size: 0.8125rem;
    color: var(--w-body);
    font-weight: 500;
}
.w-map__legend li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--w-card);
    border: 1px solid var(--w-hairline);
    border-radius: var(--w-r-full);
    padding: 6px 12px;
    box-shadow: var(--w-shadow-xs);
}
.w-map__legend-swatch {
    width: 12px; height: 12px;
    border-radius: 4px;
    display: inline-block;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.08);
}
.w-map__legend-swatch--pe { background: #2244D6; }
.w-map__legend-swatch--cl { background: #148DE9; }
.w-map__legend-swatch--bo { background: #0E9BD8; }
.w-map__legend-swatch--ve { background: #0DB5CE; }
.w-map__legend small {
    color: var(--w-muted);
    font-size: 0.7rem;
    margin-left: 2px;
    font-weight: 500;
}

/* ── Grid de países (columna apilada junto al mapa) ── */
.w-locations-grid {
    display: flex;
    flex-direction: column;
    gap: var(--w-lg);
}
.w-loc-country {
    background: var(--w-card);
    border: 1px solid var(--w-hairline);
    border-radius: var(--w-r-lg);
    padding: var(--w-lg);
    display: flex;
    flex-direction: column;
    gap: var(--w-md);
    transition: border-color var(--w-dur) var(--w-ease),
                box-shadow var(--w-dur) var(--w-ease);
    position: relative;
    overflow: hidden;
}
.w-loc-country::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--loc-color, var(--w-accent));
}
.w-loc-country--pe { --loc-color: #2244D6; }
.w-loc-country--cl { --loc-color: #148DE9; }
.w-loc-country--bo { --loc-color: #0E9BD8; }
.w-loc-country--ve { --loc-color: #0DB5CE; }
.w-loc-country:hover {
    border-color: var(--w-blue-line);
    box-shadow: var(--w-shadow-md);
}
.w-loc-country.is-highlight {
    border-color: var(--loc-color, var(--w-accent));
    box-shadow: var(--w-shadow-md);
}

.w-loc-country__head {
    display: flex;
    align-items: center;
    gap: var(--w-sm);
    padding-bottom: var(--w-sm);
    border-bottom: 1px solid var(--w-hairline);
}
.w-loc-country__flag {
    width: 40px; height: 26px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.08);
    flex: 0 0 auto;
}
.w-loc-country__flag img { width: 100%; height: 100%; object-fit: cover; display: block; }
.w-loc-country__name {
    color: var(--w-ink);
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.01em;
}
.w-loc-country__count {
    color: var(--w-muted);
    font-size: 0.75rem;
    margin: 2px 0 0 0;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 600;
}

/* Ciudades en grid interno (rellena el ancho de la tarjeta) */
.w-loc-cities {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: var(--w-xs) var(--w-md);
}
.w-loc-city {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
    border-radius: var(--w-r-sm);
    border: 1px solid transparent;
    transition: background var(--w-dur) var(--w-ease),
                border-color var(--w-dur) var(--w-ease);
}
.w-loc-city.is-highlight {
    background: var(--w-blue-soft);
    border-color: var(--w-blue-line);
}
.w-loc-city__head {
    display: flex;
    align-items: flex-start;
    gap: var(--w-sm);
}
.w-loc-city__pin {
    width: 28px; height: 28px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--w-blue-soft);
    color: var(--loc-color, var(--w-accent));
    display: inline-flex;
    align-items: center; justify-content: center;
    font-size: 0.85rem;
    margin-top: 2px;
}
.w-loc-city__text { flex: 1 1 auto; min-width: 0; }
.w-loc-city__name {
    color: var(--w-ink);
    font-size: 0.9375rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.01em;
    line-height: 1.25;
}
.w-loc-city__role {
    color: var(--w-muted);
    font-weight: 500;
    font-size: 0.8125rem;
}
.w-loc-city__desc {
    color: var(--w-body);
    font-size: 0.8125rem;
    line-height: 1.5;
    margin: 4px 0 0 0;
}

.w-loc-links {
    list-style: none;
    padding: 0;
    margin: 4px 0 0 42px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.w-loc-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border: 1px solid var(--w-hairline);
    border-radius: var(--w-r-xs);
    text-decoration: none;
    color: var(--w-body);
    background: #fff;
    font-size: 0.8125rem;
    transition: border-color var(--w-dur) var(--w-ease),
                background var(--w-dur) var(--w-ease),
                transform var(--w-dur) var(--w-ease);
}
.w-loc-link:hover {
    border-color: var(--w-blue-line);
    background: var(--w-blue-soft);
    transform: translateX(2px);
    color: var(--w-ink);
}
.w-loc-link__icon {
    width: 22px; height: 22px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--w-blue-soft);
    color: var(--w-accent);
    display: inline-flex;
    align-items: center; justify-content: center;
    font-size: 0.7rem;
    transition: background var(--w-dur) var(--w-ease),
                color var(--w-dur) var(--w-ease);
}
.w-loc-link:hover .w-loc-link__icon {
    background: var(--w-accent);
    color: #fff;
}
.w-loc-link__domain {
    flex: 1 1 auto;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 500;
}
.w-loc-link__arrow {
    color: var(--w-muted);
    font-size: 0.75rem;
    transition: transform var(--w-dur) var(--w-ease),
                color var(--w-dur) var(--w-ease);
}
.w-loc-link:hover .w-loc-link__arrow {
    color: var(--w-accent);
    transform: translate(2px, -2px);
}
.w-loc-empty {
    color: var(--w-muted);
    font-size: 0.8125rem;
    font-style: italic;
    margin: 4px 0 0 42px;
}

@media (max-width: 1023.98px) {
    .w-locations-layout { grid-template-columns: 1fr; }
    .w-locations-mapcol { position: static; }
    .w-locations-map { max-width: 560px; margin: 0 auto; }
}
@media (max-width: 575.98px) {
    .w-locations-stats { gap: var(--w-md); }
    .w-loc-country { padding: var(--w-md); }
    .w-loc-cities { grid-template-columns: 1fr; }
    .w-loc-links { margin-left: 0; }
    .w-loc-empty { margin-left: 0; }
}

@media (prefers-reduced-motion: reduce) {
    .w-map__city-pulse { animation: none !important; }
}

/* ============================================================
   Pricing (single plan, light card, big price, features)
   ============================================================ */
.w-pricing-wrap { display: flex; justify-content: center; }
.w-pricing {
    width: 100%;
    max-width: 640px;
    background: var(--w-card);
    border: 1px solid var(--w-hairline);
    border-radius: var(--w-r-lg);
    padding: var(--w-xxl) var(--w-xl);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: var(--w-md);
    box-shadow: 0 20px 50px rgba(33, 33, 33, 0.06);
}
.w-pricing__label {
    color: var(--wh-blue);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.w-pricing__price {
    display: flex; align-items: baseline; gap: var(--w-xs);
    line-height: 0.9;
    margin-top: var(--w-xs);
}
.w-pricing__price-currency {
    font-size: 1.5rem; font-weight: 700; color: var(--w-ink);
}
.w-pricing__price-value {
    font-size: clamp(3.5rem, 7vw, 5rem);
    font-weight: 700;
    background: var(--w-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 0.9;
    letter-spacing: -0.04em;
}
.w-pricing__suffix {
    color: var(--w-muted);
    font-size: 0.875rem;
    line-height: 1.4;
    margin: 0;
}
.w-pricing__divider {
    height: 1px;
    background: var(--w-hairline);
    border: 0;
    margin: var(--w-sm) 0 0 0;
}
.w-pricing__features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--w-sm);
}
.w-pricing__feature {
    display: flex; align-items: flex-start; gap: var(--w-sm);
    color: var(--w-body);
    font-size: 0.9375rem;
    line-height: 1.5;
}
.w-pricing__feature i { color: var(--wh-cyan); font-size: 1rem; flex: 0 0 auto; line-height: 1.3; }
.w-pricing__cta { margin-top: var(--w-md); width: 100%; }

@media (max-width: 575.98px) { .w-pricing { padding: var(--w-xl) var(--w-lg); } }

/* ============================================================
   CTA band (pre-footer, light, indigo accent)
   ============================================================ */
.w-cta {
    background: var(--w-gradient);
    padding: var(--w-section) var(--w-lg);
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.w-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 0%, rgba(9, 197, 247, 0.25), transparent 50%),
        radial-gradient(circle at 80% 100%, rgba(34, 68, 214, 0.30), transparent 55%);
    pointer-events: none;
}
.w-cta__inner {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--w-lg);
}
.w-cta__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--w-xs);
    color: #fff;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.45rem 0.95rem;
    border-radius: var(--w-r-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: 1px solid rgba(255, 255, 255, 0.22);
}
.w-cta__eyebrow i { color: var(--wh-cyan); font-size: 0.875rem; }
.w-cta__title {
    color: #fff;
    font-size: clamp(1.875rem, 3vw + 1rem, 2.875rem);
    line-height: 1.12;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.025em;
    text-wrap: balance;
    max-width: 22ch;
}
.w-cta__title em { font-style: normal; color: rgba(255, 255, 255, 0.9); }
.w-cta__lede {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.125rem;
    line-height: 1.6;
    max-width: 56ch;
    margin: 0;
    text-wrap: pretty;
}
.w-cta__contact {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9375rem;
    display: inline-flex;
    align-items: center;
    gap: var(--w-lg);
    flex-wrap: wrap;
    justify-content: center;
    margin-top: var(--w-sm);
}
.w-cta__contact a { color: #fff; text-decoration: none; font-weight: 500; }
.w-cta__contact a:hover { color: rgba(255, 255, 255, 0.9); text-decoration: underline; text-underline-offset: 3px; }
.w-cta__contact i { color: var(--wh-cyan); margin-right: 6px; }

/* === CTA trust strip (subtle, inside the band) === */
.w-cta__trust {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: var(--w-md) var(--w-xl);
    margin-top: var(--w-md);
    padding-top: var(--w-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    width: 100%;
    max-width: 640px;
}
.w-cta__trust-item {
    display: inline-flex;
    align-items: center;
    gap: var(--w-xs);
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.875rem;
    font-weight: 500;
}
.w-cta__trust-item i {
    color: var(--wh-cyan);
    font-size: 1rem;
    background: rgba(9, 197, 247, 0.18);
    width: 26px; height: 26px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.w-cta .w-btn {
    background: #fff;
    color: var(--wh-indigo);
    box-shadow: 0 4px 14px rgba(9, 197, 247, 0.3);
}
.w-cta .w-btn:hover {
    background: rgba(255,255,255,0.95);
    color: var(--wh-indigo);
    box-shadow: 0 6px 20px rgba(9, 197, 247, 0.4);
}

@media (max-width: 575.98px) {
    .w-cta { padding: var(--w-xl) var(--w-md); }
    .w-cta__trust { gap: var(--w-sm) var(--w-md); padding-top: var(--w-md); }
}

/* ============================================================
   Footer (light, 5 columns, bottom row)
   ============================================================ */
.w-footer {
    background: var(--w-canvas);
    color: var(--w-body);
    padding: var(--w-xxl) var(--w-lg) var(--w-lg);
    border-top: 1px solid var(--w-hairline);
    position: relative;
}
.w-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 80px; height: 2px;
    background: var(--w-gradient);
    border-radius: 0 0 2px 2px;
}
.w-footer__inner { max-width: var(--w-max); margin: 0 auto; }
.w-footer__grid {
    display: grid;
    grid-template-columns: 1.6fr repeat(4, 1fr);
    gap: var(--w-xl);
    padding-bottom: var(--w-xl);
    border-bottom: 1px solid var(--w-hairline);
}
@media (max-width: 1023.98px) { .w-footer__grid { grid-template-columns: 1fr 1fr; gap: var(--w-lg); } }
@media (max-width: 575.98px)  { .w-footer__grid { grid-template-columns: 1fr; } }

.w-footer__brand p {
    color: var(--w-body);
    font-size: 0.875rem;
    line-height: 1.6;
    margin: var(--w-md) 0;
    max-width: 320px;
}
.w-footer__logo {
    display: inline-flex;
    align-items: center;
    gap: var(--w-sm);
    color: var(--w-ink);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.0625rem;
    margin-bottom: var(--w-md);
}
.w-footer__logo:hover { color: var(--w-ink); }
.w-footer__logo-img { flex: 0 0 auto; display: block; }

.w-footer__contact {
    color: var(--w-muted);
    font-size: 0.8125rem;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.w-footer__contact a { color: var(--w-body); text-decoration: none; transition: color var(--w-dur) var(--w-ease); }
.w-footer__contact a:hover { color: var(--w-ink); }
.w-footer__contact i { color: var(--w-accent); margin-right: 6px; }

.w-footer__heading {
    color: var(--w-ink);
    font-size: 0.9375rem;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
    margin: 0 0 var(--w-md) 0;
    position: relative;
    padding-bottom: var(--w-xs);
}
.w-footer__heading::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 24px; height: 2px;
    background: var(--w-gradient);
    border-radius: 2px;
}
.w-footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--w-sm);
}
.w-footer__list a {
    color: var(--w-body);
    font-size: 0.875rem;
    text-decoration: none;
    transition: color var(--w-dur) var(--w-ease), padding-left var(--w-dur) var(--w-ease);
    display: inline-block;
}
.w-footer__list a:hover { color: var(--w-ink); padding-left: 4px; }

.w-footer__social {
    display: flex;
    gap: var(--w-xs);
    margin-top: var(--w-md);
}
.w-footer__social a {
    width: 38px; height: 38px;
    border: 1px solid var(--w-hairline);
    color: var(--w-body);
    border-radius: 50%;
    display: inline-flex;
    align-items: center; justify-content: center;
    text-decoration: none;
    transition: color var(--w-dur) var(--w-ease),
                border-color var(--w-dur) var(--w-ease),
                background var(--w-dur) var(--w-ease);
}
.w-footer__social a:hover { color: #fff; border-color: var(--w-accent); background: var(--w-accent); }

.w-footer__bottom {
    padding-top: var(--w-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--w-md);
    color: var(--w-muted);
    font-size: 0.8125rem;
}
.w-footer__bottom p { margin: 0; }
.w-footer__bottom a { color: var(--w-muted); text-decoration: none; }
.w-footer__bottom a:hover { color: var(--w-ink); }

/* === Trust mini-strip above footer grid (subtle band) === */
.w-footer__trust {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: var(--w-md) var(--w-xl);
    padding: 0 0 var(--w-xl) 0;
    margin-bottom: var(--w-xl);
    border-bottom: 1px solid var(--w-hairline);
}
.w-footer__trust-item {
    display: inline-flex;
    align-items: center;
    gap: var(--w-xs);
    color: var(--w-body);
    font-size: 0.8125rem;
    font-weight: 500;
}
.w-footer__trust-item i { color: var(--w-accent); font-size: 1rem; }
.w-footer__trust-item strong { color: var(--w-ink); font-weight: 600; }

/* Gradient accent text utility */
.w-text-gradient {
    background: var(--w-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.w-text-gradient {
    background: var(--w-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* ============================================================
   Page Hero (band reutilizable: title + breadcrumb + lede)
   Used on internal pages (blog, portfolio, contact...)
   ============================================================ */
.w-page-hero {
    background: var(--w-surface);
    color: var(--w-body);
    padding: calc(var(--w-nav-h) + var(--w-xl)) var(--w-lg) var(--w-xl);
    border-bottom: 1px solid var(--w-hairline);
}
.w-page-hero__inner {
    max-width: var(--w-max);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--w-sm);
}
.w-page-hero__eyebrow {
    color: var(--w-accent);
    font-size: 0.875rem;
    font-weight: 600;
}
.w-page-hero__title {
    color: var(--w-ink);
    font-size: clamp(2rem, 4vw + 1rem, 3.25rem);
    line-height: 1.1;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.02em;
}
.w-page-hero__lede {
    color: var(--w-body);
    font-size: 1.0625rem;
    line-height: 1.55;
    max-width: 720px;
    margin: 0;
}
.w-page-hero__breadcrumb ol {
    list-style: none;
    padding: 0;
    margin: var(--w-sm) 0 0 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--w-xs);
    color: var(--w-muted);
    font-size: 0.8125rem;
    font-weight: 500;
}
.w-page-hero__breadcrumb li { display: inline-flex; align-items: center; gap: var(--w-xs); }
.w-page-hero__breadcrumb li + li::before { content: '/'; color: var(--w-hairline-strong); margin-right: var(--w-xs); }
.w-page-hero__breadcrumb a {
    color: var(--w-body);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.w-page-hero__breadcrumb a:hover { color: var(--w-ink); }
.w-page-hero__breadcrumb a i { color: var(--w-accent); font-size: 0.875rem; }
.w-page-hero__breadcrumb li[aria-current="page"] span { color: var(--w-ink); font-weight: 600; }

/* ============================================================
   Article detail (blog post)
   ============================================================ */
.w-article-cover {
    margin: 0;
    background: var(--w-muted-bg);
    border-bottom: 1px solid var(--w-hairline);
    overflow: hidden;
}
.w-article-cover img {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    display: block;
}
.w-article {
    background: var(--w-canvas);
    color: var(--w-body);
    padding: var(--w-xxl) var(--w-lg);
}
.w-article__inner { max-width: var(--w-max); margin: 0 auto; }
.w-article__layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: var(--w-xxl);
    align-items: start;
}
.w-article__main { min-width: 0; }
.w-article__sidebar {
    display: flex; flex-direction: column; gap: var(--w-lg);
    position: sticky;
    top: calc(var(--w-nav-h) + var(--w-lg));
}
@media (max-width: 1023.98px) {
    .w-article { padding: var(--w-xl) var(--w-md); }
    .w-article__layout { grid-template-columns: 1fr; gap: var(--w-xl); }
    .w-article__sidebar { position: static; }
}

.w-article__content {
    color: var(--w-body-strong);
    font-size: 1.0625rem;
    line-height: 1.75;
    max-width: 72ch;
}
.w-article__content > *:first-child { margin-top: 0; }
.w-article__content > *:last-child  { margin-bottom: 0; }
.w-article__content p { margin: 0 0 var(--w-lg) 0; }
.w-article__content h2,
.w-article__content h3,
.w-article__content h4 {
    color: var(--w-ink);
    font-weight: 700;
    line-height: 1.25;
    margin: var(--w-xl) 0 var(--w-md) 0;
}
.w-article__content h2 { font-size: 1.75rem; }
.w-article__content h3 { font-size: 1.375rem; }
.w-article__content h4 { font-size: 1.125rem; }
.w-article__content a { color: var(--w-accent); text-decoration: underline; text-underline-offset: 3px; }
.w-article__content a:hover { color: var(--w-accent-dark); }
.w-article__content strong { color: var(--w-ink); font-weight: 700; }
.w-article__content ul, .w-article__content ol {
    padding-left: var(--w-lg);
    margin: 0 0 var(--w-lg) 0;
}
.w-article__content li { margin-bottom: var(--w-xs); }
.w-article__content blockquote {
    margin: var(--w-xl) 0;
    padding: var(--w-md) var(--w-lg);
    border-left: 4px solid var(--w-accent);
    background: var(--w-blue-soft);
    color: var(--w-body-strong);
    font-size: 1.125rem;
    font-style: italic;
    line-height: 1.6;
    border-radius: 0 var(--w-r-sm) var(--w-r-sm) 0;
}
.w-article__content img {
    max-width: 100%; height: auto; display: block;
    margin: var(--w-lg) auto;
    border-radius: var(--w-r-sm);
}
.w-article__content pre,
.w-article__content code {
    background: var(--w-surface);
    color: var(--w-body-strong);
    border: 1px solid var(--w-hairline);
    border-radius: var(--w-r-sm);
}
.w-article__content code { padding: 2px 6px; }
.w-article__content pre { padding: var(--w-md); overflow-x: auto; }

.w-article__tags {
    margin-top: var(--w-xl);
    padding-top: var(--w-lg);
    border-top: 1px solid var(--w-hairline);
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: var(--w-sm);
}
.w-article__tags ul {
    list-style: none;
    padding: 0; margin: 0;
    display: flex; flex-wrap: wrap; gap: 6px;
}
.w-article__tags li a {
    display: inline-flex; align-items: center;
    padding: 4px 10px;
    color: var(--w-body);
    font-size: 0.8125rem;
    font-weight: 500;
    text-decoration: none;
    background: var(--w-blue-soft);
    border-radius: var(--w-r-full);
    transition: background-color 0.2s ease, color 0.2s ease;
}
.w-article__tags li a:hover { background: var(--w-accent); color: #fff; }
.w-article__footer {
    margin-top: var(--w-xl);
    padding-top: var(--w-lg);
    border-top: 1px solid var(--w-hairline);
}

.w-article-sidebar__related {
    background: var(--w-card);
    border: 1px solid var(--w-hairline);
    border-radius: var(--w-r-md);
    padding: var(--w-lg);
}
.w-article-sidebar__heading {
    color: var(--w-ink);
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 var(--w-md) 0;
}
.w-article-sidebar__related ul {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: var(--w-md);
}
.w-article-sidebar__related li { border-bottom: 1px solid var(--w-hairline); padding-bottom: var(--w-md); }
.w-article-sidebar__related li:last-child { border-bottom: 0; padding-bottom: 0; }
.w-article-sidebar__related-link {
    display: flex; gap: var(--w-sm);
    text-decoration: none; color: var(--w-body-strong);
}
.w-article-sidebar__related-link:hover { color: var(--w-accent); }
.w-article-sidebar__related-thumb {
    flex: 0 0 64px; width: 64px; height: 64px;
    overflow: hidden; background: var(--w-muted-bg);
    border-radius: var(--w-r-sm);
    display: block;
}
.w-article-sidebar__related-thumb img { width: 100%; height: 100%; object-fit: cover; }
.w-article-sidebar__related-title {
    color: var(--w-ink);
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.w-article-sidebar__related-date {
    color: var(--w-muted);
    font-size: 0.75rem;
    display: inline-flex; align-items: center; gap: 4px;
    margin-top: 4px;
}
.w-article-sidebar__related-date i { color: var(--w-accent); }

.w-article-hero__meta {
    list-style: none; padding: 0; margin: var(--w-sm) 0 0 0;
    display: flex; flex-wrap: wrap; gap: var(--w-md);
    color: var(--w-muted);
    font-size: 0.8125rem;
}
.w-article-hero__meta li { display: inline-flex; align-items: center; gap: 6px; }
.w-article-hero__meta i { color: var(--w-accent); }

/* === Blog 404 === */
.w-blog-404 {
    text-align: center;
    padding: var(--w-xl) 0;
    max-width: 640px;
    margin: 0 auto;
    display: flex; flex-direction: column; align-items: center; gap: var(--w-lg);
}
.w-blog-404__code {
    font-size: clamp(5rem, 12vw, 9rem);
    font-weight: 700;
    line-height: 1;
    color: var(--w-accent);
    letter-spacing: -0.04em;
}
.w-blog-404__lede {
    color: var(--w-body);
    font-size: 1.0625rem;
    line-height: 1.5;
    margin: 0;
    max-width: 480px;
}

/* ============================================================
   WhatsApp float (icon button, bottom-right, indigo)
   ============================================================ */
.w-whatsapp {
    position: fixed;
    bottom: var(--w-lg);
    right: var(--w-lg);
    width: 56px; height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: inline-flex;
    align-items: center; justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    z-index: 1050;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.w-whatsapp:hover { color: #fff; box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5); transform: scale(1.05); }
@media (max-width: 575.98px) { .w-whatsapp { width: 52px; height: 52px; bottom: var(--w-md); right: var(--w-md); } }

/* === Bootstrap overrides (light theme) === */
.bg-light, section.bg-light { background-color: var(--w-canvas) !important; color: var(--w-body) !important; }
.text-muted  { color: var(--w-muted) !important; }
.text-dark   { color: var(--w-ink) !important; }
.text-white  { color: #fff !important; }
.text-primary{ color: var(--w-accent) !important; }
.bg-white    { background-color: var(--w-card) !important; }
.bg-soft     { background-color: var(--w-surface) !important; }
.shadow, .shadow-sm, .shadow-md, .shadow-lg { box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08) !important; }
.rounded, .rounded-1, .rounded-2, .rounded-3, .rounded-4, .rounded-5 { border-radius: var(--w-r-md) !important; }

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

/* ============================================================
   Compatibility aliases: legacy `m-*` classes used by landing pages
   (pag/diseno-web-base.php, pag/webmail-corporativo.php, etc.)
   Maps the old BMW M design tokens to the new light-theme tokens.
   ============================================================ */
:root {
    --m-blue-light:  var(--w-accent);
    --m-blue-dark:   var(--w-accent-dark);
    --m-red:         var(--w-accent);
    --bmw-blue:      var(--w-accent);
    --electric-blue: var(--w-accent);

    --canvas:           var(--w-canvas);
    --surface-soft:     var(--w-surface);
    --surface-card:     var(--w-card);
    --surface-elevated: var(--w-card);
    --carbon-gray:      var(--w-muted-bg);

    --hairline:        var(--w-hairline);
    --hairline-strong: var(--w-hairline-strong);

    --on-primary: var(--w-ink);
    --on-dark:    var(--w-ink);
    --ink:        var(--w-ink);
    --body:       var(--w-body);
    --body-strong:var(--w-body-strong);
    --muted:      var(--w-muted);

    --m-stripe: var(--w-accent);

    --max-content: var(--w-max);
    --nav-h:       var(--w-nav-h);

    --r-none:  0px;
    --r-xs:    6px;
    --r-sm:    6px;
    --r-md:    12px;
    --r-full:  9999px;

    --font-base: var(--w-font);
    --ls-display: 0;
    --ls-label: 0.5px;
    --ls-nav: 0.5px;
    --ls-caption: 0.5px;

    --sp-xxs:    4px;
    --sp-xs:     8px;
    --sp-sm:     12px;
    --sp-md:     16px;
    --sp-lg:     24px;
    --sp-xl:     40px;
    --sp-xxl:    64px;
    --sp-section: 96px;
}

body {
    background: var(--w-canvas);
    color: var(--w-body);
}
h1, h2, h3, h4, h5, h6 { text-transform: none; color: var(--w-ink); }
h5, h6 { letter-spacing: 0.5px; }

a { color: var(--w-accent); }
a:hover { color: var(--w-accent-dark); }

.m-stripe { background: var(--w-accent); }

/* === m-nav legacy === */
.m-nav {
    background: var(--w-canvas);
    color: var(--w-ink);
    border-bottom: 1px solid var(--w-hairline);
}
.m-nav__inner { max-width: var(--w-max); }
.m-nav__brand { color: var(--w-ink); }
.m-nav__brand:hover { color: var(--w-ink); }
.m-nav__logo-title { color: var(--w-ink); }
.m-nav__logo-sub { color: var(--w-muted); }
.m-nav__link { color: var(--w-body); }
.m-nav__link:hover { color: var(--w-ink); border-bottom-color: var(--w-accent); }
.m-nav__link[aria-current="page"] { color: var(--w-ink); border-bottom-color: var(--w-accent); }
.m-nav__cta { background: var(--w-accent); color: #fff; border-color: var(--w-accent); border-radius: var(--w-r-full); }
.m-nav__cta:hover { background: var(--w-accent-dark); color: #fff; }
.m-nav__toggle { color: var(--w-ink); border-color: var(--w-hairline); border-radius: var(--w-r-sm); }

.m-offcanvas { background: var(--w-canvas); color: var(--w-ink); border-left: 1px solid var(--w-hairline); box-shadow: -10px 0 40px rgba(0,0,0,.08); }
.m-offcanvas__header { border-bottom: 1px solid var(--w-hairline); }
.m-offcanvas__close { color: var(--w-ink); border-color: var(--w-hairline); border-radius: var(--w-r-sm); }
.m-offcanvas__close:hover { border-color: var(--w-accent); color: var(--w-accent); }
.m-offcanvas__nav li { border-bottom: 1px solid var(--w-hairline); }
.m-offcanvas__nav a { color: var(--w-body); }
.m-offcanvas__nav a:hover,
.m-offcanvas__nav a[aria-current="page"] { color: var(--w-ink); }
.m-offcanvas__nav a i { color: var(--w-accent); }
.m-offcanvas__cta { border-top: 1px solid var(--w-hairline); }
.m-offcanvas__cta a { background: var(--w-accent); color: #fff; border-radius: var(--w-r-full); }
.m-offcanvas__contact { border-top: 1px solid var(--w-hairline); color: var(--w-muted); }
.m-offcanvas__contact a { color: var(--w-muted); }
.m-offcanvas__contact a:hover { color: var(--w-ink); }
.m-offcanvas__contact i { color: var(--w-accent); }
.m-offcanvas-backdrop { background: rgba(15, 23, 42, 0.45); }

/* === m-hero === */
.m-hero { background: var(--w-canvas); color: var(--w-ink); padding: calc(var(--w-nav-h) + var(--sp-xxl)) var(--sp-lg) var(--sp-xxl); }
.m-hero__eyebrow { color: var(--w-accent); }
.m-hero__eyebrow::before { background: var(--w-accent); }
.m-hero__title { color: var(--w-ink); }
.m-hero__title em { color: var(--w-accent); }
.m-hero__title em::after { background: var(--w-accent); }
.m-hero__lede { color: var(--w-body); }
.m-hero__meta { color: var(--w-muted); }
.m-hero__meta i { color: var(--w-accent); }
.m-hero__media { border: 1px solid var(--w-hairline); border-radius: var(--w-r-md); }
.m-hero__badge { background: var(--w-card); border: 1px solid var(--w-hairline); border-radius: var(--w-r-sm); }
.m-hero__badge-icon { color: var(--w-accent); }
.m-hero__badge-value { color: var(--w-ink); }
.m-hero__badge-label { color: var(--w-muted); }

/* === m-btn === */
.m-btn {
    background: var(--w-accent);
    color: #fff;
    border: 1px solid var(--w-accent);
    border-radius: var(--w-r-full);
}
.m-btn:hover { background: var(--w-accent-dark); border-color: var(--w-accent-dark); color: #fff; }
.m-btn--outline { background: transparent; color: var(--w-ink); border-color: var(--w-hairline-strong); }
.m-btn--outline:hover { background: var(--w-ink); color: #fff; border-color: var(--w-ink); }
.m-btn--ghost { background: transparent; color: var(--w-ink); border-color: var(--w-hairline); }
.m-btn--ghost:hover { border-color: var(--w-accent); color: var(--w-accent); }
.m-btn--stripe { background: var(--w-accent); }
.m-btn--icon { background: var(--w-card); color: var(--w-ink); border: 1px solid var(--w-hairline); }
.m-btn--icon:hover { border-color: var(--w-accent); color: var(--w-accent); background: var(--w-card); }

/* === m-section === */
.m-section { background: var(--w-canvas); color: var(--w-body); border-top: 1px solid var(--w-hairline); }
.m-section--alt { background: var(--w-surface); }
.m-section__inner { max-width: var(--w-max); }
.m-section__head { display: flex; align-items: flex-end; justify-content: space-between; gap: var(--sp-xl); flex-wrap: wrap; }
.m-section__head--center { align-items: center; text-align: center; }
.m-section__head--center > div { max-width: 720px; }
.m-eyebrow { color: var(--w-accent); }
.m-eyebrow::before { background: var(--w-accent); }
.m-section__title { color: var(--w-ink); }
.m-section__lede { color: var(--w-body); }

/* === m-stats === */
.m-stats { background: transparent; border: 0; gap: var(--sp-md); }
.m-stats__cell { background: var(--w-card); border: 1px solid var(--w-hairline); border-radius: var(--w-r-md); }
.m-stats__value { color: var(--w-accent); }
.m-stats__label { color: var(--w-body); }

/* === m-grid / m-card === */
.m-grid { background: transparent; border: 0; gap: var(--w-lg); display: grid; }
.m-grid--3 { grid-template-columns: repeat(3, 1fr); }
.m-grid--2 { grid-template-columns: repeat(2, 1fr); }
.m-card { background: var(--w-card); color: var(--w-ink); border: 1px solid var(--w-hairline); border-radius: var(--w-r-md); }
.m-card:hover { background: var(--w-card); box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08); border-color: var(--w-blue-line); }
.m-card__icon { color: var(--w-accent); }
.m-card__title { color: var(--w-ink); }
.m-card__desc { color: var(--w-body); }
.m-card__link { color: var(--w-accent); }
.m-card__link:hover { color: var(--w-accent-dark); }

@media (max-width: 1023.98px) {
    .m-grid--3, .m-grid--2 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575.98px) {
    .m-grid--3, .m-grid--2 { grid-template-columns: 1fr; }
}

/* === m-loc === */
.m-loc { background: var(--w-card); border: 1px solid var(--w-hairline); border-radius: var(--w-r-md); }
.m-loc::before { background: var(--w-accent); }
.m-loc__flag { background: var(--w-blue-soft); border: 1px solid var(--w-hairline); color: var(--w-accent); }
.m-loc__name { color: var(--w-ink); }
.m-loc__desc { color: var(--w-body); }

/* === m-testimonial === */
.m-testimonial { background: var(--w-card); color: var(--w-ink); border: 1px solid var(--w-hairline); border-radius: var(--w-r-md); }
.m-testimonial:hover { background: var(--w-card); }
.m-testimonial::before { background: var(--w-accent); }
.m-testimonial__stars { color: #f59e0b; }
.m-testimonial__source { border: 1px solid var(--w-hairline); color: var(--w-body); background: var(--w-surface); }
.m-testimonial__source--google i { color: var(--w-accent); }
.m-testimonial__source--facebook i { color: var(--w-accent); }
.m-testimonial__quote-mark { color: var(--w-accent); }
.m-testimonial__quote p { color: var(--w-body); }
.m-testimonial__author { border-top: 1px solid var(--w-hairline); }
.m-testimonial__avatar { background: var(--w-blue-soft); border: 1px solid var(--w-hairline); color: var(--w-accent); }
.m-testimonial__name { color: var(--w-ink); }
.m-testimonial__role { color: var(--w-muted); }
.m-testimonial__date { color: var(--w-muted); }

.m-testimonials__score { background: var(--w-card); border: 1px solid var(--w-hairline); border-radius: var(--w-r-md); }
.m-testimonials__score::before { background: var(--w-accent); }
.m-testimonials__score-value { color: var(--w-ink); }
.m-testimonials__score-value span { color: var(--w-muted); }
.m-testimonials__score-stars { color: #f59e0b; }
.m-testimonials__score-count { color: var(--w-muted); }
.m-testimonials__score-sources i { color: var(--w-body); }

/* === m-pricing === */
.m-pricing { background: var(--w-card); border: 1px solid var(--w-hairline); border-radius: var(--w-r-lg); }
.m-pricing::before { background: var(--w-accent); }
.m-pricing__label { color: var(--w-accent); }
.m-pricing__price-currency { color: var(--w-ink); }
.m-pricing__price-value { color: var(--w-ink); }
.m-pricing__suffix { color: var(--w-muted); }
.m-pricing__divider { background: var(--w-hairline); }
.m-pricing__feature { color: var(--w-body); }
.m-pricing__feature i { color: var(--w-accent); }

/* === m-landing-hero === */
.m-landing-hero { background: var(--w-canvas); color: var(--w-ink); border-bottom: 1px solid var(--w-hairline); }
.m-landing-hero::before { background: var(--w-accent); }
.m-landing-hero__title { color: var(--w-ink); }
.m-landing-hero__lede { color: var(--w-body); }
.m-landing-hero__price { border-top: 1px solid var(--w-hairline); border-bottom: 1px solid var(--w-hairline); }
.m-landing-hero__price-value { color: var(--w-ink); }
.m-landing-hero__price-suffix { color: var(--w-muted); }
.m-landing-hero__highlights li { color: var(--w-body); }
.m-landing-hero__highlights i { color: var(--w-accent); }
.m-landing-hero__meta { color: var(--w-muted); }
.m-landing-hero__meta i { color: var(--w-accent); }
.m-landing-hero__media { border: 1px solid var(--w-hairline); border-radius: var(--w-r-md); }

/* === m-photo-card / portfolio === */
.m-grid--photo { background: transparent; border: 0; gap: var(--w-lg); }
.m-photo-card { background: var(--w-card); border-radius: var(--w-r-md); overflow: hidden; }
.m-photo-card img { filter: none; }
.m-photo-card:hover img { transform: scale(1.03); }
.m-photo-card__overlay { background: linear-gradient(transparent, rgba(0, 0, 0, 0.85)); }
.m-photo-card__cat { color: var(--w-accent-soft); }
.m-photo-card__title { color: #fff; }
.m-photo-card__client { color: rgba(255, 255, 255, 0.7); }
.m-photo-card__client i { color: var(--w-accent-soft); }

/* === m-page-hero (legacy internal pages) === */
.m-page-hero { background: var(--w-surface); color: var(--w-ink); border-bottom: 1px solid var(--w-hairline); }
.m-page-hero::before { background: var(--w-accent); }
.m-page-hero::after { display: none; }
.m-page-hero__eyebrow { color: var(--w-accent); }
.m-page-hero__eyebrow::before { background: var(--w-accent); }
.m-page-hero__title { color: var(--w-ink); }
.m-page-hero__lede { color: var(--w-body); }
.m-page-hero__breadcrumb ol { color: var(--w-muted); }
.m-page-hero__breadcrumb li + li::before { color: var(--w-hairline-strong); }
.m-page-hero__breadcrumb a { color: var(--w-body); border: 1px solid var(--w-hairline); }
.m-page-hero__breadcrumb a:hover { color: var(--w-ink); border-color: var(--w-accent); background: var(--w-card); }
.m-page-hero__breadcrumb a i { color: var(--w-accent); }
.m-page-hero__breadcrumb li[aria-current="page"] span { color: var(--w-ink); border: 1px solid var(--w-accent); background: var(--w-card); }

/* === m-cta (pre-footer) === */
.m-cta { background: var(--w-blue-soft); border-top: 1px solid var(--w-hairline); border-bottom: 1px solid var(--w-hairline); color: var(--w-ink); }
.m-cta::before { background: var(--w-accent); }
.m-cta__title { color: var(--w-ink); }
.m-cta__lede { color: var(--w-body); }
.m-cta__contact { color: var(--w-muted); }
.m-cta__contact a { color: var(--w-body); }
.m-cta__contact a:hover { color: var(--w-ink); }
.m-cta__contact i { color: var(--w-accent); }

/* === m-footer === */
.m-footer { background: var(--w-canvas); color: var(--w-body); border-top: 1px solid var(--w-hairline); }
.m-footer::before { background: var(--w-accent); }
.m-footer__brand p { color: var(--w-body); }
.m-footer__logo { color: var(--w-ink); }
.m-footer__logo:hover { color: var(--w-ink); }
.m-footer__logo-title { color: var(--w-ink); }
.m-footer__logo-sub { color: var(--w-muted); }
.m-footer__contact { color: var(--w-muted); }
.m-footer__contact a { color: var(--w-body); }
.m-footer__contact a:hover { color: var(--w-ink); }
.m-footer__contact i { color: var(--w-accent); }
.m-footer__heading { color: var(--w-ink); }
.m-footer__list a { color: var(--w-body); }
.m-footer__list a:hover { color: var(--w-ink); }
.m-footer__social a { color: var(--w-body); border: 1px solid var(--w-hairline); border-radius: 50%; }
.m-footer__social a:hover { color: var(--w-accent); border-color: var(--w-accent); }
.m-footer__bottom { color: var(--w-muted); }
.m-footer__bottom a { color: var(--w-muted); }
.m-footer__bottom a:hover { color: var(--w-ink); }

/* === m-whatsapp === */
.m-whatsapp { background: #25D366; color: #fff; box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4); border-radius: 50%; }
.m-whatsapp:hover { color: #fff; box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5); }

/* === m-blog-card === */
.m-blog-card { background: var(--w-card); color: var(--w-ink); border: 1px solid var(--w-hairline); border-radius: var(--w-r-md); }
.m-blog-card::before { background: var(--w-accent); }
.m-blog-card:hover { background: var(--w-card); }
.m-blog-card:hover .m-blog-card__img { transform: scale(1.04); }
.m-blog-card__media-link { background: var(--w-muted-bg); border-radius: var(--w-r-md) var(--w-r-md) 0 0; }
.m-blog-card__img { filter: none; }
.m-blog-card__date { color: var(--w-accent); }
.m-blog-card__title { color: var(--w-ink); }
.m-blog-card__title-link { color: var(--w-ink); }
.m-blog-card__title-link:hover { color: var(--w-accent); }
.m-blog-card__desc { color: var(--w-body); }
.m-blog-card__link { color: var(--w-accent); border-top: 1px solid var(--w-hairline); }
.m-blog-card__link:hover { color: var(--w-accent-dark); }

/* === m-accordion (plans) === */
.m-accordion__item { background: var(--w-card); border: 1px solid var(--w-hairline); border-radius: var(--w-r-md); }
.m-accordion__item[open] { border-color: var(--w-accent); background: var(--w-card); }
.m-accordion__item--featured { border-color: var(--w-accent); background: var(--w-card); }
.m-accordion__item--featured[open] { border-color: var(--w-accent); }
.m-accordion__head { color: var(--w-ink); }
.m-accordion__head:hover { background: var(--w-surface); }
.m-accordion__name { color: var(--w-ink); }
.m-accordion__tagline { color: var(--w-body); }
.m-accordion__price-value { color: var(--w-ink); }
.m-accordion__price-suffix { color: var(--w-muted); }
.m-accordion__chevron { color: var(--w-accent); }
.m-accordion__body { border-top: 1px solid var(--w-hairline); }
.m-accordion__body::before { background: var(--w-accent); }
.m-accordion__feature { color: var(--w-body); }
.m-accordion__feature i { color: var(--w-accent); }
.m-plans__foot { color: var(--w-body); }
.m-plans__foot a { color: var(--w-accent); }
.m-plans__foot a:hover { color: var(--w-accent-dark); }

/* === m-article === */
.m-article { background: var(--w-canvas); color: var(--w-body); border-top: 1px solid var(--w-hairline); }
.m-article__content { color: var(--w-body-strong); }
.m-article__content h2,
.m-article__content h3,
.m-article__content h4 { color: var(--w-ink); }
.m-article__content h2 { border-bottom: 1px solid var(--w-hairline); }
.m-article__content h2::before { background: var(--w-gradient); }
.m-article__content a { color: var(--wh-blue); }
.m-article__content a:hover { color: var(--wh-indigo); }
.m-article__content strong { color: var(--w-ink); }
.m-article__content ul li::marker { color: var(--wh-cyan); }
.m-article__content ol li::marker { color: var(--wh-blue); }
.m-article__content blockquote { border-left: 4px solid var(--wh-blue); background: var(--w-blue-soft); color: var(--w-body-strong); border-radius: 0 var(--w-r-sm) var(--w-r-sm) 0; }
.m-article__content blockquote cite { color: var(--w-muted); }
.m-article__content img { border: 1px solid var(--w-hairline); border-radius: var(--w-r-sm); }
.m-article__content figcaption { color: var(--w-muted); }
.m-article__content code { background: var(--w-surface); color: var(--wh-blue); border: 1px solid var(--w-hairline); border-radius: var(--w-r-sm); }
.m-article__content pre { background: var(--w-surface); border: 1px solid var(--w-hairline); border-left: 4px solid var(--wh-blue); border-radius: var(--w-r-sm); }
.m-article__content pre code { color: var(--w-body-strong); }
.m-article__content th { background: var(--w-card); color: var(--w-ink); }
.m-article__content th, .m-article__content td { color: var(--w-body-strong); border: 1px solid var(--w-hairline); }
.m-article__content table { background: var(--w-surface); border: 1px solid var(--w-hairline); border-radius: var(--w-r-sm); overflow: hidden; }
.m-article__content hr { background: var(--w-gradient); }

.m-article__tags { border-top: 1px solid var(--w-hairline); }
.m-article__tags-label { color: var(--w-muted); }
.m-article__tags-label i { color: var(--wh-cyan); }
.m-article__tags li a { color: var(--w-body); background: var(--w-surface); border: 1px solid var(--w-hairline); border-radius: var(--w-r-full); }
.m-article__tags li a::before { color: var(--wh-cyan); }
.m-article__tags li a:hover { color: var(--w-ink); background: var(--w-card); border-color: var(--wh-blue); }

.m-article__footer { border-top: 1px solid var(--w-hairline); }

.m-article-cover { background: var(--w-muted-bg); border-bottom: 1px solid var(--w-hairline); }
.m-article-cover::before { background: var(--w-gradient); }
.m-article-cover img { filter: none; }

.m-article-sidebar__author { background: var(--w-card); border: 1px solid var(--w-hairline); border-radius: var(--w-r-md); }
.m-article-sidebar__author::before { background: var(--w-gradient); }
.m-article-sidebar__author-avatar { background: var(--w-blue-soft); border: 1px solid var(--w-hairline); color: var(--wh-blue); }
.m-article-sidebar__author-label { color: var(--wh-blue); }
.m-article-sidebar__author-name { color: var(--w-ink); }

.m-article-sidebar__related { background: var(--w-card); border: 1px solid var(--w-hairline); border-radius: var(--w-r-md); }
.m-article-sidebar__related::before { background: var(--w-gradient); }
.m-article-sidebar__heading { color: var(--w-ink); border-bottom: 1px solid var(--w-hairline); }
.m-article-sidebar__related li { border-bottom: 1px solid var(--w-hairline); }
.m-article-sidebar__related-link { color: var(--w-body-strong); }
.m-article-sidebar__related-link:hover { color: var(--wh-blue); }
.m-article-sidebar__related-thumb { background: var(--w-muted-bg); border: 1px solid var(--w-hairline); border-radius: var(--w-r-sm); }
.m-article-sidebar__related-thumb img { filter: none; }
.m-article-sidebar__related-title { color: var(--w-ink); }
.m-article-sidebar__related-link:hover .m-article-sidebar__related-title { color: var(--wh-blue); }
.m-article-sidebar__related-date { color: var(--w-muted); }
.m-article-sidebar__related-date i { color: var(--wh-cyan); }

.m-article-hero__title { color: var(--w-ink); }
.m-article-hero__subtitle { color: var(--w-body-strong); }
.m-article-hero__meta { color: var(--w-muted); }
.m-article-hero__meta i { color: var(--wh-cyan); }
.m-article-hero__meta time, .m-article-hero__meta span { color: var(--w-body); }

.m-blog-404__code { color: var(--wh-blue); }
.m-blog-404__lede { color: var(--w-body); }

