/* ============================================================
   Limpiezas AMV — Tema 1.2.0
   Rebranding visual sobre 1.1.0 conforme a brandbook AMV.
   Misma estructura HTML/PHP. Misma maquetación.
   Cambios: paleta amarilla -> azul de marca (#1264ED) +
   navy (#0D1B2A), tipografía Montserrat (display) + Poppins
   (UI), logos como imagen referenciada desde el media library.
   ============================================================ */

:root {
    /* === Paleta brandbook AMV =========================
       #1264ED azul primario · #0D1B2A azul oscuro/ink
       #7D838A gris medio · #E6E8EB gris claro · #FFFFFF
       =================================================== */
    --ink: #0D1B2A;
    --ink-2: #14253a;
    --ink-3: #1d3050;
    --muted: #7D838A;
    --muted-2: #a8acb1;
    --line: #E6E8EB;
    --line-2: #d2d5d9;
    --bg: #ffffff;
    --bg-soft: #f5f7fb;
    --bg-soft-2: #eef2f8;

    /* Acento principal (sustituye al "yellow" original).
       Mantengo los nombres --yellow* para no romper selectores. */
    --yellow: #1264ED;        /* azul AMV */
    --yellow-deep: #0d4ec4;   /* hover/estados */
    --yellow-soft: #cfe0ff;   /* fondos suaves */
    --blue: #1264ED;
    --blue-deep: #0d4ec4;
    --blue-soft: #cfe0ff;
    --navy: #0D1B2A;

    /* Gradientes alineados a la marca */
    --grad-ink: linear-gradient(135deg, #0D1B2A 0%, #14253a 55%, #1d3050 100%);
    --grad-ink-yellow: linear-gradient(135deg, rgba(13,27,42,.92) 0%, rgba(20,37,58,.85) 45%, rgba(18,100,237,.22) 100%);
    --grad-hero-light: linear-gradient(135deg, rgba(255,255,255,.82) 0%, rgba(245,247,251,.65) 55%, rgba(18,100,237,.15) 100%);
    --grad-hero-dark: linear-gradient(120deg, rgba(13,27,42,.80) 0%, rgba(13,27,42,.55) 50%, rgba(18,100,237,.45) 100%);
    --grad-yellow: linear-gradient(135deg, #1264ED 0%, #4a8bff 100%);
    --grad-blue: linear-gradient(135deg, #1264ED 0%, #4a8bff 100%);
    --grad-soft: linear-gradient(180deg, #ffffff 0%, #f5f7fb 100%);

    --shadow-sm: 0 2px 8px rgba(13,27,42,.05);
    --shadow-md: 0 10px 30px rgba(13,27,42,.08);
    --shadow-lg: 0 24px 60px rgba(13,27,42,.18);
    --shadow-glow: 0 18px 50px rgba(18,100,237,.32);

    --radius: 14px;
    --radius-lg: 22px;
    --radius-xl: 30px;
    --maxw: 1280px;
    --pad: clamp(20px, 4vw, 56px);

    /* Tipografías brandbook: Montserrat (principal/display) + Poppins (secundaria/UI) */
    --display: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --sans: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--sans);
    color: var(--ink);
    background: var(--bg);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
a:hover { color: var(--ink); }
img, svg { max-width: 100%; height: auto; display: block; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }

.container {
    max-width: var(--maxw);
    margin-inline: auto;
    padding-inline: var(--pad);
    position: relative;
}
.container.narrow { max-width: 900px; }

.screen-reader-text {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}
.skip-link:focus {
    position: fixed;
    top: 12px; left: 12px;
    width: auto; height: auto; clip: auto;
    padding: 10px 14px;
    background: var(--yellow);
    z-index: 1000;
    border-radius: 999px;
}

/* === Tipografía / utilities =============================== */

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    line-height: 1.2;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 700;
}
.eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    background: var(--yellow);
    border-radius: 2px;
}

h1, h2, h3, p { margin-top: 0; }
h1, .hero h1 {
    font-family: var(--display);
    font-weight: 800;
    letter-spacing: -.025em;
    line-height: 1.02;
    font-size: clamp(42px, 6.4vw, 88px);
    margin-bottom: 24px;
}
h2 {
    font-family: var(--display);
    font-size: clamp(30px, 4vw, 54px);
    line-height: 1.08;
    letter-spacing: -.02em;
    font-weight: 700;
    margin-bottom: 18px;
}
h3 {
    font-family: var(--display);
    font-size: 21px;
    line-height: 1.25;
    letter-spacing: -.01em;
    font-weight: 600;
    margin-bottom: 10px;
}
p { color: var(--muted); }
.prose h2 {
    font-family: var(--sans);
    font-size: 24px;
    letter-spacing: -.02em;
    margin-top: 34px;
}
.prose a { text-decoration: underline; text-underline-offset: 3px; }

/* Highlight sutil del texto clave del hero */
.hl {
    background: linear-gradient(180deg, transparent 60%, rgba(18,100,237,.55) 60%);
    padding: 0 .12em;
}

/* === Botones / CTAs ======================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 750;
    transition: transform .18s var(--ease), background .25s, border-color .25s, box-shadow .25s;
    white-space: nowrap;
    position: relative;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
    background: var(--yellow);
    color: #fff;
    box-shadow: 0 8px 20px rgba(18,100,237,.32);
}
.btn-primary:hover {
    background: var(--yellow-deep);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(13,78,196,.45);
}
.btn-dark {
    background: var(--ink);
    color: #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,.18);
}
.btn-dark:hover {
    background: #000;
    color: #fff;
    transform: translateY(-2px);
}
.btn-light {
    background: #fff;
    color: var(--ink);
    border-color: var(--line);
}
.btn-light:hover {
    background: var(--yellow);
    border-color: var(--yellow);
    color: #fff;
}
.btn-ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--line-2);
}
.btn-ghost:hover {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
}
.btn-arrow::after {
    content: "→";
    font-size: 16px;
    transition: transform .2s var(--ease);
}
.btn-arrow:hover::after { transform: translateX(4px); }

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

/* === Topbar / Header ====================================== */

.topbar {
    background: var(--grad-ink);
    color: #dadad4;
    font-size: 12.5px;
}
.topbar-inner {
    min-height: 42px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.topbar-left, .topbar-right {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}
.topbar a, .topbar span { color: #c9c9c2; }
.topbar a { transition: color .2s; }
.topbar a:hover { color: var(--yellow); }
.topbar .dot {
    display: inline-block;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--yellow);
    box-shadow: 0 0 12px rgba(18,100,237,.6);
}
.lang { display: inline-flex; align-items: center; gap: 6px; }
.lang strong { color: #fff; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,.92);
    border-bottom: 1px solid var(--line);
    backdrop-filter: saturate(160%) blur(14px);
    -webkit-backdrop-filter: saturate(160%) blur(14px);
    transition: box-shadow .25s;
}
.site-header.is-scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.06); }

/* El header rompe el límite del .container para dejar respirar al nav
   sin afectar al resto de la web. Mantengo el padding lateral. */
.site-header .container.header-inner {
    max-width: 1480px;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 78px;
    gap: 24px;
}
.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.logo-img {
    display: block;
    width: auto;
    height: 52px;
    max-height: 52px;
    object-fit: contain;
    transition: transform .25s var(--ease);
}
.logo:hover .logo-img { transform: scale(1.02); }
.logo-img-footer {
    height: 64px;
    max-height: 64px;
}
/* Compat: si algún rincón legacy aún renderiza el logo de texto, no se rompe */
.logo-mark {
    font-family: var(--display);
    font-weight: 800;
    font-size: 22px;
    letter-spacing: -.02em;
    color: var(--ink);
    text-transform: lowercase;
}
.logo-mark b {
    display: inline-block;
    padding: 0 6px;
    border-radius: 5px;
    background: var(--yellow);
    color: #fff;
    box-shadow: 0 2px 8px rgba(18,100,237,.5);
}
.logo-sub {
    font-size: 10px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--muted);
}
.site-nav { display: flex; align-items: center; gap: 12px; }
.nav-list {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    align-items: center;
    gap: 2px;
}
.nav-list li { white-space: nowrap; }
.nav-list a {
    display: inline-flex;
    padding: 9px 14px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink-2);
    transition: background .2s, color .2s;
    position: relative;
}
.nav-list a:hover { background: var(--bg-soft); color: var(--ink); }

