/* La portada (armada en la página 2502, rehecha el 2026-09-25): el slider de heroes y las secciones
   propias. Las escenas de los servicios vienen de diseno-web.css, tiendas-online.css y
   alojamiento.css; la maqueta y los heroes, de paginas-servicio.css. */

/* =================================================================
   EL SLIDER
   Tres heroes en la misma celda de una grilla: la altura es la del más alto y no hay saltos al
   pasar de uno a otro, en ningún ancho. Se desplazan en horizontal sobre el mismo fondo oscuro
   (el script pone a la que entra del lado del que viene). Flechas a los costados, bullets abajo.
   ================================================================= */
.hs { position: relative; overflow: hidden; background: var(--ink); }
.hs-pista { display: grid; }
.hs-slide {
    grid-area: 1 / 1;
    display: flex; flex-direction: column; justify-content: center;
    transform: translateX(100%); visibility: hidden;
    transition: transform .85s cubic-bezier(.65, 0, .35, 1);
    will-change: transform;
}
.hs-slide.es-activo { transform: translateX(0); visibility: visible; z-index: 1; }
.hs .svc-hero { padding-block: 76px 100px; border-bottom: 0; }
/* Los títulos de las diapositivas son h2 (el h1 de la portada está abajo), con el mismo aspecto y
   la misma entrada que el h1 de los heroes */
.hs .svc-hero h2 {
    color: #fff; font-size: clamp(34px, 4.4vw, 52px); line-height: 1.1; letter-spacing: -.03em;
    animation: svc-in-title var(--t-dur) var(--t-ease) .1s both, svc-in-blur var(--t-blur-dur) linear .1s both;
}
.hs .svc-hero h2 strong { font-weight: 800; color: #fff; }
/* La entrada se repite cada vez que una diapositiva se activa */
.hs-slide:not(.es-activo) .svc-hero-copy > *,
.hs-slide:not(.es-activo) .svc-panel > *,
.hs-slide:not(.es-activo) .svc-maqueta,
.hs-slide:not(.es-activo) h2 { animation: none; }
.hs-slide:not(.es-activo) .svc-hero-fx, .hs-slide:not(.es-activo) .svc-hero-marcas *,
.hs-slide:not(.es-activo) .svc-hero-garabatos *, .hs-slide:not(.es-activo) .svc-maqueta * { animation-play-state: paused; }

/* Las flechas, a media altura, a los costados */
.hs-flecha {
    position: absolute; top: 50%; z-index: 4; width: 54px; height: 54px; margin-top: -27px; padding: 0;
    display: grid; place-items: center; cursor: pointer; color: #fff;
    border-radius: 50%; border: 1px solid rgba(255, 255, 255, .3); background: rgba(8, 12, 24, .35);
    -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
    transition: background-color .2s, border-color .2s, transform .2s;
}
.hs-flecha svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.hs-flecha.es-ant { left: 24px; }
.hs-flecha.es-sig { right: 24px; }
.hs-flecha:hover { background: var(--red); border-color: var(--red); }
.hs-flecha.es-ant:hover { transform: translateX(-2px); }
.hs-flecha.es-sig:hover { transform: translateX(2px); }
/* Los bullets, al medio abajo: el activo se estira en rojo */
.hs-bullets { position: absolute; left: 50%; bottom: 34px; z-index: 4; transform: translateX(-50%); display: flex; gap: 10px; }
.hs-bullet { width: 10px; height: 10px; padding: 0; border: 0; border-radius: 99px; cursor: pointer; background: rgba(255, 255, 255, .42); transition: width .35s cubic-bezier(.16, 1, .3, 1), background-color .3s; }
.hs-bullet:hover { background: rgba(255, 255, 255, .75); }
.hs-bullet.es-activo { width: 36px; background: var(--red); }
.hs-flecha:focus-visible, .hs-bullet:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) { .hs-slide { transition: none; } }

