/* ============================================================
   ZIPWEB — servicios-precios.css
   Estilos combinados: servicios + precios en una sola página
   Fusión de servicios.css + precios.css + ajustes propios
   ============================================================ */

/* ═══════════════════════════════════════════════════════════════
   PAGE HERO (centrado, estilo precios)
   ═══════════════════════════════════════════════════════════════ */
.page-hero {
    padding: 9rem 6% 3.5rem;
    border-bottom: 1px solid var(--border);
    text-align: center;
}

.page-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 900;
    letter-spacing: -1.5px;
    color: var(--white);
}

.page-hero h1 em {
    font-style: normal;
    background: linear-gradient(90deg, var(--orange), var(--orange2));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-hero p {
    color: var(--muted);
    font-size: 1rem;
    max-width: 580px;
    margin: 1rem auto 0;
    line-height: 1.75;
}

.trow {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-top: 1.8rem;
}

.tc2 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 0.45rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text);
}

/* Consult top banner */
.consult-top {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(0, 229, 160, 0.07);
    border: 1px solid rgba(0, 229, 160, 0.2);
    border-radius: 14px;
    padding: 1.2rem 2rem;
    max-width: 700px;
    margin: 2rem auto 0;
    flex-wrap: wrap;
}

.consult-top p {
    font-size: 0.87rem;
    color: var(--muted);
    flex: 1;
}

.consult-top p strong {
    color: var(--white);
    display: block;
    margin-bottom: 0.1rem;
}

.btn-green-sm {
    background: var(--success);
    color: #080808;
    padding: 0.55rem 1.3rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.85rem;
    white-space: nowrap;
}

/* ═══════════════════════════════════════════════════════════════
   BUNDLES — 3 cards grid
   ═══════════════════════════════════════════════════════════════ */
.bundles-section {
    padding: 5rem 6%;
}

.bundles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 1.4rem;
}

.bundle-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: border-color 0.3s, transform 0.3s;
}

.bundle-card:hover {
    border-color: rgba(255, 92, 0, 0.4);
    transform: translateY(-4px);
}

.bundle-card.star {
    border-color: var(--orange);
}

.bundle-card.star::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--orange2));
}

.star-label {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--orange);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 800;
    padding: 0.22rem 0.7rem;
    border-radius: 100px;
    text-transform: uppercase;
    box-shadow: 0 0 12px var(--orange-glow);
}

.bundle-header {
    padding: 2rem 2rem 0;
}

.bundle-tech {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
    margin-bottom: 0.9rem;
}

.tech-pill {
    background: var(--dark);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 0.18rem 0.6rem;
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--muted);
}

.tech-pill.wp {
    background: rgba(33, 117, 155, 0.1);
    border-color: rgba(33, 117, 155, 0.25);
    color: #5bc0de;
}

.tech-pill.fig {
    background: rgba(162, 89, 255, 0.1);
    border-color: rgba(162, 89, 255, 0.25);
    color: #a259ff;
}

.tech-pill.or {
    background: var(--orange-soft);
    border-color: rgba(255, 92, 0, 0.2);
    color: var(--orange);
}

.bundle-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.4rem;
}

.bundle-card .desc {
    color: var(--muted);
    font-size: 0.84rem;
    line-height: 1.7;
}

.bundle-pricing {
    margin: 1.4rem 2rem;
    padding: 1.4rem;
    background: var(--dark);
    border: 1px solid var(--border);
    border-radius: 12px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.6rem;
    font-size: 0.83rem;
}

.price-row:last-child {
    margin-bottom: 0;
    padding-top: 0.6rem;
    border-top: 1px dashed var(--border);
}

.price-label {
    color: var(--muted);
}

.price-val {
    font-weight: 800;
    color: var(--white);
}

.price-val.hot {
    color: var(--orange);
    font-size: 1.25rem;
}

.price-note {
    font-size: 0.7rem;
    color: var(--muted);
    margin-top: 0.3rem;
    display: block;
}

.bundle-features {
    padding: 0 2rem 0;
}

.feat-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.feat-list li {
    font-size: 0.82rem;
    color: var(--muted);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.feat-list li::before {
    content: '✓';
    color: var(--success);
    font-weight: 800;
    flex-shrink: 0;
    margin-top: 1px;
}

.feat-list li.sep {
    border-top: 1px solid var(--border);
    padding-top: 0.5rem;
    margin-top: 0.2rem;
}

.feat-list li.sep::before {
    display: none;
}

.feat-list li.sep span {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--orange);
}