/* Página actual: subrayado azul + color reforzado */
.nav-list .is-current > a,
.nav-list a[aria-current="page"] {
    color: var(--yellow);
    font-weight: 700;
}
.nav-list .is-current > a::after,
.nav-list a[aria-current="page"]::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 2px;
    height: 2px;
    border-radius: 2px;
    background: var(--yellow);
}
.menu-toggle {
    display: none;
    border: 1px solid var(--line-2);
    border-radius: 999px;
    background: #fff;
    padding: 9px 16px;
    font-weight: 700;
}

/* === Hero principal (home) ================================ */

.hero {
    position: relative;
    padding: clamp(56px, 9vw, 120px) 0 clamp(50px, 8vw, 100px);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    isolation: isolate;
    overflow: hidden;
}
/* doble overlay: blanco translúcido + degradado de marca */
.hero::before {
    content: "";
    position: absolute; inset: 0;
    background: var(--grad-hero-light);
    z-index: -2;
    pointer-events: none;
}
.hero::after {
    content: "";
    position: absolute;
    right: -160px; top: -160px;
    width: 520px; height: 520px;
    background: radial-gradient(circle, rgba(18,100,237,.55) 0%, rgba(18,100,237,0) 70%);
    z-index: -1;
    pointer-events: none;
    filter: blur(20px);
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: clamp(30px, 6vw, 80px);
    align-items: center;
}
.hero-lede {
    font-size: 18px;
    max-width: 62ch;
    margin-bottom: 32px;
    color: var(--ink-2);
}
.hero-meta {
    display: flex;
    gap: 28px;
    padding-top: 28px;
    margin-top: 42px;
    border-top: 1px solid var(--line);
    flex-wrap: wrap;
}
.hero-meta div { min-width: 120px; }
.hero-meta strong {
    display: block;
    font-family: var(--display);
    font-size: 46px;
    line-height: 1;
    letter-spacing: -.04em;
    color: var(--ink);
}
.hero-meta strong + span {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    color: var(--muted);
}

.hero-panel {
    position: relative;
    min-height: 560px;
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
    display: flex;
    align-items: center;
}
.hero-panel-card {
    position: relative;
    z-index: 1;
    width: 100%;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: clamp(24px, 3vw, 36px);
    box-shadow: var(--shadow-lg);
}
.hero-panel-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-lg);
    padding: 1px;
    background: linear-gradient(135deg, rgba(18,100,237,.6), rgba(0,0,0,0) 50%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
}
.hero-panel-card h2 {
    font-family: var(--sans);
    font-size: clamp(24px, 3vw, 34px);
    letter-spacing: -.035em;
    line-height: 1.1;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 999px;
    background: var(--yellow);
    color: #fff;
    padding: 7px 13px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 18px;
    box-shadow: 0 4px 12px rgba(18,100,237,.4);
}
.badge::before {
    content: "";
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #fff;
}

/* === Service strip (cinta animada) ======================== */

.service-strip {
    overflow: hidden;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: linear-gradient(90deg, #fff 0%, #f5f7fb 50%, #fff 100%);
}
.strip-track {
    display: flex;
    width: max-content;
    white-space: nowrap;
    padding: 20px 0;
    color: var(--ink-2);
    font-weight: 700;
    animation: amv-scroll 38s linear infinite;
}
.strip-set {
    display: flex;
    flex-shrink: 0;
    gap: 42px;
    margin: 0;
    padding: 0 21px;
    list-style: none;
}
.strip-set li {
    display: inline-flex;
    align-items: center;
}
.strip-set li::before {
    content: "";
    display: inline-block;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--yellow);
    margin-right: 12px;
    vertical-align: middle;
    box-shadow: 0 0 10px rgba(18,100,237,.6);
}
@keyframes amv-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* === Features grid ======================================== */

.features,
.services,
.faq,
.reviews,
.content-section {
    padding: clamp(60px, 8vw, 110px) 0;
}
/* Reducir espacio vertical cuando .features va justo después de .services,
   manteniendo simetría arriba/abajo entre ambas secciones */