@media (max-width: 1320px) {
    .hs-flecha { width: 44px; height: 44px; margin-top: -22px; }
    .hs-flecha.es-ant { left: 10px; }
    .hs-flecha.es-sig { right: 10px; }
}
@media (max-width: 880px) {
    .hs .svc-hero { padding-block: 46px 88px; }
    /* En el celular las flechas bajan junto a los bullets, para no tapar el texto */
    .hs-flecha { top: auto; bottom: 20px; margin-top: 0; width: 40px; height: 40px; }
    .hs-flecha.es-ant { left: calc(50% - 110px); }
    .hs-flecha.es-sig { right: calc(50% - 110px); }
    .hs-bullets { bottom: 35px; }
    /* Los paneles, compactos: así las tres diapositivas miden parecido y no queda aire de más */
    .hs .svc-panel.is-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
    .hs .svc-panel.is-grid > *:last-child { grid-column: 1 / -1; }
    .hs .svc-panel { gap: 8px; }
    .hs .svc-card { padding: 11px 12px; align-items: center; }
    .hs .svc-card i { display: none; }
    .hs .svc-card b { font-size: 15px; }
}

/* =================================================================
   LA EMPRESA: el h1 de la portada y un collage de trabajos
   ================================================================= */
.in-intro { align-items: center; grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr); }
@media (max-width: 880px) { .in-intro { grid-template-columns: minmax(0, 1fr); } }
.in-intro h1 { font-size: clamp(30px, 3.6vw, 42px); line-height: 1.15; }
.in-intro .svc-actions { margin-top: 6px; }
.in-collage { display: grid; gap: 14px; justify-items: center; text-decoration: none !important; }
.in-collage .tj-collage { width: 100%; max-width: 420px; }
.in-collage-rot { font-size: 15px; font-weight: 700; color: var(--ink); }
.in-collage-rot b { color: var(--red); display: inline-block; transition: transform .2s; }
.in-collage:hover .in-collage-rot b { transform: translateX(4px); }

/* =================================================================
   NUESTROS SERVICIOS: cuatro tarjetas verticales. Las escenas están dibujadas para un ancho de
   ~330 px: acá se achican enteras con zoom, con proporción de pantalla (3:2).
   ================================================================= */