.bundle-cta {
    padding: 1.5rem 2rem 2rem;
}

.btn-b-outline {
    display: block;
    text-align: center;
    padding: 0.85rem;
    border-radius: 10px;
    border: 1px solid var(--border);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: border-color 0.2s, background 0.2s;
}

.btn-b-outline:hover {
    border-color: var(--orange);
    background: var(--orange-soft);
}

.btn-b-solid {
    display: block;
    text-align: center;
    padding: 0.85rem;
    border-radius: 10px;
    background: linear-gradient(90deg, var(--orange), var(--orange2));
    color: var(--white);
    text-decoration: none;
    font-weight: 800;
    font-size: 0.9rem;
    box-shadow: 0 0 22px var(--orange-glow);
    transition: opacity 0.2s;
}

.btn-b-solid:hover {
    opacity: 0.88;
}

/* ═══════════════════════════════════════════════════════════════
   SERVICE BLOCKS — alternating 2-column layout
   ═══════════════════════════════════════════════════════════════ */
.services-wrapper {
    padding: 4.5rem 6%;
}

.service-box {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.8rem;
    margin-bottom: 1.8rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    transition: border-color 0.3s;
}

.service-box:hover {
    border-color: rgba(255, 92, 0, .35);
}

.service-box.rv {
    direction: rtl;
}

.service-box.rv>* {
    direction: ltr;
}

@media(max-width:768px) {

    .service-box,
    .service-box.rv {
        grid-template-columns: 1fr;
        direction: ltr;
    }
}

.bi {
    font-size: 2.6rem;
    margin-bottom: 1rem;
    display: block;
}

.stag {
    font-size: 0.73rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--orange);
    margin-bottom: 0.7rem;
    display: block;
}

.service-box h2 {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 0.7rem;
}

.sd {
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.8;
    margin-bottom: 1.4rem;
}

.pills {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
    margin-bottom: 1.4rem;
}

.p2 {
    background: var(--dark);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 0.2rem 0.65rem;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--muted);
}

.p2.wp {
    background: rgba(33, 117, 155, .1);
    border-color: rgba(33, 117, 155, .25);
    color: #5bc0de;
}

.p2.fig {
    background: rgba(162, 89, 255, .1);
    border-color: rgba(162, 89, 255, .25);
    color: #a259ff;
}

.p2.or {
    background: var(--orange-soft);
    border-color: rgba(255, 92, 0, .25);
    color: var(--orange);
}

.fl {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.fl li {
    font-size: 0.85rem;
    color: var(--muted);
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
}

.fl li::before {
    content: '→';
    color: var(--orange);
    font-weight: 700;
    flex-shrink: 0;
}

/* SERVICE RIGHT BOX */
.srb {
    background: var(--dark);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.8rem;
}

.srb h4 {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--muted);
    margin-bottom: 1.2rem;
}

.dl {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.9rem;
}

.di {
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.dt strong {
    color: var(--white);
    font-size: 0.85rem;
    display: block;
}

.dt span {
    color: var(--muted);
    font-size: 0.75rem;
}

.pb {
    margin-top: 1.6rem;
    padding-top: 1.4rem;
    border-top: 1px solid var(--border);
}

.pb .fr {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--muted);
}

.pb .am {
    font-size: 2.1rem;
    font-weight: 900;
    color: var(--orange);
    line-height: 1.1;
}

.pb .tm {
    font-size: 0.74rem;
    color: var(--muted);
    margin-top: 0.2rem;
}

/* MAINTENANCE MINI GRID (dentro de service-box) */
.mant-g {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin-top: 0.2rem;
}

@media(max-width:420px) {
    .mant-g {
        grid-template-columns: 1fr;
    }
}

.mg {
    background: var(--black);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1rem;
}

.mg.pro {
    border-color: rgba(255, 92, 0, .35);
    background: var(--orange-soft);
}

.mg h5 {
    font-size: 0.83rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.2rem;
}

.mg .mp {
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--orange);
}

.mg .ms {
    font-size: 0.7rem;
    color: var(--muted);
    margin-bottom: 0.5rem;
}

.mg ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.mg ul li {
    font-size: 0.73rem;
    color: var(--muted);
    display: flex;
    gap: 0.4rem;
}

.mg ul li::before {
    content: '✓';
    color: var(--success);
    font-weight: 700;
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════
   SOLO MANTENIMIENTO — 4 cards
   ═══════════════════════════════════════════════════════════════ */
.mant-section {
    background: var(--dark);
    padding: 4.5rem 6%;
}

.mant-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.3rem;
}