.services {
    padding-bottom: clamp(36px, 5vw, 60px);
}
.services + .features {
    padding-top: clamp(36px, 5vw, 60px);
}
.section-soft {
    background:
        radial-gradient(1000px 400px at 80% 0%, rgba(18,100,237,.10) 0%, rgba(18,100,237,0) 60%),
        var(--bg-soft);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.section-dark {
    background: var(--grad-ink);
    color: #fff;
}
.section-dark p,
.section-dark .eyebrow { color: rgba(255,255,255,.72); }
.section-dark h2 { color: #fff; }

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--line);
    gap: 1px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.feature-card {
    background: #fff;
    padding: 38px 32px 42px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: background .25s;
}
.feature-card:hover { background: #f5f7fb; }
.feature-card p { font-size: 14.5px; }
.feature-card a {
    margin-top: auto;
    font-weight: 800;
    font-size: 14px;
    color: var(--ink);
    border-bottom: 2px solid var(--yellow);
    align-self: flex-start;
    padding-bottom: 2px;
    transition: border-color .2s, color .2s;
}
.feature-card a:hover { color: var(--yellow-deep); border-color: var(--ink); }

.card-num,
.service-num,
.why-card span,
.process-grid span {
    font-family: var(--display);
    font-style: italic;
    color: var(--muted);
}

/* === Sección visual de imágenes (nuevo en home) ============ */
.visual-band {
    padding: clamp(50px, 7vw, 90px) 0;
    background: #fff;
}
.visual-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    grid-template-rows: 260px 260px;
    gap: 14px;
}
.visual-cell {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-soft);
    box-shadow: var(--shadow-md);
    isolation: isolate;
}
.visual-cell img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .6s var(--ease);
}
.visual-cell:hover img { transform: scale(1.06); }
.visual-cell::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(10,10,10,.55) 100%);
    z-index: 1;
    pointer-events: none;
}
.visual-cell .vc-label {
    position: absolute;
    bottom: 14px; left: 16px;
    z-index: 2;
    color: #fff;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: .02em;
    text-shadow: 0 2px 12px rgba(0,0,0,.45);
}
.visual-cell .vc-tag {
    position: absolute;
    top: 14px; left: 16px;
    z-index: 2;
    background: var(--yellow);
    color: #fff;
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.visual-cell--tall { grid-row: span 2; }

/* === Section heads ======================================== */

.section-head { margin-bottom: 44px; }
.section-head.split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, .55fr);
    gap: 40px;
    align-items: end;
}
.section-head.centered {
    text-align: center;
    max-width: 820px;
    margin-inline: auto;
}
.section-head.centered .eyebrow { justify-content: center; }
.section-head.centered .eyebrow::before { display: none; }
.section-head p { font-size: 17px; }

/* === Why grid ============================================= */

.why { padding: clamp(64px, 8vw, 115px) 0; }
.why-grid,
.process-grid,
.mini-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.why-card,
.process-grid article,
.mini-grid article,
.panel-card,
.hero-summary,
.form-panel,
.trust-card,
.review,
.contact-list a,
.contact-list div {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
    transition: transform .25s var(--ease), box-shadow .25s, border-color .25s;
}
.why-card:hover,
.process-grid article:hover,
.mini-grid article:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--line-2);
}
.why-card p,
.process-grid p,
.mini-grid p { font-size: 14.5px; margin-bottom: 0; }

.why-card span {
    display: inline-block;
    font-size: 28px;
    margin-bottom: 14px;
}

/* === Services grid ======================================== */

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.service-card {
    position: relative;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform .25s var(--ease), box-shadow .25s;
    color: #fff;
    isolation: isolate;
}
.service-card .sc-bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    z-index: -2;
    transition: transform .6s var(--ease);
}
.service-card::before {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(10,10,10,.35) 0%, rgba(10,10,10,.55) 45%, rgba(10,10,10,.85) 100%);
    z-index: -1;
    transition: opacity .25s;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.service-card:hover .sc-bg { transform: scale(1.06); }
.service-card:hover::before {
    background: linear-gradient(180deg, rgba(10,10,10,.45) 0%, rgba(10,10,10,.85) 100%);
}
.service-card .sc-body {
    padding: 26px 26px 28px;
    color: #fff;
}
.service-card .service-num {
    color: rgba(255,255,255,.7);
    font-style: italic;
    font-size: 15px;
    display: block;
    margin-bottom: 8px;
}
.service-tag {
    position: absolute;
    top: 18px; left: 18px;
    background: var(--muted);
    color: #fff;
    border-radius: 999px;
    padding: 5px 11px;
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 800;
    z-index: 1;
}
.service-card h3 {
    font-size: 28px;
    font-family: var(--display);
    font-weight: 400;
    color: #fff;
    margin-top: 0;
    margin-bottom: 10px;
    letter-spacing: -.02em;
    text-shadow: 0 2px 6px rgba(0,0,0,.45);
}
.service-card p {
    color: rgba(255,255,255,.92);
    font-size: 14.5px;
    margin-bottom: 18px;
    text-shadow: 0 1px 2px rgba(0,0,0,.35);
}
.service-card strong,
.service-card .sc-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--yellow);
    color: #fff;
    border-radius: 999px;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    box-shadow: 0 6px 18px rgba(18,100,237,.35);
    transition: background .2s var(--ease), transform .2s var(--ease), box-shadow .2s;
    margin-top: 4px;
}
.service-card strong::after,
.service-card .sc-cta::after {
    content: "→";
    transition: transform .2s var(--ease);
}
.service-card:hover strong,
.service-card:hover .sc-cta {
    background: var(--yellow-deep);
    box-shadow: 0 10px 24px rgba(18,100,237,.45);
}
.service-card:hover strong::after,
.service-card:hover .sc-cta::after { transform: translateX(4px); }

/* === Process ============================================== */