.mdpd-inicio .in-servicios { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.3fr) minmax(0, 1fr); gap: 18px; align-items: center; }
.mdpd-inicio .in-servicios .svc-item { position: relative; padding: 12px 12px 22px; }
.mdpd-inicio .in-servicios .svc-item > :where(h3, p, .svc-item-mas) { padding-inline: 10px; }
.mdpd-inicio .in-servicios .esc { height: 218px; zoom: .72; margin-bottom: 12px; }
.mdpd-inicio .in-servicios h3 { font-size: 19px; }
.mdpd-inicio .in-servicios p { font-size: 15px; }
/* La nueva, destacada */
.mdpd-inicio .in-servicios .svc-item.es-destacada { padding: 16px 16px 30px; border: 2px solid var(--red); box-shadow: 0 24px 50px -24px rgba(255, 22, 50, .6); }
/* La destacada es más ancha y más alta: rompe la fila a propósito */
.mdpd-inicio .in-servicios .es-destacada .esc { zoom: .88; }
.mdpd-inicio .in-servicios .es-destacada h3 { font-size: 23px; }
.mdpd-inicio .in-servicios .es-destacada p { font-size: 16px; }
.in-tag { position: absolute; top: -12px; left: 20px; z-index: 2; padding: 4px 11px; border-radius: 99px; background: var(--red); color: #fff; font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; box-shadow: 0 6px 14px -6px rgba(255, 22, 50, .7); }
@media (max-width: 1100px) {
    .mdpd-inicio .in-servicios { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; align-items: stretch; }
    .mdpd-inicio .in-servicios .esc, .mdpd-inicio .in-servicios .es-destacada .esc { height: 190px; zoom: 1.2; }
}
@media (max-width: 620px) {
    .mdpd-inicio .in-servicios { grid-template-columns: minmax(0, 1fr); }
    .mdpd-inicio .in-servicios .esc, .mdpd-inicio .in-servicios .es-destacada .esc { height: 200px; zoom: 1; }
}

/* =================================================================
   INTEGRACIONES: dos cintas que corren en sentidos opuestos
   ================================================================= */
.ig-cintas {
    display: grid; gap: 14px; margin-top: 36px; overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}
.ig-cinta { overflow: hidden; padding: 6px 0 10px; }
.ig-pista { display: flex; gap: 14px; width: max-content; animation: ig-correr 64s linear infinite; }
.ig-cinta.es-inversa .ig-pista { animation-duration: 72s; animation-direction: reverse; }
.ig-cintas:hover .ig-pista { animation-play-state: paused; }
@keyframes ig-correr { to { transform: translateX(calc(-50% - 7px)); } }
.ig-ficha {
    display: grid; justify-items: center; align-content: center; gap: 9px; width: 196px; height: 112px; padding: 14px 16px;
    background: #fff; border: 1px solid var(--rule); border-radius: 14px;
    box-shadow: 0 10px 24px -18px rgba(15, 23, 42, .35);
    transition: border-color .2s, transform .2s;
}
.ig-ficha:hover { border-color: var(--red); transform: translateY(-3px); }
.ig-logo { height: 44px; display: grid; place-items: center; }
/* Alto fijo: los SVG sin ancho ni alto propios (Pilot, OCA) quedaban de ancho cero dentro de la
   ficha centrada, invisibles. Con el alto dado, el ancho sale de su proporción. */
.mdpd-svc .ig-logo img { display: block; width: auto; height: 34px; max-width: 150px; object-fit: contain; }
.mdpd-svc .ig-logo svg.svc-logo { width: 40px; height: 40px; }
.ig-ficha small { font-size: 11px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; color: #64748b; }

/* =================================================================
   LAS CIFRAS
   ================================================================= */
.nu-grilla { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; margin-top: 36px; }
.nu-cifra {
    display: grid; justify-items: center; align-content: start; gap: 4px; text-align: center;
    padding: 26px 22px 30px; border-radius: 18px;
    background: rgba(8, 12, 24, .42); border: 1px solid rgba(255, 255, 255, .14);
    -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.nu-vis { position: relative; width: 100%; height: 190px; margin-bottom: 26px; display: grid; place-items: center; }
.nu-cifra b { font-size: clamp(46px, 5vw, 64px); font-weight: 800; line-height: 1; color: #fff; font-variant-numeric: tabular-nums; }
.nu-cifra:nth-child(1) b::before, .nu-cifra:nth-child(3) b::before { content: "+"; color: var(--red); margin-right: 2px; }
.nu-rot { font-size: 18px; font-weight: 700; color: #fff; margin-top: 6px; }
.nu-cifra small { font-size: 14.5px; color: #94a3b8; }

/* Clientes: un muro de sitios que se van encendiendo */
.tj-muro { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 7px; width: 100%; max-width: 222px; }
.tj-celda { aspect-ratio: 4 / 3; border-radius: 6px; overflow: hidden; background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .14); animation: nu-celda 7s ease-in-out infinite; }
.tj-muro .tj-celda img { display: block; width: 100%; height: 100%; max-width: none; object-fit: cover; object-position: top; }
.tj-celda:nth-child(2) { animation-delay: -1.2s; } .tj-celda:nth-child(3) { animation-delay: -4.1s; }
.tj-celda:nth-child(4) { animation-delay: -2.7s; } .tj-celda:nth-child(5) { animation-delay: -5.3s; }
.tj-celda:nth-child(6) { animation-delay: -.6s; } .tj-celda:nth-child(7) { animation-delay: -3.4s; }
.tj-celda:nth-child(8) { animation-delay: -6.2s; } .tj-celda:nth-child(9) { animation-delay: -1.9s; }
@keyframes nu-celda { 0%, 100% { opacity: .45; transform: scale(.96); } 50% { opacity: 1; transform: none; } }

/* Los años: los anillos del tronco alrededor del faro */
.nu-anillos::before {
    content: ""; position: absolute; left: 50%; top: 50%; width: 400px; height: 400px; margin: -200px 0 0 -200px; border-radius: 50%;
    background-image:
        repeating-radial-gradient(circle, transparent 0 9px, rgba(255, 205, 87, .3) 9px 10px),
        repeating-radial-gradient(circle at 51.5% 48.5%, transparent 0 13px, rgba(255, 255, 255, .1) 13px 14px);
    -webkit-mask-image: radial-gradient(circle closest-side, #000 30%, transparent 100%);
    mask-image: radial-gradient(circle closest-side, #000 30%, transparent 100%);
    animation: nu-crecer 9s ease-in-out infinite alternate;
}
.nu-anillos::after { content: ""; position: absolute; left: 50%; top: 50%; width: 270px; height: 270px; margin: -135px 0 0 -135px; border-radius: 50%; background: radial-gradient(circle, rgba(255, 22, 50, .45), transparent 68%); }
.mdpd-svc .nu-anillos img { position: relative; z-index: 1; width: 150px; height: 150px; max-width: none; filter: drop-shadow(0 16px 26px rgba(0, 0, 0, .5)); }
@keyframes nu-crecer { from { transform: scale(.94); } to { transform: scale(1.06); } }

/* Los desarrollos: la curva de sitios publicados, de 1999 a hoy. Se dibuja cuando la cifra
   entra en pantalla (el script pone nu-anima en la grilla y es-visto en la tarjeta). */
/* El fondo: dos luces de color, una trama de puntos que se pierde hacia los bordes y un brillo
   que la recorre despacio */
.nu-curva::before, .nu-curva::after { content: ""; position: absolute; inset: -10px -8px; border-radius: 14px; pointer-events: none; }
.nu-curva::before { background: radial-gradient(55% 70% at 88% 18%, rgba(255, 22, 50, .32), transparent 70%), radial-gradient(50% 60% at 12% 95%, rgba(142, 117, 178, .28), transparent 72%), radial-gradient(40% 50% at 50% 60%, rgba(31, 184, 205, .12), transparent 70%); }
.nu-curva::after {
    background-image: linear-gradient(100deg, transparent 0 40%, rgba(255, 255, 255, .09) 50%, transparent 60% 100%), radial-gradient(rgba(255, 255, 255, .13) 1px, transparent 1.4px);
    background-size: 250% 100%, 12px 12px;
    background-repeat: no-repeat, repeat;
    -webkit-mask-image: radial-gradient(75% 80% at 50% 50%, #000 40%, transparent 100%);
    mask-image: radial-gradient(75% 80% at 50% 50%, #000 40%, transparent 100%);
    animation: nu-barrido 7s ease-in-out infinite;
}
@keyframes nu-barrido { from { background-position: 130% 0, 0 0; } to { background-position: -30% 0, 0 0; } }
.nu-graf { position: relative; z-index: 1; width: 100%; max-width: 292px; height: auto; overflow: visible; }
.nu-guias { fill: none; stroke: rgba(255, 255, 255, .09); stroke-width: 1; stroke-dasharray: 3 5; }
.nu-linea { fill: none; stroke: #FF1632; stroke-width: 2.8; stroke-linecap: round; stroke-dasharray: 100; stroke-dashoffset: 0; filter: drop-shadow(0 0 6px rgba(255, 22, 50, .6)); }
.nu-graf text { font-family: inherit; font-size: 9px; font-weight: 700; fill: #94a3b8; }
.nu-graf .nu-hito-rot { fill: #cbd5e1; font-size: 8.5px; }
.nu-hito { fill: #1E293B; stroke: #FFCD57; stroke-width: 2; }
.nu-punta { fill: #FF1632; stroke: #fff; stroke-width: 2; }
.nu-onda { fill: none; stroke: #FF1632; stroke-width: 1.5; transform-box: fill-box; transform-origin: center; animation: nu-onda 2.2s ease-out infinite; }
@keyframes nu-onda { from { transform: scale(1); opacity: .9; } to { transform: scale(3); opacity: 0; } }
.nu-globo rect { fill: #fff; }
.nu-globo text { fill: #1E293B; font-size: 9.5px; font-weight: 800; }
.nu-anima .nu-linea { stroke-dashoffset: 100; }
.nu-anima .nu-area, .nu-anima .nu-globo, .nu-anima .nu-hito-g { opacity: 0; }
.nu-anima .es-visto .nu-linea { animation: nu-trazo 2.2s cubic-bezier(.65, 0, .35, 1) forwards; }
.nu-anima .es-visto .nu-area { animation: nu-aparece 1.2s ease .9s forwards; }
.nu-anima .es-visto .nu-hito-g { animation: nu-aparece .6s ease .8s forwards; }
.nu-anima .es-visto .nu-globo { animation: nu-aparece .6s ease 2s forwards; }
@keyframes nu-trazo { to { stroke-dashoffset: 0; } }
@keyframes nu-aparece { to { opacity: 1; } }

@media (max-width: 880px) {
    .nu-grilla { grid-template-columns: minmax(0, 1fr); max-width: 420px; margin-inline: auto; }
}

/* =================================================================
   NUESTROS CLIENTES: el muro de logos, en gris
   ================================================================= */
.cl-cab { display: flex; align-items: flex-end; justify-content: space-between; gap: 18px 30px; flex-wrap: wrap; }
.cl-cab .svc-btn { margin-bottom: 4px; }
.cl-muro { list-style: none; margin: 36px 0 0; padding: 0; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); border-top: 1px solid var(--rule); border-left: 1px solid var(--rule); background: #fff; }
.cl-muro li { margin: 0; height: 122px; padding: 16px; display: grid; place-items: center; border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule); transition: background-color .2s; }
/* Los logos vienen en gris sobre fondo propio: `multiply` funde ese fondo con el blanco. Los que
   son blancos (pensados para fondo oscuro) se pasan a gris oscuro. --e agranda los que vienen
   chicos dentro de su imagen. */
.mdpd-svc .cl-muro img { display: block; width: auto; height: calc(50px * var(--e, 1)); max-width: 86%; max-height: 92px; object-fit: contain; mix-blend-mode: multiply; filter: grayscale(1) contrast(1.15); opacity: .8; transition: opacity .2s, transform .25s; }
.mdpd-svc .cl-muro li.es-blanco img { mix-blend-mode: normal; filter: brightness(0); opacity: .55; }
.cl-muro li:hover { background: var(--ground); }
.mdpd-svc .cl-muro li:hover img { opacity: 1; transform: scale(1.05); }
.mdpd-svc .cl-muro li.es-blanco:hover img { opacity: .8; }
@media (max-width: 880px) {
    .cl-muro { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .cl-muro li { height: 96px; padding: 10px; }
    .cl-muro li:nth-child(25) { display: none; }
    .mdpd-svc .cl-muro img { height: calc(38px * var(--e, 1)); max-height: 70px; }
}

/* =================================================================
   POR QUÉ ELEGIRNOS: el mapa y las razones
   ================================================================= */
.pq { display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); gap: 60px; align-items: center; }
.pq-lienzo { position: relative; width: 100%; max-width: 360px; margin: 0 auto; aspect-ratio: 420 / 820; }
.pq-svg { display: block; width: 100%; height: 100%; overflow: visible; }
.pq-pais { fill: #E4E9EE; stroke: #fff; stroke-width: 1; }
.pq-pais.es-cliente { fill: color-mix(in srgb, var(--red) 14%, #fff); }
.pq-prov { fill: #fff; stroke: #D5DCE3; stroke-width: .8; transition: fill .2s; }
.pq-prov.es-cliente { fill: color-mix(in srgb, var(--red) 26%, #fff); stroke: #fff; stroke-width: 1; }
.pq-prov.es-cliente:hover { fill: color-mix(in srgb, var(--red) 40%, #fff); }
/* Las marcas: un punto rojo con su latido, y el estudio con el faro */
.pq-marca { position: absolute; width: 13px; height: 13px; margin: -6.5px 0 0 -6.5px; border-radius: 50%; background: var(--red); border: 2px solid #fff; box-shadow: 0 3px 8px rgba(232, 0, 28, .45); }
.pq-marca::after { content: ""; position: absolute; inset: -2px; border-radius: 50%; border: 2px solid var(--red); animation: pq-latido 2.6s ease-out infinite both; animation-delay: var(--d, 0s); }
@keyframes pq-latido { from { transform: scale(1); opacity: .8; } to { transform: scale(3.2); opacity: 0; } }
.pq-marca.es-estudio { width: auto; height: auto; margin: 0; padding: 0; transform: translate(-20px, -20px); display: flex; align-items: center; gap: 8px; background: none; border: 0; box-shadow: none; z-index: 2; }
.pq-marca.es-estudio::after { inset: auto; left: 0; top: 0; width: 40px; height: 40px; border-width: 3px; }
.mdpd-svc .pq-marca.es-estudio img { width: 40px; height: 40px; max-width: none; border-radius: 50%; box-shadow: 0 0 0 3px #fff, 0 8px 18px rgba(232, 0, 28, .4); }
.pq-marca.es-estudio b { display: grid; padding: 6px 10px; border-radius: 9px; background: #fff; font-size: 13px; font-weight: 800; color: var(--ink); line-height: 1.2; white-space: nowrap; box-shadow: 0 10px 22px -10px rgba(15, 23, 42, .4); }
.pq-marca.es-estudio small { font-size: 11px; font-weight: 700; color: var(--red); }

.pq-texto h2 { font-size: clamp(30px, 3.6vw, 42px); line-height: 1.12; }
.pq-bajada { font-size: 18px; margin-top: 12px !important; }
.pq-lista { list-style: none; margin: 26px 0 0; padding: 0; display: grid; }
.pq-lista li { display: grid; grid-template-columns: 50px minmax(0, 1fr); gap: 16px; align-items: start; margin: 0; padding: 16px 0; border-top: 1px solid rgba(30, 41, 59, .1); }
.pq-lista li:last-child { border-bottom: 1px solid rgba(30, 41, 59, .1); }
.mdpd-svc .pq-lista .ir { width: 46px; height: 46px; margin: 0; }
.pq-lista h3 { font-size: 18px; font-weight: 700; line-height: 1.3; }
.pq-lista p { font-size: 15.5px; line-height: 1.55; margin-top: 3px; }
@media (max-width: 880px) {
    .pq { grid-template-columns: minmax(0, 1fr); gap: 40px; }
    .pq-lienzo { max-width: 270px; }
}

/* =================================================================
   NUESTROS PRODUCTOS
   ================================================================= */
.pr-grilla { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; margin-top: 36px; }
.mdpd-svc a.pr-card { color: var(--ink); }
.pr-card {
    display: grid; grid-template-rows: auto 1fr; overflow: hidden;
    border-radius: 18px; background: #fff; border: 1px solid var(--rule);
    color: inherit; text-decoration: none !important;
    transition: border-color .2s, transform .2s, box-shadow .2s;
}
.pr-card:hover { border-color: var(--red); transform: translateY(-3px); box-shadow: 0 24px 46px -26px rgba(15, 23, 42, .45); }
/* La foto de las pantallas viene sobre blanco: sobre el fondo teñido se funde con multiply */
.pr-foto { position: relative; display: grid; place-items: center; height: 300px; overflow: hidden; background: #F4F6F9; }
.pr-card.es-inmo .pr-foto { background: radial-gradient(60% 70% at 20% 20%, #FFE4C7, transparent 70%), radial-gradient(60% 70% at 85% 85%, #FFD6DC, transparent 70%), #FBF6F2; }
.pr-card.es-rt .pr-foto { background: radial-gradient(60% 70% at 20% 20%, #D3F1F6, transparent 70%), radial-gradient(60% 70% at 85% 85%, #D6F0E4, transparent 70%), #F2F8F8; }
.mdpd-svc .pr-foto img { display: block; width: 94%; height: 94%; max-width: none; margin-top: 6%; object-fit: contain; object-position: center bottom; mix-blend-mode: multiply; transition: transform .5s cubic-bezier(.16, 1, .3, 1); }
.mdpd-svc .pr-card:hover .pr-foto img { transform: scale(1.04) translateY(-2%); }
.pr-cuerpo { display: grid; gap: 14px; align-content: start; padding: 26px 28px 28px; }
/* Los dos logos con el mismo ancho, en una caja de la misma altura: el más bajo (Reservas.Travel)
   queda centrado y los bloques de texto arrancan a la par */
.pr-logo-caja { display: flex; align-items: center; height: 47px; }
.mdpd-svc .pr-logo { display: block; width: 232px; height: auto; max-width: 100%; }
.pr-texto { font-size: 16.5px; line-height: 1.55; }
.pr-texto strong { font-weight: 700; color: var(--black); }
.pr-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.pr-chips span { font-size: 13px; font-weight: 700; padding: 5px 11px; border-radius: 99px; background: var(--ground); }
.pr-mas { font-size: 16px; font-weight: 800; color: var(--red); }
.pr-mas b { display: inline-block; transition: transform .2s; }
.pr-card:hover .pr-mas b { transform: translateX(4px); }
@media (max-width: 880px) {
    .pr-grilla { grid-template-columns: minmax(0, 1fr); }
    .pr-foto { height: 230px; }
}

/* =================================================================
   PREGUNTAS: una columna centrada
   ================================================================= */
.in-faq { max-width: 900px; }
.in-faq .mdpd-faq { margin-top: 30px; }

@media (prefers-reduced-motion: reduce) {
    .ig-pista, .tj-celda, .nu-anillos::before, .pq-marca::after, .nu-onda, .nu-curva::after { animation: none !important; }
}