.mant-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.8rem;
    transition: border-color 0.3s, transform 0.3s;
}

.mant-card:hover {
    border-color: rgba(255, 92, 0, 0.3);
    transform: translateY(-3px);
}

.mant-card.pro {
    border-color: rgba(255, 92, 0, 0.28);
    background: linear-gradient(135deg, rgba(255, 92, 0, 0.06), var(--card));
}

.mant-card h3 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.2rem;
}

.mant-price {
    font-size: 1.9rem;
    font-weight: 900;
    color: var(--orange);
    line-height: 1.1;
}

.mant-sub {
    font-size: 0.75rem;
    color: var(--muted);
    margin-bottom: 1.1rem;
}

.mant-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.mant-list li {
    font-size: 0.81rem;
    color: var(--muted);
    display: flex;
    gap: 0.5rem;
}

.mant-list li::before {
    content: '✓';
    color: var(--success);
    font-weight: 700;
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════
   BOLSA DE HORAS — 4 cards
   ═══════════════════════════════════════════════════════════════ */
.hours-section {
    padding: 4rem 6%;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(185px, 1fr));
    gap: 1.1rem;
}

.hour-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 13px;
    padding: 1.6rem;
    text-align: center;
    transition: border-color 0.2s;
}

.hour-card:hover {
    border-color: rgba(255, 92, 0, 0.3);
}

.h-price {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--orange);
}

.h-h {
    font-size: 0.76rem;
    color: var(--muted);
    margin-bottom: 0.5rem;
}

.hour-card h3 {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.2rem;
}

.hour-card p {
    font-size: 0.76rem;
    color: var(--muted);
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════════════ */
.faq-section {
    background: var(--dark);
    padding: 4rem 6%;
}

.faq-list {
    max-width: 700px;
}

.faq-item {
    border-bottom: 1px solid var(--border);
    padding: 1.3rem 0;
}

.faq-item h4 {
    font-size: 0.93rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.45rem;
}

.faq-item p {
    font-size: 0.84rem;
    color: var(--muted);
    line-height: 1.75;
}

/* ═══════════════════════════════════════════════════════════════
   CTA BANNER
   ═══════════════════════════════════════════════════════════════ */
.cta-banner {
    margin: 3rem 6% 4rem;
    background: linear-gradient(135deg, rgba(255, 92, 0, 0.11), rgba(255, 138, 0, 0.05));
    border: 1px solid rgba(255, 92, 0, 0.18);
    border-radius: 18px;
    padding: 2.8rem;
    text-align: center;
}

.cta-banner h2 {
    font-size: 1.7rem;
    margin-bottom: 0.7rem;
}

.cta-banner p {
    color: var(--muted);
    margin-bottom: 1.8rem;
    max-width: 430px;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.92rem;
}


/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE COMPLETO - TODOS LOS DISPOSITIVOS
   ═══════════════════════════════════════════════════════════════ */

/* ─── MOBILE XS (≤320px) - Dispositivos ultra pequeños ────── */
@media (max-width: 320px) {
    .page-hero {
        padding: 5rem 4% 2rem;
    }

    .page-hero h1 {
        font-size: clamp(1.3rem, 7vw, 1.8rem);
    }

    .page-hero p {
        font-size: 0.75rem;
    }

    .consult-top {
        padding: 0.8rem 1rem;
        gap: 0.7rem;
    }

    .consult-top p {
        font-size: 0.7rem;
    }

    .btn-green-sm {
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
    }

    .service-box,
    .service-box.rv {
        padding: 1.5rem 1rem;
    }

    .bi {
        font-size: 1.8rem;
    }

    .stag {
        font-size: 0.6rem;
    }

    .service-box h2 {
        font-size: 1.1rem;
    }

    .sd {
        font-size: 0.7rem;
    }

    .srb {
        padding: 1.2rem;
    }

    .pb .am {
        font-size: 1.3rem;
    }

    .bundles-grid {
        grid-template-columns: 1fr;
    }

    .mant-g {
        grid-template-columns: 1fr;
    }

    .hours-grid {
        grid-template-columns: 1fr;
    }
}

/* ─── FOLDABLE / SMALL TABLET (≤600px) ───────────────────── */
@media (max-width: 600px) {
    /* Ajustes para dispositivos plegables */
    .bundles-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .bundle-header {
        padding: 1.6rem 1.6rem 0;
    }

    .bundle-pricing {
        margin: 1rem 1.6rem;
        padding: 1.2rem;
    }

    .mant-grid {
        grid-template-columns: 1fr;
    }

    .mant-g {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .hours-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .service-box,
    .service-box.rv {
        padding: 2rem 1.4rem;
        gap: 1.8rem;
    }
}

/* ─── TABLET MEDIUM (≤834px) - iPad Air, iPad Pro 11" ────── */
@media (min-width: 601px) and (max-width: 834px) {
    .bundles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.3rem;
    }

    .mant-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.1rem;
    }

    .mant-g {
        grid-template-columns: repeat(2, 1fr);
    }

    .hours-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-box {
        gap: 2.2rem;
        padding: 2.3rem;
    }
}