.process { padding: clamp(64px, 8vw, 110px) 0; }
.process-grid {
    grid-template-columns: repeat(4, 1fr);
    position: relative;
}
/* Línea conectora horizontal entre los pasos */
.process-grid::before {
    content: "";
    position: absolute;
    top: calc(28px + 24px); /* padding-top de la card (28px) + radio del círculo (24px) */
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, var(--blue-soft) 0%, var(--blue) 50%, var(--blue-soft) 100%);
    z-index: 0;
    border-radius: 2px;
}
.process-grid article {
    position: relative;
    z-index: 1;
    text-align: center;
}
.process-grid span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--grad-yellow);
    color: #fff;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 800;
    font-style: normal;
    font-family: var(--sans);
    box-shadow: 0 8px 18px rgba(18,100,237,.4);
    border: 4px solid #fff;
    position: relative;
    z-index: 1;
}
@media (max-width: 1023px) {
    .process-grid::before { display: none; }
}

/* === CTA bands ============================================ */

.cta-band {
    background: var(--grad-ink);
    color: #fff;
    padding: clamp(60px, 8vw, 110px) 0;
    position: relative;
    overflow: hidden;
}
.cta-band::before {
    content: "";
    position: absolute;
    left: -100px; bottom: -120px;
    width: 480px; height: 480px;
    background: radial-gradient(circle, rgba(18,100,237,.30) 0%, rgba(18,100,237,0) 70%);
    pointer-events: none;
}
.cta-band::after {
    content: "";
    position: absolute;
    right: -80px; top: -80px;
    width: 320px; height: 320px;
    background: radial-gradient(circle, rgba(18,100,237,.18) 0%, rgba(18,100,237,0) 70%);
    pointer-events: none;
}
.cta-band.small { padding: clamp(44px, 6vw, 80px) 0; }
.cta-band .eyebrow,
.cta-band p { color: rgba(255,255,255,.78); }
.cta-band .eyebrow::before { background: var(--yellow); }
.cta-band h2 { color: #fff; }
.cta-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
    gap: 44px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.contact-cards {
    display: grid;
    gap: 14px;
}
.contact-cards a {
    display: block;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius);
    padding: 22px;
    transition: transform .2s var(--ease), background .2s, border-color .2s;
    backdrop-filter: blur(8px);
}
.contact-cards a:hover {
    background: rgba(18,100,237,.10);
    border-color: var(--yellow);
    transform: translateX(4px);
}
.contact-cards span,
.contact-list span {
    display: block;
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted-2);
    margin-bottom: 4px;
}
.contact-cards strong { font-size: 20px; color: #fff; }

/* === FAQ ================================================== */

.faq-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: clamp(32px, 6vw, 80px);
    align-items: start;
}
.faq-list {
    border-top: 1px solid var(--line);
    border-radius: 0;
}
.faq-item {
    border-bottom: 1px solid var(--line);
    transition: background .2s;
}
.faq-item:hover { background: rgba(18,100,237,.04); }
.faq-q {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    background: transparent;
    border: 0;
    text-align: left;
    padding: 24px 0;
    font-weight: 750;
    color: var(--ink);
    font-size: 16px;
}
.faq-q span {
    flex-shrink: 0;
    width: 32px; height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line-2);
    border-radius: 50%;
    transition: transform .25s var(--ease), background .25s, border-color .25s;
    font-weight: 700;
}
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s var(--ease);
}
.faq-a p { padding-bottom: 22px; margin-bottom: 0; }
.faq-item.open .faq-a { max-height: 280px; }
.faq-item.open .faq-q span {
    transform: rotate(45deg);
    background: var(--yellow);
    border-color: var(--yellow);
    box-shadow: 0 4px 12px rgba(18,100,237,.5);
}

/* === Trust ================================================ */

.trust { padding: clamp(60px, 8vw, 100px) 0; }
.trust-grid {
    display: grid;
    grid-template-columns: 1fr .75fr;
    gap: 42px;
    align-items: center;
}
.trust-card {
    min-height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}
.trust-card::before {
    content: "";
    position: absolute;
    right: -40px; top: -40px;
    width: 160px; height: 160px;
    background: radial-gradient(circle, rgba(18,100,237,.25) 0%, rgba(18,100,237,0) 70%);
    pointer-events: none;
}
.trust-card span {
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 12px;
    font-weight: 700;
}
.trust-card strong {
    display: block;
    font-family: var(--display);
    font-size: 48px;
    line-height: 1;
    letter-spacing: -.04em;
    margin: 14px 0;
    color: var(--ink);
}
.rating-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 22px 26px;
    background: #fff;
    position: relative;
    overflow: hidden;
}
.rating-card::before {
    content: "★";
    position: absolute;
    right: 18px; top: 12px;
    font-size: 32px;
    color: var(--yellow);
    line-height: 1;
}
.rating-card strong {
    display: block;
    font-family: var(--display);
    font-size: 40px;
    line-height: 1;
    color: var(--ink);
}
.rating-card span { color: var(--muted); font-size: 13px; }
.review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.review {
    transition: transform .25s var(--ease), box-shadow .25s;
}
.review:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.review .stars {
    color: var(--yellow-deep);
    letter-spacing: 2px;
    margin-bottom: 12px;
    font-size: 16px;
}
.review span { color: var(--muted); font-size: 13px; }
.review p { color: var(--ink-2); }

/* === SEO band ============================================= */

.seo-band {
    padding: clamp(50px, 7vw, 90px) 0;
    background: var(--grad-yellow);
    position: relative;
    overflow: hidden;
}
.seo-band::before {
    content: "";
    position: absolute;
    left: -80px; bottom: -80px;
    width: 280px; height: 280px;
    background: radial-gradient(circle, rgba(10,10,10,.08) 0%, rgba(10,10,10,0) 70%);
    pointer-events: none;
}
.seo-band h2 {
    font-family: var(--display);
    font-size: clamp(30px, 4vw, 48px);
    margin-bottom: 28px;
    color: #fff;
}
.seo-band p { color: rgba(255,255,255,.9); }
.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    position: relative;
    z-index: 1;
}
.tag-list a {
    display: inline-flex;
    border: 1px solid rgba(255,255,255,.55);
    background: rgba(255,255,255,.92);
    color: var(--ink);
    border-radius: 999px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 700;
    transition: all .2s var(--ease);
}
.tag-list a:hover {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
    transform: translateY(-2px);
}

/* === Page heros (internas) ================================ */

