/* ============================================================
   Landing Tecnomanzana — amarillo/negro, headings pesados.
   Solo se carga en la home (index.php via extra_css).
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@700;800;900&family=Inter:wght@400;500;600;700&display=swap');

/* Scroll de anclas: las secciones objetivo dejan espacio para el header
   sticky (~108px) mediante scroll-margin-top, el método más confiable para
   que el título quede justo bajo el header y no cortado ni muy abajo. */
html:has(.ld) { scroll-behavior: smooth; }
.ld [id],
#agenda, #servicios, #como-llegar, #contacto {
    scroll-margin-top: 118px;
}

.ld {
    --ld-yellow: #ffd60a;
    --ld-yellow-dark: #f0bf00;
    --ld-black: #131313;
    --ld-gray: #f5f5f4;
    --ld-font-display: 'Archivo', system-ui, -apple-system, sans-serif;
    --ld-font-body: 'Inter', system-ui, -apple-system, sans-serif;
    font-family: var(--ld-font-body);
    color: var(--ld-black);
    -webkit-font-smoothing: antialiased;
}

body:has(.ld) {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.ld h1, .ld h2, .ld h3, .ld h4 {
    font-family: var(--ld-font-display);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -.01em;
    line-height: 1.06;
    margin: 0;
}

.ld-eyebrow {
    font-family: var(--ld-font-body);
    font-size: .72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: #999;
    margin: 0 0 .7rem;
}

/* ---------- Botones ---------- */
.ld-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    padding: .95rem 1.7rem;
    font-family: var(--ld-font-display);
    font-weight: 700;
    font-size: .95rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    text-decoration: none;
    border: 2px solid transparent;
    transition: transform .15s ease, background .15s ease, color .15s ease;
}
.ld-btn:hover { transform: translateY(-2px); }
.ld-btn--yellow { background: var(--ld-yellow); color: var(--ld-black); }
.ld-btn--yellow:hover { background: var(--ld-yellow-dark); }
.ld-btn--black { background: var(--ld-black); color: #fff; }
.ld-btn--black:hover { background: #000; color: var(--ld-yellow); }
.ld-btn--ghost { border-color: rgba(255, 255, 255, .6); color: #fff; }
.ld-btn--ghost:hover { background: var(--ld-yellow); border-color: var(--ld-yellow); color: var(--ld-black); }
.ld-btn--wa { background: #25d366; color: #fff; border-color: #25d366; }
.ld-btn--wa:hover { background: #1ebe57; border-color: #1ebe57; color: #fff; }

/* ---------- Hero + reserva ---------- */
.ld-hero {
    position: relative;
    background:
        radial-gradient(820px 420px at 88% -12%, rgba(255, 214, 10, .085), transparent 62%),
        linear-gradient(158deg, #1a1a1c 0%, #121113 58%, #0a0a0b 100%);
    color: #fff;
    overflow: hidden;
    border-top: 0;
}
.ld-hero__deco {
    position: absolute;
    left: -120px;
    bottom: -160px;
    width: 520px;
    height: 520px;
    color: rgba(255, 214, 10, .07);
    pointer-events: none;
}
.ld-hero__deco svg { width: 100%; height: 100%; }
.ld-hero__inner {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: clamp(1.8rem, 3.5vw, 2.8rem) 1.2rem;
    display: grid;
    grid-template-columns: 1.15fr .9fr;
    gap: clamp(1.6rem, 4vw, 3rem);
    align-items: center;
}
.ld-hero__kicker {
    color: var(--ld-yellow);
    font-family: var(--ld-font-display);
    font-size: .76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .25em;
    margin: 0 0 .8rem;
}
.ld-hero__content h1 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: #fff;
}
.ld-hero__content h1 span { color: var(--ld-yellow); }
.ld-hero__sub {
    margin: 1rem 0 1.2rem;
    font-size: .98rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, .72);
    max-width: 46ch;
}
.ld-hero__facts {
    list-style: none;
    margin: 0 0 1.2rem;
    padding: 0;
    display: grid;
    gap: .5rem;
}
.ld-hero__facts li {
    display: flex;
    align-items: center;
    gap: .65rem;
    font-size: .9rem;
    font-weight: 500;
}
.ld-hero__facts svg {
    flex: none;
    width: 19px;
    height: 19px;
    color: var(--ld-yellow);
}
.ld-hero__facts a {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 214, 10, .5);
}
.ld-hero__facts a:hover { color: var(--ld-yellow); border-bottom-color: var(--ld-yellow); }
.ld-hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.8rem;
}
.ld-hero__more {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    color: rgba(255, 255, 255, .75);
    font-family: var(--ld-font-display);
    font-weight: 700;
    font-size: .88rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    text-decoration: none;
}
.ld-hero__more:hover { color: var(--ld-yellow); }
.ld-hero__chips { display: flex; flex-wrap: wrap; gap: .6rem; }
.ld-hero__chips span {
    padding: .42rem .85rem;
    border: 1px solid rgba(255, 214, 10, .45);
    color: var(--ld-yellow);
    font-family: var(--ld-font-display);
    font-size: .76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
}

/* Tarjeta de reserva en el hero */
.ld-hero__card {
    background: #fff;
    color: var(--ld-black);
    border: 1px solid rgba(255, 255, 255, .18);
    box-shadow: 0 32px 80px rgba(0, 0, 0, .42);
    padding: clamp(1.5rem, 3vw, 2.1rem);
}
.ld-hero__card h2 { font-size: 1.35rem; }
.ld-hero__card-sub {
    margin: .5rem 0 1.4rem;
    color: #666;
    font-size: .92rem;
    line-height: 1.55;
}
.ld-hero__card .ld-booking__grid { gap: .85rem 1rem; }
.ld-hero__card .ld-booking__field input,
.ld-hero__card .ld-booking__field select,
.ld-hero__card .ld-booking__field textarea {
    padding: .62rem .8rem;
    font-size: .95rem;
}
.ld-hero__card .ld-slot span { padding: .42rem .8rem; font-size: .88rem; }
.ld-hero__card .ld-booking__submit { margin-top: 1.2rem; }
.ld-hero__card .ld-booking__submit .ld-btn { width: 100%; }
.ld-hero__card .alert { margin-bottom: 1.1rem; }

.ld-booking__head { border-bottom: 1px solid #ecece8; padding-bottom: 1.2rem; margin-bottom: 1.15rem; }
.ld-booking__eyebrow {
    margin: 0 0 .45rem;
    color: #8a7200;
    font-family: var(--ld-font-display);
    font-size: .67rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .17em;
}
.ld-booking__progress {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .4rem;
    margin-top: 1rem;
}
.ld-booking__progress span {
    display: flex;
    align-items: center;
    gap: .35rem;
    color: #777;
    font-size: .68rem;
    font-weight: 700;
    white-space: nowrap;
    opacity: .45;
    transition: opacity .2s ease;
}
.ld-booking__progress span.is-active { opacity: 1; }
.ld-booking__progress b {
    display: grid;
    place-items: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #131313;
    color: #ffd60a;
    font-size: .65rem;
}
.ld-booking__sections { display: grid; gap: .85rem; }
.ld-booking__step {
    display: none;
    padding: 1rem;
    border: 1px solid #ecece8;
    border-radius: 10px;
    background: #fafaf8;
    animation: ld-booking-in .28s ease both;
}
.ld-booking__step.is-active { display: block; }
@keyframes ld-booking-in {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}
.ld-booking__step-title {
    display: flex;
    align-items: center;
    gap: .55rem;
    margin-bottom: .8rem;
    color: #171717;
}
.ld-booking__step-title span {
    color: #9a8100;
    font-size: .66rem;
    font-weight: 800;
    letter-spacing: .12em;
}
.ld-booking__step-title strong {
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .1em;
}
.ld-booking__confirmation {
    display: none;
    margin: .7rem 0 0;
    color: #777;
    font-size: .7rem;
    text-align: center;
}
.ld-booking__step-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .8rem;
    margin-top: 1rem;
}
.ld-booking__next,
.ld-booking__back {
    border: 0;
    cursor: pointer;
    font-family: var(--ld-font-display);
    font-size: .72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
}
.ld-booking__next {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    width: 100%;
    margin-top: 1rem;
    padding: .8rem 1rem;
    border-radius: 8px;
    background: #131313;
    color: #ffd60a;
}
.ld-booking__step-actions .ld-booking__next { width: auto; margin-top: 0; }
.ld-booking__back { padding: .65rem 0; background: transparent; color: #777; }
.ld-booking__submit { display: none; }
#booking-form[data-step="3"] .ld-booking__submit { display: block; }
#booking-form[data-step="3"] .ld-booking__confirmation { display: block; }
.ld-booking__arrival {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: .8rem;
    margin-top: 1.25rem;
    padding: 1rem;
    border-radius: 10px;
    background: #131313;
    color: #fff;
}
.ld-booking__arrival-icon {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: #ffd60a;
    color: #131313;
}
.ld-booking__arrival-icon svg { width: 18px; height: 18px; }
.ld-booking__arrival strong {
    display: block;
    margin-bottom: .35rem;
    font-family: var(--ld-font-display);
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .06em;
}
.ld-booking__arrival p { margin: 0 0 .55rem; color: #aaa; font-size: .72rem; line-height: 1.5; }
.ld-booking__arrival a {
    color: #ffd60a;
    font-size: .72rem;
    font-weight: 700;
    text-decoration: none;
}

/* ---------- Cinta de confianza ---------- */
.ld-hero-divider { height: 5px; background: var(--ld-yellow); }
.ld-trust { background: var(--ld-yellow); }
.ld-trust__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1.6rem 1.5rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    text-align: center;
}
.ld-trust__item strong {
    display: block;
    font-family: var(--ld-font-display);
    font-size: 1.45rem;
    font-weight: 900;
    text-transform: uppercase;
}
.ld-trust__item span {
    font-size: .85rem;
    font-weight: 500;
    color: rgba(19, 19, 19, .7);
}

/* ---------- Secciones genéricas ---------- */
.ld-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: clamp(2.2rem, 4.5vw, 3.4rem) 1.5rem;
}
.ld-section__head { max-width: 640px; margin-bottom: 1.8rem; }
.ld-section__head h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); }
.ld-section__sub { color: #666; margin: .7rem 0 0; line-height: 1.55; font-size: .95rem; }

/* ---------- Servicios ---------- */
.ld-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.ld-card {
    background: #fff;
    border: 1px solid #e8e8e6;
    padding: 1.3rem 1.25rem;
    transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}
.ld-card:hover {
    border-color: var(--ld-yellow);
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .07);
}
.ld-card__icon {
    width: 46px;
    height: 46px;
    background: var(--ld-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: .8rem;
}
.ld-card__icon svg { width: 28px; height: 28px; color: var(--ld-black); }
.ld-card h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.ld-card__link { display: inline-flex; align-items: center; gap: .3rem; margin-top: .8rem; color: #8a7200; font-weight: 600; font-size: .85rem; text-decoration: none; }
.ld-card__link span { transition: transform .15s; }
.ld-card:hover .ld-card__link { color: var(--ld-yellow-dark); }
.ld-card:hover .ld-card__link span { transform: translateX(3px); }
.ld-card p { margin: 0; font-size: .92rem; color: #666; line-height: 1.55; }

/* ---------- Diferenciador: microelectrónica ---------- */
.ld-microel {
    position: relative;
    background: var(--ld-black);
    color: #fff;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: clamp(1.2rem, 3vw, 2rem);
    align-items: start;
    padding: clamp(1.6rem, 3.5vw, 2.6rem);
    margin-bottom: 1.6rem;
    border-left: 5px solid var(--ld-yellow);
    border-radius: var(--ld-radius);
    overflow: hidden;
}
.ld-microel__icon {
    width: 56px;
    height: 56px;
    flex: none;
    background: var(--ld-yellow);
    color: var(--ld-black);
    border-radius: var(--ld-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}
.ld-microel__icon svg { width: 32px; height: 32px; }
.ld-microel__body { min-width: 0; }
.ld-microel__tag {
    margin: 0 0 .5rem;
    color: var(--ld-yellow);
    font-family: var(--ld-font-display);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: .72rem;
}
.ld-microel .ld-microel__title {
    font-family: var(--ld-font-display);
    font-weight: 800;
    font-size: clamp(1.5rem, 3.4vw, 2.4rem);
    line-height: 1.1;
    letter-spacing: -.01em;
    margin: 0 0 .85rem;
    color: #fff;
    text-wrap: balance;
}
.ld-microel .ld-microel__title span { color: var(--ld-yellow); }
.ld-microel__lead {
    margin: 0;
    color: #cfcfcd;
    line-height: 1.65;
    font-size: clamp(.92rem, 1.4vw, 1rem);
}
.ld-microel__list {
    list-style: none;
    margin: 1.2rem 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: .6rem .7rem;
}
.ld-microel__list li {
    position: relative;
    padding: .42rem .95rem .42rem 1.85rem;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 500;
}
.ld-microel__list li::before {
    content: "";
    position: absolute;
    left: .78rem;
    top: 50%;
    width: 7px;
    height: 7px;
    margin-top: -3.5px;
    background: var(--ld-yellow);
    border-radius: 50%;
}
.ld-microel__link {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    margin-top: 1.3rem;
    color: var(--ld-yellow);
    font-weight: 700;
    text-decoration: none;
    font-size: .95rem;
}
.ld-microel__link span { transition: transform .15s ease; }
.ld-microel__link:hover span { transform: translateX(3px); }

/* ---------- Feature "Dale otra oportunidad" ---------- */
.ld-feature {
    background: var(--ld-gray);
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
    padding: clamp(3rem, 7vw, 5.5rem) clamp(1.5rem, 6vw, 6rem);
}
.ld-feature__media {
    background: var(--ld-black);
    color: var(--ld-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
    max-width: 380px;
    width: 100%;
    margin: 0 auto;
}
.ld-feature__media > svg { width: 65%; height: 65%; }

/* ---------- Animación "cómo trabajamos" (pasos, 3s c/u en loop) ---------- */
.ld-process {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: clamp(1.4rem, 3vw, 2rem);
    box-sizing: border-box;
    color: #fff;
}
.ld-process__bars { display: flex; gap: .4rem; margin-bottom: .5rem; }
.ld-process__bars span {
    flex: 1;
    height: 3px;
    border-radius: 2px;
    background: rgba(255, 255, 255, .16);
    overflow: hidden;
    position: relative;
}
.ld-process__bars span::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--ld-yellow);
    transform: scaleX(0);
    transform-origin: left;
}
.ld-process__bars span.is-done::after { transform: scaleX(1); }
.ld-process__bars span.is-active::after { animation: ld-fill 3s linear forwards; }
@keyframes ld-fill { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.ld-process__stage { position: relative; flex: 1; min-height: 220px; }
.ld-process__step {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: .55rem;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .5s ease, transform .5s ease;
    pointer-events: none;
}
.ld-process__step.is-active { opacity: 1; transform: none; }
.ld-process__icon {
    width: 84px;
    height: 84px;
    border-radius: 20px;
    display: grid;
    place-items: center;
    background: rgba(255, 214, 10, .1);
    border: 1px solid rgba(255, 214, 10, .28);
    color: var(--ld-yellow);
    margin-bottom: .4rem;
}
.ld-feature__media .ld-process__icon svg { width: 46px; height: 46px; }
.ld-process__step.is-active .ld-process__icon { animation: ld-pop .55s cubic-bezier(.2,.9,.3,1.2) both; }
@keyframes ld-pop { 0% { transform: scale(.55); opacity: 0; } 60% { transform: scale(1.08); } 100% { transform: scale(1); opacity: 1; } }
.ld-process__num {
    font-family: var(--ld-font-body);
    font-size: .66rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--ld-yellow);
}
.ld-process__step h3 {
    color: #fff;
    font-family: var(--ld-font-display);
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: none;
    letter-spacing: -.01em;
}
.ld-process__step p {
    margin: 0;
    max-width: 26ch;
    color: rgba(255, 255, 255, .68);
    font-size: .85rem;
    line-height: 1.5;
}
@media (prefers-reduced-motion: reduce) {
    .ld-process__step { transition: none; }
    .ld-process__step.is-active .ld-process__icon { animation: none; }
    .ld-process__bars span.is-active::after { animation: none; transform: scaleX(1); }
}
.ld-feature__body h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); }
.ld-feature__body > p { color: #555; line-height: 1.65; margin: 1.2rem 0 1.4rem; }
.ld-feature__list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}
.ld-feature__list li {
    padding-left: 1.7rem;
    position: relative;
    margin-bottom: .65rem;
    font-weight: 500;
}
.ld-feature__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .35em;
    width: .8em;
    height: .45em;
    border-left: 3px solid var(--ld-yellow-dark);
    border-bottom: 3px solid var(--ld-yellow-dark);
    transform: rotate(-45deg);
}