/* ─── TABLET LARGE (≤1024px) - iPad Pro 12.9" ────────────── */
@media (min-width: 835px) and (max-width: 1024px) {
    .bundles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.4rem;
    }

    .mant-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .mant-g {
        grid-template-columns: repeat(2, 1fr);
    }

    .hours-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .service-box {
        gap: 2.5rem;
        padding: 2.5rem;
    }
}

/* ─── DESKTOP SMALL (≤1280px) - Laptops 13" ──────────────── */
@media (min-width: 1025px) and (max-width: 1280px) {
    .bundles-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .mant-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hours-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .service-box {
        max-width: 1100px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* ─── DESKTOP MEDIUM (≤1440px) - Laptops 15", Monitores ──── */
@media (min-width: 1281px) and (max-width: 1440px) {
    .bundles-grid {
        max-width: 1200px;
        margin: 0 auto;
    }

    .mant-grid {
        max-width: 1100px;
        margin: 0 auto;
    }

    .hours-grid {
        max-width: 1000px;
        margin: 0 auto;
    }

    .service-box {
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* ─── DESKTOP LARGE (≤1680px) - Monitores 17-19" ─────────── */
@media (min-width: 1441px) and (max-width: 1680px) {
    .bundles-grid {
        max-width: 1300px;
        margin: 0 auto;
        gap: 1.6rem;
    }

    .mant-grid {
        max-width: 1200px;
        margin: 0 auto;
    }

    .hours-grid {
        max-width: 1100px;
        margin: 0 auto;
    }

    .service-box {
        max-width: 1300px;
        margin-left: auto;
        margin-right: auto;
        padding: 3rem;
    }

    .cta-banner {
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
        padding: 3rem;
    }
}

/* ─── DESKTOP XL (≤1920px) - Monitores 21-24" ────────────── */
@media (min-width: 1681px) and (max-width: 1920px) {
    .bundles-grid {
        max-width: 1400px;
        margin: 0 auto;
        gap: 1.8rem;
    }

    .mant-grid {
        max-width: 1300px;
        margin: 0 auto;
    }

    .hours-grid {
        max-width: 1200px;
        margin: 0 auto;
    }

    .service-box {
        max-width: 1400px;
        margin-left: auto;
        margin-right: auto;
        padding: 3.2rem;
    }

    .cta-banner {
        max-width: 1300px;
        margin-left: auto;
        margin-right: auto;
        padding: 3.2rem;
    }
}

/* ─── DESKTOP ULTRA (≥1921px) - Monitores 27"+, 4K, 5K ───── */
@media (min-width: 1921px) {
    /* Aumentar tamaños proporcionalmente */
    .page-hero h1 {
        font-size: clamp(3rem, 4vw, 4.5rem);
    }

    .page-hero p {
        font-size: 1.2rem;
    }

    .bundles-grid {
        max-width: 1600px;
        margin: 0 auto;
        gap: 2rem;
    }

    .bundle-card {
        padding: 0;
    }

    .bundle-header {
        padding: 2.5rem 2.5rem 0;
    }

    .bundle-card h3 {
        font-size: 1.4rem;
    }

    .bundle-card .desc {
        font-size: 1rem;
    }

    .bundle-pricing {
        margin: 1.8rem 2.5rem;
        padding: 1.8rem;
    }

    .price-row {
        font-size: 0.95rem;
    }

    .price-val.hot {
        font-size: 1.5rem;
    }

    .feat-list li {
        font-size: 0.95rem;
    }

    .mant-grid {
        max-width: 1500px;
        margin: 0 auto;
        gap: 1.6rem;
    }

    .mant-card {
        padding: 2.2rem;
    }

    .mant-card h3 {
        font-size: 1.2rem;
    }

    .mant-price {
        font-size: 2.3rem;
    }

    .mant-list li {
        font-size: 0.95rem;
    }

    .hours-grid {
        max-width: 1400px;
        margin: 0 auto;
        gap: 1.4rem;
    }

    .hour-card {
        padding: 2rem;
    }

    .h-price {
        font-size: 2.2rem;
    }

    .hour-card h3 {
        font-size: 1.1rem;
    }

    .hour-card p {
        font-size: 0.9rem;
    }

    .service-box {
        max-width: 1500px;
        margin-left: auto;
        margin-right: auto;
        padding: 3.5rem;
        gap: 4rem;
    }

    .bi {
        font-size: 3.2rem;
    }

    .service-box h2 {
        font-size: 2rem;
    }

    .sd {
        font-size: 1.05rem;
    }

    .fl li {
        font-size: 0.95rem;
    }

    .srb {
        padding: 2.2rem;
    }

    .pb .am {
        font-size: 2.6rem;
    }

    .cta-banner {
        max-width: 1400px;
        margin-left: auto;
        margin-right: auto;
        padding: 3.5rem;
    }

    .cta-banner h2 {
        font-size: 2.2rem;
    }

    .cta-banner p {
        font-size: 1.1rem;
    }
}

/* ─── ORIENTACIONES LANDSCAPE ─────────────────────────────── */
/* Landscape móvil */
@media (max-width: 768px) and (max-height: 500px) {
    .page-hero {
        padding: 5rem 4% 2rem;
    }

    .page-hero h1 {
        font-size: clamp(1.4rem, 4vw, 2rem);
    }

    .consult-top {
        padding: 0.8rem 1rem;
    }

    .consult-top p {
        font-size: 0.75rem;
    }

    .btn-green-sm {
        width: auto;
        padding: 0.45rem 1rem;
    }

    .bundles-grid {
        grid-template-columns: 1fr;
    }

    .mant-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mant-g {
        grid-template-columns: repeat(2, 1fr);
    }

    .hours-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .service-box,
    .service-box.rv {
        padding: 1.8rem 1.3rem;
        gap: 1.5rem;
    }

    .cta-banner {
        padding: 2rem 1.5rem;
    }
}

/* Landscape tablet */
@media (min-width: 769px) and (max-width: 1024px) and (max-height: 700px) {
    .page-hero {
        padding: 6rem 4% 2.5rem;
    }

    .bundles-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .mant-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .mant-g {
        grid-template-columns: repeat(2, 1fr);
    }

    .hours-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .service-box {
        padding: 2.3rem;
        gap: 2.3rem;
    }
}

/* ─── ACCESIBILIDAD - PREFERENCIA REDUCCIÓN MOVIMIENTO ───── */
@media (prefers-reduced-motion: reduce) {
    .anim,
    .anim-delay-1,
    .anim-delay-2,
    .anim-delay-3 {
        animation: none !important;
        transition: none !important;
    }

    .bundle-card,
    .mant-card,
    .hour-card,
    .service-box {
        transition: none !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* ─── ACCESIBILIDAD - ALTO CONTRASTE ─────────────────────── */
@media (prefers-contrast: high) {
    .bundle-card.star {
        border-width: 2px;
    }

    .mant-card.pro {
        border-width: 2px;
    }

    .btn-b-outline,
    .btn-b-solid {
        border-width: 2px;
    }
}

/* ─── DESKTOP GRANDE (≥1440px) - Refuerzo ─────────────────── */
@media (min-width: 1440px) {
    .page-hero {
        max-width: 1400px;
        margin: 0 auto;
    }

    .service-box {
        max-width: 1300px;
        margin-left: auto;
        margin-right: auto;
    }

    .bundles-grid {
        max-width: 1300px;
        margin: 0 auto;
    }

    .mant-grid {
        max-width: 1200px;
        margin: 0 auto;
    }

    .hours-grid {
        max-width: 1000px;
        margin: 0 auto;
    }

    .faq-list {
        max-width: 800px;
    }

    .cta-banner {
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* ─── IMPRESIÓN ──────────────────────────────────────────── */
@media print {
    nav,
    footer,
    .hamburger,
    .nav-right,
    .btn-consult,
    .btn-ghost,
    .cta-banner {
        display: none !important;
    }

    body {
        background: white;
        color: black;
        font-size: 12pt;
    }

    .bundles-grid,
    .mant-grid,
    .hours-grid {
        display: block;
    }

    .bundle-card,
    .mant-card,
    .hour-card {
        break-inside: avoid;
        border: 1px solid #ccc;
        margin-bottom: 1rem;
    }
}