.page-hero {
    position: relative;
    padding: clamp(58px, 8vw, 120px) 0 clamp(58px, 8vw, 110px);
    background-color: var(--bg-soft);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    border-bottom: 1px solid var(--line);
    isolation: isolate;
    overflow: hidden;
}
.page-hero::before {
    content: "";
    position: absolute; inset: 0;
    background:
        linear-gradient(120deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.72) 55%, rgba(18,100,237,.20) 100%);
    z-index: -1;
    pointer-events: none;
}
.page-hero::after {
    content: "";
    position: absolute;
    right: -160px; top: -160px;
    width: 480px; height: 480px;
    background: radial-gradient(circle, rgba(18,100,237,.45) 0%, rgba(18,100,237,0) 70%);
    z-index: -1;
    pointer-events: none;
    filter: blur(10px);
}
.page-hero.compact { padding: clamp(50px, 7vw, 95px) 0 clamp(50px, 7vw, 90px); }
.page-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, .72fr);
    gap: 44px;
    align-items: center;
}
.page-hero p { font-size: 18px; max-width: 64ch; color: var(--ink-2); }

.hero-summary h2,
.panel-card h2 {
    font-family: var(--sans);
    font-size: 24px;
    letter-spacing: -.02em;
}
.hero-summary {
    box-shadow: var(--shadow-md);
}

/* === Lists ================================================ */

.check-list,
.task-list,
.number-list {
    padding: 0;
    margin: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}
.check-list li,
.task-list li,
.number-list li {
    position: relative;
    padding-left: 30px;
    color: var(--ink-2);
}
.check-list li::before,
.task-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--yellow);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 900;
    box-shadow: 0 0 0 4px rgba(18,100,237,.18);
}
.number-list { counter-reset: step; }
.number-list li { counter-increment: step; padding-left: 36px; }
.number-list li::before {
    content: counter(step);
    position: absolute;
    left: 0; top: 0;
    width: 24px; height: 24px;
    border-radius: 50%;
    background: var(--yellow);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 900;
    box-shadow: 0 4px 12px rgba(18,100,237,.32);
}

/* === Two-col / forms ====================================== */

.two-col,
.form-grid,
.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(300px, 1.05fr);
    gap: clamp(28px, 5vw, 60px);
    align-items: start;
}
.task-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}
.task-list li {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 20px 20px 20px 50px;
    transition: border-color .2s, transform .2s var(--ease);
}
.task-list li:hover {
    border-color: var(--yellow);
    transform: translateX(2px);
}
.task-list li::before {
    left: 18px;
    top: 18px;
}
.mini-grid { grid-template-columns: repeat(3, 1fr); }
.mini-grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1023px) {
    .mini-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .mini-grid--4 { grid-template-columns: 1fr; }
}
.form-panel { min-height: 220px; }
.shortcode-fallback p { margin-bottom: 20px; }

/* === Contact list ========================================= */

.contact-list {
    display: grid;
    gap: 12px;
}
.contact-list a,
.contact-list div { display: block; }
.contact-list a { transition: border-color .2s, transform .2s var(--ease); }
.contact-list a:hover {
    border-color: var(--yellow);
    transform: translateX(2px);
}
.contact-list strong { color: var(--ink); }

/* === Mosaico de servicio (nuevo en páginas de servicio) === */

.service-mosaic {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    grid-template-rows: 220px 220px;
    gap: 12px;
    margin-top: 28px;
}
.service-mosaic .mc {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background-size: cover;
    background-position: center;
    position: relative;
    box-shadow: var(--shadow-md);
    isolation: isolate;
    transition: transform .35s var(--ease);
}
.service-mosaic .mc::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(10,10,10,.45) 100%);
    z-index: 1;
}
.service-mosaic .mc:hover { transform: scale(1.015); }
.service-mosaic .mc-main { grid-row: span 2; }

.service-mosaic .mc-caption {
    position: absolute;
    bottom: 14px; left: 16px;
    z-index: 2;
    color: #fff;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: .04em;
    text-shadow: 0 2px 12px rgba(0,0,0,.4);
}
.service-mosaic .mc-badge {
    position: absolute;
    top: 14px; left: 16px;
    z-index: 2;
    background: var(--yellow);
    color: #fff;
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

/* Banner CTA contextual */
.service-cta-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    flex-wrap: wrap;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-soft) 100%);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    margin-top: 36px;
    box-shadow: var(--shadow-md);
}
.service-cta-banner h3 {
    font-family: var(--display);
    font-size: 26px;
    font-weight: 400;
    letter-spacing: -.02em;
    margin: 0;
    color: var(--ink);
}
.service-cta-banner p { color: var(--ink-2); margin: 6px 0 0; max-width: 50ch; }

/* === Legal pages ========================================== */
.legal-page .prose p { color: var(--ink-2); }
.legal-page .prose h2 {
    border-top: 1px solid var(--line);
    padding-top: 22px;
    color: var(--ink);
}

/* === Footer =============================================== */

