/* ============================================================
   ZIPWEB — precios.css
   Estilos específicos de la página precios.html
   ============================================================ */

/* PAGE HERO */
.page-hero {
    padding: 9rem 6% 4rem;
    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;
    -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;
}

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

/* MAINTENANCE ONLY */
.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;
}

/* HOURS */
.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 - PRECIOS.CSS
   Sistema completo para la página de precios
   ============================================================ */

/* ─── TABLET (≤1024px) ───────────────────────────────────── */
@media (max-width: 1024px) {
    .bundles-grid {
        grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    }

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

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

/* ─── MOBILE LARGE (≤768px) ──────────────────────────────── */
@media (max-width: 768px) {
    /* Page hero */
    .page-hero {
        padding: 7rem 5% 3rem;
    }

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

    .page-hero p {
        font-size: 0.92rem;
        max-width: 100%;
    }

    /* Consult top */
    .consult-top {
        padding: 1rem 1.3rem;
        gap: 1rem;
    }

    .consult-top div {
        font-size: 1.5rem;
    }

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

    .btn-green-sm {
        padding: 0.5rem 1.1rem;
        font-size: 0.8rem;
    }

    /* Bundles section */
    .bundles-section {
        padding: 4rem 5%;
    }

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

    .bundle-card {
        border-radius: 16px;
    }

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

    .bundle-tech {
        gap: 0.3rem;
    }

    .tech-pill {
        font-size: 0.63rem;
        padding: 0.15rem 0.5rem;
    }

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

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

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

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

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

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

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

    .bundle-cta {
        padding: 1.3rem 1.8rem 1.8rem;
    }

    .btn-b-outline,
    .btn-b-solid {
        padding: 0.75rem;
        font-size: 0.82rem;
    }

    /* Maintenance section */
    .mant-section {
        padding: 4rem 5%;
    }

    .mant-section .section-header h2 {
        font-size: 1.5rem;
    }

    .mant-section .section-sub {
        font-size: 0.88rem;
    }

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

    .mant-card {
        padding: 1.6rem;
        border-radius: 14px;
    }

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

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

    .mant-sub {
        font-size: 0.7rem;
    }

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

    /* Hours section */
    .hours-section {
        padding: 3.5rem 5%;
    }

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

    .hour-card {
        padding: 1.4rem;
        border-radius: 11px;
    }

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

    .h-h {
        font-size: 0.7rem;
    }

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

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

    /* FAQ section */
    .faq-section {
        padding: 3.5rem 5%;
    }

    .faq-section .section-header h2 {
        font-size: 1.5rem;
    }

    .faq-item h4 {
        font-size: 0.88rem;
    }

    .faq-item p {
        font-size: 0.8rem;
    }

    /* CTA banner */
    .cta-banner {
        margin: 2.5rem 5% 3.5rem;
        padding: 2.5rem 1.8rem;
        border-radius: 16px;
    }

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

    .cta-banner p {
        font-size: 0.85rem;
        max-width: 100%;
    }

    .btn-p {
        padding: 0.8rem 1.6rem;
        font-size: 0.88rem;
    }

    .btn-xl {
        padding: 0.9rem 2rem;
    }
}

/* ─── MOBILE SMALL (≤480px) ──────────────────────────────── */
@media (max-width: 480px) {
    /* Page hero */
    .page-hero {
        padding: 6rem 5% 2.5rem;
    }

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

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

    /* Consult top */
    .consult-top {
        padding: 0.9rem 1.1rem;
        gap: 0.8rem;
    }

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

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

    .btn-green-sm {
        padding: 0.45rem 0.95rem;
        font-size: 0.75rem;
        width: 100%;
    }

    /* Bundles */
    .bundles-section {
        padding: 3.5rem 5%;
    }

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

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

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

    .bundle-pricing {
        margin: 1rem 1.6rem;
        padding: 1rem;
        border-radius: 10px;
    }

    .price-row {
        font-size: 0.73rem;
        gap: 0.5rem;
    }

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

    .price-note {
        font-size: 0.65rem;
    }

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

    .feat-list li {
        font-size: 0.73rem;
        gap: 0.4rem;
    }

    .bundle-cta {
        padding: 1.2rem 1.6rem 1.6rem;
    }

    .btn-b-outline,
    .btn-b-solid {
        padding: 0.7rem;
        font-size: 0.78rem;
        border-radius: 8px;
    }

    .star-label {
        font-size: 0.6rem;
        padding: 0.18rem 0.55rem;
        top: 0.8rem;
        right: 0.8rem;
    }

    /* Maintenance */
    .mant-section {
        padding: 3.5rem 5%;
    }

    .mant-card {
        padding: 1.4rem;
        border-radius: 12px;
    }

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

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

    .mant-sub {
        font-size: 0.65rem;
    }

    .mant-list {
        gap: 0.35rem;
    }

    .mant-list li {
        font-size: 0.73rem;
        gap: 0.4rem;
    }

    /* Hours */
    .hours-section {
        padding: 3rem 5%;
    }

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

    .hour-card {
        padding: 1.2rem;
        border-radius: 10px;
    }

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

    .h-h {
        font-size: 0.65rem;
    }

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

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

    /* FAQ */
    .faq-section {
        padding: 3rem 5%;
    }

    .faq-item {
        padding: 1.1rem 0;
    }

    .faq-item h4 {
        font-size: 0.82rem;
    }

    .faq-item p {
        font-size: 0.75rem;
    }

    /* CTA banner */
    .cta-banner {
        margin: 2rem 5% 3rem;
        padding: 2rem 1.4rem;
        border-radius: 14px;
    }

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

    .cta-banner p {
        font-size: 0.8rem;
        margin-bottom: 1.5rem;
    }

    .btn-p {
        padding: 0.75rem 1.4rem;
        font-size: 0.82rem;
        border-radius: 8px;
    }

    .btn-xl {
        padding: 0.8rem 1.6rem;
    }
}

/* ─── DISPOSITIVOS MUY PEQUEÑOS (≤360px) ─────────────────── */
@media (max-width: 360px) {
    .page-hero h1 {
        font-size: clamp(1.4rem, 8vw, 2rem);
    }

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

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

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

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

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

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

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

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

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

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

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

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

    .faq-item h4 {
        font-size: 0.78rem;
    }

    .faq-item p {
        font-size: 0.7rem;
    }
}

/* ─── DESKTOP GRANDE (≥1440px) ───────────────────────────── */
@media (min-width: 1440px) {
    .page-hero {
        max-width: 1400px;
        margin: 0 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;
    }
}