/* ---------- CTA ---------- */
.ld-cta {
    background: var(--ld-yellow);
    text-align: center;
    padding: clamp(3rem, 7vw, 5rem) 1.5rem;
}
.ld-cta h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
.ld-cta__strong {
    font-size: 1.25rem;
    font-weight: 900;
    text-transform: uppercase;
    margin: .4rem 0 0;
}
.ld-cta p { margin: .6rem 0 0; color: rgba(19, 19, 19, .75); }
.ld-cta .ld-btn { margin-top: 1.8rem; }

/* ---------- Cómo llegar ---------- */
.ld-directions { display:grid;grid-template-columns:1.25fr .75fr;gap:clamp(1.5rem,4vw,3rem);align-items:center;padding:clamp(3rem,7vw,5rem) clamp(1.5rem,6vw,6rem);background:radial-gradient(700px 300px at 85% 0%,rgba(255,214,10,.13),transparent 65%),#131313;color:#fff; }
.ld-directions h2 { color:#fff;font-size:clamp(1.8rem,3.5vw,3rem); }
.ld-directions__body>p:not(.ld-eyebrow){max-width:58ch;margin:1rem 0 1.5rem;color:#b9b9b5;line-height:1.65}.ld-directions__body>p strong{color:#fff}
.ld-directions__actions{display:flex;align-items:center;gap:1rem;flex-wrap:wrap}.ld-directions__actions span{color:#aaa;font-size:.82rem}
.ld-directions__visual { min-height:240px;padding:2rem;border:1px solid #3c350b;border-radius:14px;background:linear-gradient(rgba(19,19,19,.86),rgba(19,19,19,.86)),repeating-linear-gradient(45deg,#ffd60a 0,#ffd60a 1px,transparent 1px,transparent 22px);color:#fff;display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;text-decoration:none;transition:transform .2s ease,border-color .2s ease; }
.ld-directions__visual:hover{transform:translateY(-3px);border-color:#ffd60a;color:#fff}.ld-directions__pin{display:grid;place-items:center;width:82px;height:82px;margin-bottom:1rem;border-radius:50%;background:#ffd60a;color:#131313;box-shadow:0 0 0 12px rgba(255,214,10,.08)}
.ld-directions__visual strong{font-size:1rem}.ld-directions__visual small{margin-top:.4rem;color:#ffd60a;font-weight:700}

/* ---------- Contacto ---------- */
.ld-contact { background: var(--ld-gray); padding-top: clamp(1.6rem, 3vw, 2.2rem); padding-bottom: clamp(1.6rem, 3vw, 2.2rem); }
.ld-contact .ld-section__head { margin-bottom: 1.2rem; }
.ld-contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 1.2rem;
    align-items: stretch;
}

/* Panel oscuro de información */
.ld-contact__panel {
    background: var(--ld-black);
    color: #fff;
    padding: clamp(1.4rem, 3vw, 1.9rem);
    display: flex;
    flex-direction: column;
}
.ld-contact__panel h3 {
    color: #fff;
    font-size: 1.05rem;
    margin-bottom: .6rem;
}
.ld-contact__panel-sub {
    margin: 0 0 1.2rem;
    color: rgba(255, 255, 255, .65);
    font-size: .88rem;
    line-height: 1.5;
}
.ld-contact__items {
    list-style: none;
    margin: 0 0 1.3rem;
    padding: 0;
    display: grid;
    gap: .9rem;
}
.ld-contact__items li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.ld-contact__icon {
    flex: none;
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: rgba(255, 214, 10, .14);
    border: 1px solid rgba(255, 214, 10, .28);
    color: var(--ld-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
}
.ld-contact__icon svg { width: 20px; height: 20px; }
.ld-contact__items strong {
    display: block;
    font-size: .68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .16em;
    color: rgba(255, 214, 10, .9);
    margin-bottom: .3rem;
}
.ld-contact__items a {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 214, 10, .5);
}
.ld-contact__items a:hover { border-bottom-color: var(--ld-yellow); color: var(--ld-yellow); }
.ld-contact__wa { margin-top: auto; align-self: flex-start; }

/* Formulario de contacto */
.ld-contact__form {
    background: #fff;
    border: 1px solid #e8e8e6;
    padding: clamp(1.4rem, 3vw, 1.9rem);
}
.ld-contact__form .lead-form__field { margin: 0 0 .6rem; }
.ld-contact__form .lead-form__field textarea { min-height: 64px; }
.ld-contact__form .lead-form__field label {
    display: block;
    font-size: .7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: #8a857d;
}
.ld-contact__form .lead-form__field input,
.ld-contact__form .lead-form__field textarea {
    display: block;
    width: 100%;
    margin-top: .35rem;
    padding: .6rem .8rem;
    font: inherit;
    font-size: .9rem;
    border: 1px solid #ddd8cf;
    background: #fff;
    box-sizing: border-box;
    transition: border-color .15s, box-shadow .15s;
}
.ld-contact__form .lead-form__field input:focus,
.ld-contact__form .lead-form__field textarea:focus {
    outline: none;
    border-color: var(--ld-black);
    box-shadow: 0 0 0 3px rgba(19, 19, 19, .06);
}
.ld-contact__form .lead-form__submit { margin: .9rem 0 0; }
.ld-contact__form .btn {
    background: var(--ld-black);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .06em;
    font-weight: 700;
    font-family: inherit;
    font-size: .95rem;
    padding: .95rem 1.8rem;
    border: none;
    cursor: pointer;
    transition: background .15s ease, color .15s ease;
}
.ld-contact__form .btn:hover { background: #000; color: var(--ld-yellow); }

/* Mapa */
.ld-contact__map {
    margin-top: 1.2rem;
    border: 1px solid #e8e8e6;
    background: #fff;
    line-height: 0;
}
.ld-contact__map iframe { filter: grayscale(.25); height: 170px; }

/* ---------- Testimonios ---------- */
.ld-reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.1rem;
}
.ld-review {
    margin: 0;
    background: #fff;
    border: 1px solid #e8e8e6;
    border-radius: var(--ld-radius);
    padding: 1.4rem 1.4rem 1.2rem;
    display: flex;
    flex-direction: column;
    gap: .8rem;
}
.ld-review__stars { display: flex; gap: 2px; color: var(--ld-yellow-dark); }
.ld-review blockquote {
    margin: 0;
    color: #3a3631;
    font-size: .95rem;
    line-height: 1.6;
    flex: 1;
}
.ld-review figcaption { display: flex; align-items: center; gap: .7rem; }
.ld-review__avatar {
    flex: none;
    width: 38px; height: 38px;
    border-radius: 50%;
    display: grid; place-items: center;
    background: var(--ld-black);
    color: var(--ld-yellow);
    font-family: var(--ld-font-display);
    font-weight: 700;
    font-size: 1rem;
}
.ld-review figcaption strong { display: block; font-size: .9rem; }
.ld-review figcaption small { color: #8a857d; font-size: .78rem; }

/* ---------- FAQ ---------- */
.ld-faq__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: .6rem .9rem;
}
@media (max-width: 760px) { .ld-faq__list { grid-template-columns: 1fr; } }
.ld-faq__item {
    border: 1px solid #e6e2da;
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
}
.ld-faq__item summary {
    list-style: none;
    cursor: pointer;
    padding: 1rem 1.1rem;
    font-weight: 600;
    font-size: .98rem;
    color: var(--ld-black);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.ld-faq__item summary::-webkit-details-marker { display: none; }
.ld-faq__icon {
    flex: none;
    position: relative;
    width: 16px; height: 16px;
}
.ld-faq__icon::before,
.ld-faq__icon::after {
    content: '';
    position: absolute;
    background: var(--ld-yellow-dark);
    border-radius: 2px;
    transition: transform .2s ease, opacity .2s ease;
}
.ld-faq__icon::before { top: 7px; left: 0; width: 16px; height: 2px; }
.ld-faq__icon::after { left: 7px; top: 0; width: 2px; height: 16px; }
.ld-faq__item[open] .ld-faq__icon::after { transform: rotate(90deg); opacity: 0; }
.ld-faq__item[open] summary { color: var(--ld-black); }
.ld-faq__answer { padding: 0 1.1rem 1.1rem; }
.ld-faq__answer p { margin: 0; color: #5f5a52; line-height: 1.6; font-size: .92rem; }
.ld-faq__answer a { color: #8a7200; font-weight: 600; }

/* ---------- Seguimiento de orden ---------- */
.ld-track { max-width: 640px; margin: 0 auto; padding: clamp(2.5rem, 6vw, 4.5rem) 1.5rem clamp(3rem, 7vw, 5rem); }
.ld-track__head h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin: .2rem 0 .5rem; }
.ld-track__sub { color: #666; line-height: 1.6; margin: 0; }
.ld-track__form { display: flex; gap: .6rem; margin: 1.6rem 0 1.2rem; flex-wrap: wrap; }
.ld-track__form input {
    flex: 1; min-width: 180px;
    padding: .85rem 1rem;
    border: 1px solid #d8d0c7;
    border-radius: 10px;
    font: inherit; font-size: 1rem;
    background: #fff;
}
.ld-track__form input:focus { outline: none; border-color: var(--ld-black); box-shadow: 0 0 0 3px rgba(19,19,19,.06); }
.ld-track__card {
    margin-top: 1.6rem;
    background: #fff;
    border: 1px solid #e8e8e6;
    border-radius: var(--ld-radius);
    padding: 1.6rem;
}
.ld-track__meta { display: flex; flex-wrap: wrap; gap: .4rem 1.6rem; margin-bottom: 1.4rem; padding-bottom: 1.2rem; border-bottom: 1px solid #eee; }
.ld-track__meta span { font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; color: #999; }
.ld-track__meta strong { display: block; font-size: .95rem; text-transform: none; letter-spacing: 0; color: var(--ld-black); margin-top: .15rem; }
.ld-track__steps { list-style: none; margin: 0; padding: 0; }
.ld-track__step { position: relative; display: flex; gap: 1rem; padding-bottom: 1.3rem; }
.ld-track__step:last-child { padding-bottom: 0; }
.ld-track__step::before {
    content: ''; position: absolute; left: 13px; top: 28px; bottom: 0; width: 2px; background: #e6e2da;
}
.ld-track__step:last-child::before { display: none; }
.ld-track__dot {
    flex: none; position: relative; z-index: 1;
    width: 28px; height: 28px; border-radius: 50%;
    display: grid; place-items: center;
    background: #f1efea; border: 2px solid #e0dbd2; color: #fff;
}
.ld-track__step.is-done .ld-track__dot { background: var(--ld-yellow); border-color: var(--ld-yellow-dark); color: var(--ld-black); }
.ld-track__step.is-done::before { background: var(--ld-yellow); }
.ld-track__step.is-current .ld-track__dot { background: var(--ld-black); border-color: var(--ld-black); animation: ld-track-pulse 1.7s ease-out infinite; }
.ld-track__step.is-current .ld-track__dot::after { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--ld-yellow); animation: ld-track-blink 1.7s ease-in-out infinite; }
@keyframes ld-track-pulse {
    0%   { box-shadow: 0 0 0 3px rgba(255,214,10,.5), 0 0 0 0 rgba(255,214,10,.55); }
    70%  { box-shadow: 0 0 0 3px rgba(255,214,10,.5), 0 0 0 13px rgba(255,214,10,0); }
    100% { box-shadow: 0 0 0 3px rgba(255,214,10,.5), 0 0 0 0 rgba(255,214,10,0); }
}
@keyframes ld-track-blink {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: .55; transform: scale(.82); }
}
@media (prefers-reduced-motion: reduce) {
    .ld-track__step.is-current .ld-track__dot { animation: none; box-shadow: 0 0 0 4px rgba(255,214,10,.4); }
    .ld-track__step.is-current .ld-track__dot::after { animation: none; }
}
.ld-track__step-text strong { display: block; font-size: .96rem; color: #b8b2a8; }
.ld-track__step.is-done .ld-track__step-text strong,
.ld-track__step.is-current .ld-track__step-text strong { color: var(--ld-black); }
.ld-track__step.is-current .ld-track__step-text strong { font-weight: 800; }
.ld-track__step-text small { display: block; margin-top: .25rem; color: #777; font-size: .85rem; line-height: 1.5; }
.ld-track__note { margin: 1.4rem 0 0; color: #888; font-size: .82rem; }

/* ---------- Páginas por dispositivo ---------- */
.ld-device__hero {
    background:
        radial-gradient(820px 420px at 88% -20%, rgba(255,214,10,.1), transparent 62%),
        linear-gradient(158deg, #1a1a1c 0%, #121113 58%, #0a0a0b 100%);
    color: #fff;
}
.ld-device__hero-inner { max-width: 1100px; margin: 0 auto; padding: clamp(2.5rem, 6vw, 4.5rem) 1.5rem; }
.ld-device__hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); color: #fff; }
.ld-device__hero .ld-eyebrow { color: var(--ld-yellow); }
.ld-device__intro { max-width: 56ch; margin: 1rem 0 1.6rem; color: rgba(255,255,255,.74); line-height: 1.6; font-size: 1.02rem; }
.ld-device__actions { display: flex; gap: .8rem; flex-wrap: wrap; }
.ld-device__body { padding-top: clamp(2.5rem, 5vw, 3.5rem); scroll-margin-top: 118px; }
.ld-device__layout { display: grid; grid-template-columns: 1fr minmax(0, 440px); gap: clamp(1.6rem, 4vw, 3rem); align-items: start; }
.ld-device__aside { scroll-margin-top: 118px; position: sticky; top: 124px; }
.ld-device__aside .bk-inline { max-width: 100%; box-shadow: none; border: 1px solid #e8e8e6; }
@media (max-width: 900px) { .ld-device__layout { grid-template-columns: 1fr; } .ld-device__aside { position: static; } }

.ld-pricelist { list-style: none; margin: 0; padding: 0; max-width: 760px; border: 1px solid #e8e8e6; border-radius: var(--ld-radius); overflow: hidden; }
.ld-pricelist__item { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 1.3rem; border-bottom: 1px solid #efece6; background: #fff; }
.ld-pricelist__item:last-child { border-bottom: 0; }
.ld-pricelist__item:nth-child(odd) { background: #fcfbf8; }
.ld-pricelist__name strong { display: block; font-size: .98rem; color: var(--ld-black); }
.ld-pricelist__name small { color: #8a857d; font-size: .8rem; }
.ld-pricelist__price { white-space: nowrap; color: #777; font-size: .82rem; }
.ld-pricelist__price strong { color: var(--ld-black); font-size: 1.05rem; }
.ld-device__note { max-width: 760px; margin: 1.1rem 0 0; color: #777; font-size: .88rem; }
.ld-device__cta { margin-top: 1.8rem; }
.ld-device__others { padding-top: 0; }
.ld-device__chips { display: flex; flex-wrap: wrap; gap: .6rem; }
.ld-device__chip {
    display: inline-flex; align-items: center; gap: .4rem;
    border: 1px solid #e6e2da; border-radius: 999px;
    padding: .6rem 1.1rem; background: #fff;
    text-decoration: none; color: var(--ld-black);
    font-weight: 600; font-size: .9rem;
    transition: border-color .15s, background .15s, transform .12s;
}
.ld-device__chip:hover { border-color: var(--ld-yellow); background: #fffdf3; transform: translateY(-1px); }
.ld-device__chip span { color: var(--ld-yellow-dark); }

/* ---------- Quiénes somos ---------- */
.ld-about__grid { display: grid; grid-template-columns: 1.2fr .9fr; gap: clamp(1.6rem, 4vw, 3rem); align-items: start; }
.ld-about__text { color: #555; line-height: 1.7; margin: 1rem 0 0; }
.ld-about__values { list-style: none; margin: 0; padding: 0; display: grid; gap: .8rem; }
.ld-about__values li { background: #fff; border: 1px solid #e8e8e6; border-left: 3px solid var(--ld-yellow); border-radius: 10px; padding: .9rem 1.1rem; }
.ld-about__values strong { display: block; font-size: .98rem; margin-bottom: .2rem; }
.ld-about__values span { color: #666; font-size: .88rem; line-height: 1.5; }
@media (max-width: 760px) { .ld-about__grid { grid-template-columns: 1fr; } }

/* ---------- Campos de agendamiento (tarjeta del hero) ---------- */
.ld-booking__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 1.4rem;
}
.ld-booking__field { margin: 0; }
.ld-booking__field--full { grid-column: 1 / -1; }
.ld-booking__field label,
.ld-booking__label {
    display: block;
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: #777;
}
.ld-booking__field input,
.ld-booking__field select,
.ld-booking__field textarea {
    display: block;
    width: 100%;
    margin-top: .4rem;
    padding: .75rem .9rem;
    font: inherit;
    border: 1px solid #deded9;
    background: #fff;
    box-sizing: border-box;
}
.ld-booking__field input:focus,
.ld-booking__field select:focus,
.ld-booking__field textarea:focus {
    outline: 2px solid var(--ld-yellow);
    border-color: var(--ld-yellow-dark);
}
.ld-slots {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    margin-top: .6rem;
}
.ld-slots__hint { margin: .2rem 0 0; color: #888; font-size: .92rem; }
.ld-slot {
    position: relative;
    cursor: pointer;
}
.ld-slot input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.ld-slot span {
    display: inline-block;
    padding: .55rem 1rem;
    border: 2px solid #ddd;
    background: #fff;
    font-weight: 700;
    font-size: .95rem;
    transition: border-color .12s ease, background .12s ease;
}
.ld-slot:hover span { border-color: var(--ld-yellow-dark); }
.ld-slot input:checked + span {
    background: var(--ld-black);
    border-color: var(--ld-black);
    color: var(--ld-yellow);
}
.ld-slot--taken { cursor: not-allowed; }
.ld-slot--taken span {
    background: #eee;
    color: #aaa;
    border-color: #e5e5e5;
    text-decoration: line-through;
}
.ld-booking__submit { margin: 1.6rem 0 0; }
.ld-booking__submit .ld-btn { border: none; cursor: pointer; font-family: inherit; }
.ld-booking__submit .ld-btn:disabled {
    opacity: .45;
    cursor: not-allowed;
    transform: none;
}

/* Alerts de la landing (éxito/error de forms) */
.ld .alert {
    padding: 1rem 1.2rem;
    margin: 0 0 1.6rem;
    font-weight: 500;
}
.ld .alert--success { background: #e8f7ec; border-left: 4px solid #2da152; color: #1c6b36; }
.ld .alert--error   { background: #fdecec; border-left: 4px solid #d64545; color: #8f2727; }

/* ---------- Navegación con scroll suave ---------- */
html { scroll-behavior: smooth; }
.ld section[id] { scroll-margin-top: 96px; }

/* ---------- Radios: suavizar esquinas sin perder el carácter ---------- */
.ld {
    --ld-radius: 12px;     /* tarjetas y paneles */
    --ld-radius-sm: 8px;   /* botones, inputs, chips */
}
.ld-btn,
.ld-booking__field input,
.ld-booking__field select,
.ld-booking__field textarea,
.ld-slot span,
.ld-hero__chips span,
.ld-contact__form .lead-form__field input,
.ld-contact__form .lead-form__field textarea,
.ld-contact__form .btn,
.ld .alert {
    border-radius: var(--ld-radius-sm);
}
.ld-card,
.ld-hero__card,
.ld-feature__media,
.ld-contact__panel,
.ld-contact__form,
.ld-contact__map,
.ld-contact__map iframe,
.ld-booking__form {
    border-radius: var(--ld-radius);
}
.ld-contact__map { overflow: hidden; }
.ld-card__icon,
.ld-contact__icon {
    border-radius: 10px;
}

/* ---------- Marca en header y footer (solo home) ---------- */
.site-topbar { background: #131313; }
.site-topbar a:hover { color: #ffd60a; }
.site-header { border-bottom: 0; }

/* Menú: subrayado amarillo animado */
.site-navbar__menu a {
    position: relative;
    transition: color .18s ease;
}
.site-navbar__menu a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    height: 3px;
    border-radius: 2px;
    background: #ffd60a;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .22s ease;
}
.site-navbar__menu a:hover::after,
.site-navbar__menu a.is-active::after { transform: scaleX(1); }

/* CTA del header en colores de marca */
.site-navbar__cta,
.site-drawer__cta {
    background: #25d366 !important;
    color: #fff !important;
    border-radius: 8px;
    transition: background .18s ease, color .18s ease, transform .15s ease;
}
.site-navbar__cta:hover,
.site-drawer__cta:hover {
    background: #1ebe57 !important;
    color: #fff !important;
    transform: translateY(-1px);
}
.site-navbar__menu a,
.site-navbar__cta,
.site-drawer__menu a {
    font-family: 'Archivo', system-ui, sans-serif;
}
.site-footer { background: #131313; }
.site-footer__col h4 {
    font-family: 'Archivo', system-ui, sans-serif;
    font-weight: 800;
    color: #ffd60a;
    letter-spacing: .12em;
}
.site-footer__col a:hover { color: #ffd60a; }
.site-footer__bottom { border-top-color: #262626; }
.site-footer__legal a:hover { color: #ffd60a; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
    .ld-hero__inner { grid-template-columns: 1fr; }
    .ld-hero__deco { display: none; }
}
@media (max-width: 860px) {
    .ld-services { grid-template-columns: repeat(2, 1fr); }
    .ld-reviews__grid { grid-template-columns: 1fr; }
    .ld-trust__inner { grid-template-columns: repeat(2, 1fr); }
    .ld-feature { grid-template-columns: 1fr; }
    .ld-feature__media { max-width: 260px; }
    .ld-microel { grid-template-columns: 1fr; gap: 1rem; }
    .ld-contact__grid { grid-template-columns: 1fr; }
    .ld-directions { grid-template-columns: 1fr; }
    .ld-directions__visual { min-height:200px; }
}
@media (max-width: 540px) {
    .ld-services { grid-template-columns: 1fr; }
    .ld-booking__grid { grid-template-columns: 1fr; }
    .ld-microel { grid-template-columns: 1fr; gap: 1rem; }
}