.site-footer {
    background: var(--grad-ink);
    color: #d9d9d2;
    padding: clamp(56px, 8vw, 90px) 0 32px;
    position: relative;
    overflow: hidden;
}
.site-footer::before {
    content: "";
    position: absolute;
    right: -120px; top: -120px;
    width: 320px; height: 320px;
    background: radial-gradient(circle, rgba(18,100,237,.10) 0%, rgba(18,100,237,0) 70%);
    pointer-events: none;
}
.footer-top {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr 1fr;
    gap: 38px;
    padding-bottom: 46px;
    border-bottom: 1px solid #292929;
    position: relative;
}
.site-footer .logo-mark { color: #fff; }
.site-footer .logo-sub { color: #a8a8a1; }
.footer-brand p {
    max-width: 40ch;
    color: #a8a8a1;
    margin-top: 16px;
}
.footer-title {
    font-family: var(--sans);
    color: #fff;
    font-size: 13px;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 18px;
    font-weight: 800;
    position: relative;
    padding-bottom: 8px;
}
.footer-title::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 28px; height: 2px;
    background: var(--yellow);
    border-radius: 2px;
}
.footer-links {
    list-style: none;
    padding: 0; margin: 0;
    display: grid;
    gap: 10px;
}
.footer-links a,
.footer-links span {
    color: #bdbdb5;
    font-size: 14px;
    transition: color .2s, padding-left .2s;
}
.footer-links a:hover {
    color: var(--yellow);
    padding-left: 4px;
}
.footer-bottom {
    padding-top: 26px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    color: #8e8e88;
    font-size: 13px;
}
.footer-bottom p {
    color: #8e8e88;
    margin: 0;
}
.legal-nav {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.legal-nav a { color: #bdbdb5; transition: color .2s; }
.legal-nav a:hover { color: var(--yellow); }

/* === WA floating ========================================= */

.wa-floating {
    position: fixed;
    right: 22px; bottom: 22px;
    z-index: 90;
    width: 62px; height: 62px;
    border-radius: 50%;
    background: var(--ink);
    color: var(--yellow);
    display: grid;
    place-items: center;
    font-weight: 900;
    box-shadow: 0 18px 40px rgba(0,0,0,.32), 0 0 0 0 rgba(18,100,237,.55);
    border: 2px solid var(--yellow);
    transition: transform .25s var(--ease), box-shadow .25s;
    animation: amv-wa-pulse 2.6s ease-out infinite;
}
.wa-floating:hover {
    transform: translateY(-3px) scale(1.04);
    color: var(--yellow);
    box-shadow: 0 22px 48px rgba(0,0,0,.38);
}
@keyframes amv-wa-pulse {
    0%   { box-shadow: 0 18px 40px rgba(0,0,0,.32), 0 0 0 0 rgba(18,100,237,.55); }
    70%  { box-shadow: 0 18px 40px rgba(0,0,0,.32), 0 0 0 18px rgba(18,100,237,0); }
    100% { box-shadow: 0 18px 40px rgba(0,0,0,.32), 0 0 0 0 rgba(18,100,237,0); }
}

/* === Reveal on scroll ===================================== */

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
    .reveal, .reveal.is-visible {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .wa-floating { animation: none; }
    .strip-track { animation: none; }
}

/* === Responsive =========================================== */

@media (max-width: 1340px) {
    .nav-list a { padding-inline: 10px; font-size: 13.5px; }
}

@media (max-width: 1120px) {
    .service-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid, .process-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1.2fr 1fr 1fr; }
    .visual-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 240px 240px 240px;
    }
    .visual-cell--tall { grid-row: span 1; }
    .service-mosaic {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 200px 200px;
    }
}

@media (max-width: 1023px) {
    .topbar-right { display: none; }
    .topbar-inner { justify-content: center; }
    .header-inner { min-height: 66px; }
    .logo-sub { display: none; }
    .logo-img { height: 42px; max-height: 42px; }
    .menu-toggle { display: inline-flex; }
    .site-nav {
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        display: none;
        background: #fff;
        border-bottom: 1px solid var(--line);
        padding: 18px var(--pad) 22px;
        flex-direction: column;
        align-items: stretch;
        box-shadow: 0 10px 30px rgba(0,0,0,.08);
    }
    .site-nav.is-open { display: flex; }
    .nav-list { flex-direction: column; align-items: stretch; }
    .nav-list a { display: flex; padding: 12px 0; }
    .nav-list .is-current > a::after,
    .nav-list a[aria-current="page"]::after { left: 0; right: 0; bottom: 4px; }
    .nav-cta { width: 100%; }
    .hero-grid,
    .page-hero-grid,
    .section-head.split,
    .cta-grid,
    .faq-grid,
    .trust-grid,
    .two-col,
    .form-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .hero-panel { min-height: auto; }
    .feature-grid,
    .review-grid,
    .mini-grid,
    .footer-top { grid-template-columns: 1fr; }
    .task-list { grid-template-columns: 1fr; }
    .service-grid { grid-template-columns: 1fr; }
    .visual-grid {
        grid-template-columns: 1fr;
        grid-template-rows: 220px 220px 220px;
    }
    .service-mosaic {
        grid-template-columns: 1fr;
        grid-template-rows: 200px 200px 200px;
    }
    .service-mosaic .mc-main { grid-row: span 1; }
    .service-cta-banner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    h1, .hero h1 { font-size: clamp(42px, 14vw, 64px); }
    h2 { font-size: clamp(32px, 10vw, 46px); }
    .topbar-left a:nth-child(n+3) { display: none; }
    .hero { padding-top: 44px; }
    .hero-meta { gap: 20px; }
    .hero-meta div { min-width: 92px; }
    .why-grid,
    .process-grid { grid-template-columns: 1fr; }
    .service-card { min-height: 280px; }
    .footer-bottom { align-items: flex-start; flex-direction: column; }
    .wa-floating { width: 56px; height: 56px; right: 16px; bottom: 16px; }
    .service-cta-banner { padding: 22px; }
}

/* === Heros centrados (sin caja blanca lateral) ============ */
/* Aplica a service-detail y quines-somos */
.hero-centered .container { display: flex; justify-content: center; }
.hero-centered-inner {
    max-width: 820px;
    width: 100%;
    text-align: center;
}
.hero-centered-inner h1 { margin-left: auto; margin-right: auto; }
.hero-centered-inner p {
    margin-left: auto;
    margin-right: auto;
    max-width: 64ch;
}
.hero-centered-inner .actions {
    justify-content: center;
}

/* Front-page: ahora hero ocupa una sola columna centrada */
.hero .hero-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
}
.hero .hero-copy {
    max-width: 820px;
    width: 100%;
}
.hero .hero-lede {
    margin-left: auto;
    margin-right: auto;
}
.hero .hero-actions {
    justify-content: center;
}
.hero .hero-meta {
    justify-content: center;
    border-top: 0;
    margin-top: 28px;
    padding-top: 0;
}
.hero .hero-panel { display: none; }

/* Compact heros: centrar el contenido del container narrow */
.page-hero.compact .container.narrow {
    text-align: center;
}
.page-hero.compact .container.narrow p {
    margin-left: auto;
    margin-right: auto;
}

/* === Why section — variante dark con imagen de fondo === */
.why.why--dark {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background-image: url('https://www.limpiezasamv.com/wp-content/uploads/2026/05/casa-limpiezas-amv.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    border-top: 1px solid var(--ink);
    border-bottom: 1px solid var(--ink);
}
.why.why--dark::before {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(13,27,42,.60) 0%, rgba(13,27,42,.72) 100%);
    z-index: -1;
    pointer-events: none;
}
.why.why--dark .eyebrow { color: rgba(255,255,255,.75); }
.why.why--dark .eyebrow::before { background: var(--yellow); }
.why.why--dark h2 { color: #fff; }
.why.why--dark .section-head.centered {
    text-align: center;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}
.why.why--dark .section-head.centered h2 {
    margin-left: auto;
    margin-right: auto;
}

/* Cards en modo dark */
.why.why--dark .why-card {
    background: rgba(13,27,42,.55);
    border: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: #fff;
}
.why.why--dark .why-card:hover {
    background: rgba(13,27,42,.7);
    border-color: rgba(255,255,255,.22);
    box-shadow: 0 14px 32px rgba(0,0,0,.35);
}
.why.why--dark .why-card h3 {
    color: #fff;
    margin-top: 4px;
    margin-bottom: 8px;
}
.why.why--dark .why-card p {
    color: rgba(255,255,255,.82);
}

/* Iconos SVG en las cards */
.why-card .why-icon {
    width: 40px;
    height: 40px;
    color: var(--yellow);
    margin-bottom: 14px;
    display: block;
}
.why.why--dark .why-card .why-icon {
    color: #ffffff;
    background: rgba(18,100,237,.25);
    border-radius: 12px;
    padding: 8px;
    width: 48px;
    height: 48px;
    box-sizing: border-box;
}

/* ============================================================
   1.3.0 — Ajustes solicitados (PDF cambios)
   - Front: feature-grid accent (azul)
   - Servicios: scope centrado 3x2, mini-grid con fondo (sin iconos)
   - Servicios: CTA banda blanca con texto negro
   - Quienes somos: galería de equipo con flechas
   - Contacto: iconos, mapa, reseñas
   - Header: botón hamburguesa móvil
   ============================================================ */

/* --- Feature cards (Reserva/Personal/Valoración) más colorido --- */
.feature-grid--accent {
    background: var(--blue);
    border-color: var(--blue);
}
.features--accent .feature-card {
    background: #fff;
    border-left: 4px solid var(--blue);
    border-right: 4px solid var(--blue);
}
.features--accent .feature-card:first-child {
    border-left: 0;
}
.features--accent .feature-card:last-child {
    border-right: 0;
}
.features--accent .feature-card h2,
.features--accent .feature-card .card-num {
    color: var(--blue);
}
.features--accent .feature-card a {
    color: var(--blue);
    border-bottom-color: var(--blue);
    font-weight: 800;
}
.features--accent .feature-card a:hover {
    color: var(--blue-deep);
    border-bottom-color: var(--blue-deep);
}
@media (max-width: 1023px) {
    .features--accent .feature-card {
        border-left: 4px solid var(--blue);
        border-right: 4px solid var(--blue);
    }
}

/* --- Tasks centradas en 3 cols x 2 filas (página servicio) --- */
.service-scope .section-head.centered {
    margin-bottom: 28px;
}
.task-list--centered {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: 1100px;
    margin-inline: auto;
}
.task-list--centered li {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 22px 24px;
    font-size: 15px;
    line-height: 1.5;
    position: relative;
    padding-left: 52px;
    transition: transform .25s var(--ease), box-shadow .25s, border-color .25s;
}
.task-list--centered li::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 22px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--blue);
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 14px 14px;
}
.task-list--centered li:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--line-2);
}
@media (max-width: 900px) {
    .task-list--centered { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 600px) {
    .task-list--centered { grid-template-columns: 1fr; }
}

/* --- Mini-grid de servicios (áreas) con imagen de fondo, sin iconos --- */
.service-areas-band {
    position: relative;
    background: var(--bg-soft);
    padding: clamp(60px, 8vw, 100px) 0;
    isolation: isolate;
    overflow: hidden;
}
.service-areas-band.has-bg {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.service-areas-band.has-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13,27,42,.82) 0%, rgba(13,27,42,.70) 45%, rgba(18,100,237,.55) 100%);
    z-index: -1;
    pointer-events: none;
}
.service-areas-band.has-bg .eyebrow { color: rgba(255,255,255,.78); }
.service-areas-band.has-bg .eyebrow::before { background: var(--yellow); }
.service-areas-band.has-bg .section-head.centered h2,
.service-areas-band.has-bg h2 { color: #fff; }
.service-areas-band.has-bg .mini-grid article {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.18);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.service-areas-band.has-bg .mini-grid article h3 { color: #fff; }
.service-areas-band.has-bg .mini-grid article p { color: rgba(255,255,255,.85); }
.service-areas-band.has-bg .mini-grid article:hover {
    background: rgba(255,255,255,.10);
    border-color: rgba(255,255,255,.35);
}

/* --- CTA banda variante clara (blanco con destellos azules y texto negro) --- */
.cta-band--light {
    background: #ffffff;
    color: var(--ink);
}
.cta-band--light::before {
    background: radial-gradient(circle, rgba(18,100,237,.18) 0%, rgba(18,100,237,0) 70%);
}
.cta-band--light::after {
    background: radial-gradient(circle, rgba(18,100,237,.12) 0%, rgba(18,100,237,0) 70%);
}
.cta-band--light .eyebrow,
.cta-band--light p { color: var(--muted); }
.cta-band--light .eyebrow::before { background: var(--blue); }
.cta-band--light h2 { color: var(--ink); }

/* --- Galería de equipo (quienes somos) --- */
.team-gallery-section { padding-top: 0; }
.team-gallery {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-soft);
    box-shadow: var(--shadow-md);
}
.team-gallery-track {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: var(--bg-soft);
}
.team-gallery-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .45s var(--ease);
    pointer-events: none;
}
.team-gallery-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}
.team-gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.team-gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 0;
    background: rgba(255,255,255,.92);
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: background .2s, transform .2s;
    z-index: 2;
}
.team-gallery-nav:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.05);
}
.team-gallery-nav svg {
    width: 22px;
    height: 22px;
}
.team-gallery-prev { left: 16px; }
.team-gallery-next { right: 16px; }
.team-gallery-dots {
    position: absolute;
    bottom: 16px;
    left: 0; right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 2;
}
.team-gallery-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 0;
    padding: 0;
    background: rgba(255,255,255,.55);
    cursor: pointer;
    transition: background .2s, transform .2s;
}
.team-gallery-dot.is-active {
    background: #fff;
    transform: scale(1.2);
}
.team-gallery-dot:hover {
    background: rgba(255,255,255,.85);
}
@media (max-width: 640px) {
    .team-gallery-nav { width: 40px; height: 40px; }
    .team-gallery-prev { left: 8px; }
    .team-gallery-next { right: 8px; }
}

/* --- Contacto: iconos en contact-list, mapa --- */
.contact-list--icons a,
.contact-list--icons div {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.contact-list--icons .contact-icon {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--blue-soft);
    color: var(--blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.contact-list--icons .contact-icon svg {
    width: 22px;
    height: 22px;
}
.contact-list--icons .contact-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
    flex: 1;
}
.contact-list--icons .contact-text span {
    font-size: 12.5px;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--muted);
    font-weight: 600;
}
.contact-list--icons .contact-text strong {
    font-size: 15px;
    color: var(--ink);
    font-weight: 700;
    word-break: break-word;
}
.contact-list--icons a:hover .contact-icon {
    background: var(--blue);
    color: #fff;
}
/* Card de teléfonos: un icono, dos números */
.contact-phones .contact-text strong a {
    display: inline;
    padding: 0;
    border: 0;
    background: none;
    color: var(--ink);
}
.contact-phones .contact-text strong a:hover {
    color: var(--blue);
}
/* Redes sociales: label + iconos en la misma fila, sin caja interna */
.contact-social {
    flex-direction: row !important;
    align-items: center !important;
    flex-wrap: wrap;
    gap: 12px !important;
}
.contact-social-label {
    flex: 0 0 100%;
    font-size: 12.5px;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--muted);
    font-weight: 600;
}
.contact-social > a {
    flex: 0 0 auto !important;
    width: 44px;
    height: 44px;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 12px;
    background: var(--blue-soft) !important;
    color: var(--blue);
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    transition: background .2s, color .2s, transform .2s var(--ease);
}
.contact-social > a svg {
    width: 22px;
    height: 22px;
}
.contact-social > a:hover {
    background: var(--blue) !important;
    color: #fff;
    transform: translateY(-2px);
}
.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--line);
}
.contact-map iframe {
    display: block;
    width: 100%;
}

/* --- Menú móvil: icono hamburguesa --- */
.menu-toggle-icon {
    display: inline-flex;
    flex-direction: column;
    justify-content: space-between;
    width: 22px;
    height: 16px;
}
.menu-toggle-icon span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform .25s var(--ease), opacity .2s;
}
.menu-toggle[aria-expanded="true"] .menu-toggle-icon span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] .menu-toggle-icon span:nth-child(2) {
    opacity: 0;
}
.menu-toggle[aria-expanded="true"] .menu-toggle-icon span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}
.menu-toggle {
    padding: 10px 12px;
    align-items: center;
    justify-content: center;
    gap: 0;
}

/* --- CTA centrado en páginas de servicio ----------------- */
.cta-grid--centered {
    grid-template-columns: 1fr;
    max-width: 820px;
    margin-inline: auto;
    text-align: center;
}
.cta-grid--centered > div {
    width: 100%;
}
.cta-grid--centered h2,
.cta-grid--centered p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 720px;
}
.actions--centered {
    justify-content: center;
    margin-top: 22px;
}

/* ============================================================
 * HEROES INVERTIDOS — overlay oscuro + texto blanco
 * Encapsulado a .hero (home) y .page-hero (resto).
 * No afecta a botones/eyebrows del resto de la web.
 * ============================================================ */

/* --- Hero HOME --- */
.hero {
    background-size: cover;
    background-position: center 65%;
}
/* Overlay oscuro */
.hero::before {
    background: linear-gradient(135deg, rgba(13,27,42,.82) 0%, rgba(13,27,42,.62) 55%, rgba(18,100,237,.40) 100%);
}
/* Texto blanco */
.hero h1,
.hero .hero-lede,
.hero-copy p {
    color: #fff;
}
.hero .eyebrow {
    color: rgba(255,255,255,.85);
}
.hero .eyebrow::before {
    background: var(--yellow);
}
/* Bloque "10+ años de experiencia" */
.hero-meta {
    border-top-color: rgba(255,255,255,.25);
}
.hero-meta strong,
.hero-meta strong + span {
    color: #fff;
}

/* Botones del hero home: invertidos */
.hero .btn-primary {
    background: var(--yellow);
    color: #fff;
    box-shadow: 0 12px 28px rgba(13,78,196,.45);
}
.hero .btn-primary:hover {
    background: #fff;
    color: var(--ink);
    box-shadow: 0 8px 20px rgba(0,0,0,.25);
}
.hero .btn-ghost {
    color: #fff;
    border-color: rgba(255,255,255,.55);
    background: transparent;
}
.hero .btn-ghost:hover {
    background: #fff;
    color: var(--ink);
    border-color: #fff;
}

/* --- Page-hero (todas las páginas internas) --- */
.page-hero::before {
    background: linear-gradient(120deg, rgba(13,27,42,.82) 0%, rgba(13,27,42,.62) 55%, rgba(18,100,237,.40) 100%);
}
.page-hero h1,
.page-hero p,
.page-hero .hero-lede {
    color: #fff;
}
.page-hero .eyebrow {
    color: rgba(255,255,255,.85);
}
.page-hero .eyebrow::before {
    background: var(--yellow);
}

/* Botones dentro de page-hero (si alguna lleva CTAs) */
.page-hero .btn-primary {
    background: #fff;
    color: var(--ink);
    box-shadow: 0 8px 20px rgba(0,0,0,.25);
}
.page-hero .btn-primary:hover {
    background: var(--yellow);
    color: #fff;
}
.page-hero .btn-dark {
    background: #fff;
    color: var(--ink);
}
.page-hero .btn-dark:hover {
    background: var(--yellow);
    color: #fff;
}
.page-hero .btn-ghost {
    color: #fff;
    border-color: rgba(255,255,255,.55);
    background: transparent;
}
.page-hero .btn-ghost:hover {
    background: #fff;
    color: var(--ink);
    border-color: #fff;
}
