﻿/* ========================================
   PRECIOS PAGE — Style_Precios.css
   100% autónomo — NO depende de Style_Index.css
   Todas las clases usan prefijo pr- o precios-
   ======================================== */

/* ═══════════════════════════════════════
   VARIABLES Y BASE
   ═══════════════════════════════════════ */

:root {
    --pr-primary: #6366f1;
    --pr-primary-dark: #4f46e5;
    --pr-secondary: #f59e0b;
    --pr-secondary-dark: #d97706;
    --pr-success: #10b981;
    --pr-danger: #ef4444;
    --pr-dark-bg: #0f172a;
    --pr-darker-bg: #020617;
    --pr-glass-bg: rgba(15, 23, 42, 0.8);
    --pr-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --pr-radius: 1rem;
    --pr-radius-sm: 0.5rem;
    --pr-transition: 0.3s ease;
    --pr-transition-fast: 0.2s ease;
}

.precios-page {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    background: var(--pr-dark-bg);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

    .precios-page .gradient-text {
        background: var(--pr-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        color: transparent;
    }

/* ═══════════════════════════════════════
   NAVEGACIÓN
   ═══════════════════════════════════════ */

.precios-nav {
    background: var(--pr-glass-bg);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
}

    .precios-nav.scrolled {
        background: rgba(15, 23, 42, 0.95);
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    }

    .precios-nav .navbar-brand {
        font-size: 1.5rem !important;
        font-weight: 700;
        text-decoration: none;
        transition: transform var(--pr-transition);
    }

        .precios-nav .navbar-brand:hover {
            transform: scale(1.03);
        }

    .precios-nav .brand-accent {
        color: var(--pr-primary);
    }

    .precios-nav .nav-link {
        color: rgba(255, 255, 255, 0.7) !important;
        font-weight: 500;
        padding: 0.5rem 0.9rem !important;
        transition: color var(--pr-transition);
    }

        .precios-nav .nav-link:hover,
        .precios-nav .nav-link.active {
            color: #ffffff !important;
        }

    .precios-nav .btn-nav-access {
        background: var(--pr-primary);
        color: #ffffff;
        border: none;
        border-radius: 3rem;
        padding: 0.5rem 1.5rem;
        font-weight: 600;
        font-size: 0.9rem;
        transition: all var(--pr-transition);
        text-decoration: none;
    }

        .precios-nav .btn-nav-access:hover {
            background: var(--pr-primary-dark);
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
        }

/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */

.precios-hero {
    min-height: 62vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
}

.precios-hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 20% 50%, rgba(99, 102, 241, 0.15) 0%, transparent 60%), radial-gradient(ellipse 40% 40% at 80% 30%, rgba(245, 158, 11, 0.08) 0%, transparent 50%), var(--pr-dark-bg);
    z-index: -1;
}

.precios-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(99, 102, 241, 0.12);
    color: var(--pr-primary);
    border: 1px solid rgba(99, 102, 241, 0.25);
    border-radius: 2rem;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.precios-hero .hero-title {
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.precios-hero .hero-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

.pr-guarantee-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    transition: all var(--pr-transition);
}

    .pr-guarantee-badge:hover {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(99, 102, 241, 0.3);
        transform: translateY(-2px);
    }

/* ═══════════════════════════════════════
   PRICING CARDS
   ═══════════════════════════════════════ */

.precios-cards-section {
    background: var(--pr-darker-bg);
    position: relative;
}

    .precios-cards-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.2), transparent);
    }

.pr-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--pr-radius);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .pr-card:hover {
        transform: translateY(-8px);
        border-color: rgba(99, 102, 241, 0.25);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(99, 102, 241, 0.08);
    }

.pr-card--featured {
    background: rgba(99, 102, 241, 0.06);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), 0 0 20px rgba(99, 102, 241, 0.1);
}

    .pr-card--featured:hover {
        border-color: rgba(99, 102, 241, 0.5);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 40px rgba(99, 102, 241, 0.15);
    }

    .pr-card--featured::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--pr-gradient);
    }

.pr-card__badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--pr-gradient);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.35rem 0.9rem;
    border-radius: 2rem;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.pr-card__header {
    text-align: center;
    padding: 2.25rem 1.75rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pr-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(99, 102, 241, 0.05));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    color: var(--pr-primary);
    border: 1px solid rgba(99, 102, 241, 0.2);
    transition: all var(--pr-transition);
}

.pr-card:hover .pr-card__icon {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.2);
}

.pr-card__icon--business {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(245, 158, 11, 0.05));
    color: var(--pr-secondary);
    border-color: rgba(245, 158, 11, 0.2);
}

.pr-card:hover .pr-card__icon--business {
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.2);
}

.pr-card__plan-name {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--pr-primary);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.pr-card--featured .pr-card__plan-name {
    color: #a5b4fc;
}

.pr-card__plan-name--business {
    color: var(--pr-secondary) !important;
}

.pr-card__price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.15rem;
    margin-bottom: 0.5rem;
}

.pr-card__price-amount {
    font-size: 3.25rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.pr-card__price-period {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
}

.pr-card__tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0;
}

.pr-card__body {
    padding: 1.75rem;
    flex: 1;
}

.pr-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .pr-features li {
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
        padding: 0.55rem 0;
        font-size: 0.92rem;
        color: rgba(255, 255, 255, 0.75);
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        transition: color var(--pr-transition-fast);
    }

        .pr-features li:last-child {
            border-bottom: none;
        }

        .pr-features li:hover {
            color: rgba(255, 255, 255, 0.95);
        }

        .pr-features li i {
            margin-top: 0.2rem;
            font-size: 0.8rem;
            flex-shrink: 0;
            width: 18px;
            text-align: center;
        }

.pr-feat--yes i {
    color: var(--pr-success);
}

.pr-feat--no i {
    color: rgba(239, 68, 68, 0.4);
}

.pr-feat--no span {
    color: rgba(255, 255, 255, 0.3);
    text-decoration: line-through;
    text-decoration-color: rgba(255, 255, 255, 0.15);
}

.pr-feat--highlight span {
    color: var(--pr-secondary);
}

.pr-card__footer {
    padding: 1.25rem 1.75rem 1.75rem;
    text-align: center;
}

.pr-btn {
    display: block;
    width: 100%;
    padding: 0.85rem 1.5rem;
    border-radius: 3rem;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .pr-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
        transition: left 0.5s ease;
    }

    .pr-btn:hover::before {
        left: 100%;
    }

.pr-btn--outline {
    color: rgba(255, 255, 255, 0.85);
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: transparent;
}

    .pr-btn--outline:hover {
        color: #fff;
        border-color: var(--pr-primary);
        background: rgba(99, 102, 241, 0.1);
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(99, 102, 241, 0.15);
    }

.pr-btn--primary {
    color: #fff;
    border: none;
    background: var(--pr-gradient);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

    .pr-btn--primary:hover {
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
    }

.pr-btn--business:hover {
    border-color: var(--pr-secondary);
    background: rgba(245, 158, 11, 0.1);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.15);
}

.pr-card__footer-note {
    display: block;
    margin-top: 0.75rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
}

/* ═══════════════════════════════════════
   SAVINGS CALLOUT
   ═══════════════════════════════════════ */

.pr-savings {
    background: rgba(245, 158, 11, 0.06);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: var(--pr-radius);
    padding: 2rem 2.5rem;
    position: relative;
    overflow: hidden;
}

    .pr-savings::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 100%;
        background: linear-gradient(180deg, var(--pr-secondary), var(--pr-secondary-dark));
        border-radius: 2px 0 0 2px;
    }

    .pr-savings h4 {
        color: #fff;
        font-weight: 700;
    }

    .pr-savings p {
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.95rem;
    }

.pr-savings__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(245, 158, 11, 0.05));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--pr-secondary);
    border: 1px solid rgba(245, 158, 11, 0.25);
}

.pr-savings__amount {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pr-savings__number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--pr-success);
    line-height: 1;
}

.pr-savings__label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.25rem;
}

/* ═══════════════════════════════════════
   COMPARISON TABLE
   ═══════════════════════════════════════ */

.precios-comparison {
    background: var(--pr-dark-bg);
}

.pr-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: var(--pr-radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

    .pr-table thead th {
        background: rgba(255, 255, 255, 0.04);
        color: rgba(255, 255, 255, 0.7);
        font-weight: 700;
        font-size: 0.9rem;
        padding: 1.1rem 1.25rem;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

.pr-table__feat-col {
    text-align: left !important;
    width: 35%;
    color: rgba(255, 255, 255, 0.5) !important;
}

.pr-table__plan-col {
    width: calc(65% / 3);
}

.pr-table__plan-col--pro {
    background: rgba(99, 102, 241, 0.1) !important;
    color: #a5b4fc !important;
    position: relative;
}

    .pr-table__plan-col--pro::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--pr-gradient);
    }

.pr-table tbody td {
    padding: 0.85rem 1.25rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    text-align: center;
    vertical-align: middle;
    transition: background var(--pr-transition-fast);
}

    .pr-table tbody td:first-child {
        text-align: left;
        color: rgba(255, 255, 255, 0.85);
        font-weight: 500;
    }

    .pr-table tbody td:nth-child(3) {
        background: rgba(99, 102, 241, 0.04);
        border-left: 1px solid rgba(99, 102, 241, 0.1);
        border-right: 1px solid rgba(99, 102, 241, 0.1);
    }

.pr-table tbody tr:not(.pr-table__cat):hover td {
    background: rgba(255, 255, 255, 0.03);
}

    .pr-table tbody tr:not(.pr-table__cat):hover td:nth-child(3) {
        background: rgba(99, 102, 241, 0.08);
    }

.pr-table__cat td {
    background: rgba(255, 255, 255, 0.02) !important;
    color: var(--pr-primary) !important;
    font-weight: 700 !important;
    font-size: 0.85rem !important;
    letter-spacing: 0.03em;
    padding-top: 1.1rem !important;
    padding-bottom: 0.75rem !important;
    border-bottom: 1px solid rgba(99, 102, 241, 0.15) !important;
}

    .pr-table__cat td i {
        opacity: 0.7;
    }

.pr-table .fa-check {
    font-size: 0.9rem;
    color: var(--pr-success);
}

.pr-table .fa-times {
    font-size: 0.85rem;
    color: rgba(239, 68, 68, 0.4);
}

.pr-table .pr-text-success {
    color: var(--pr-success) !important;
}

.pr-table .pr-text-warning {
    color: var(--pr-secondary) !important;
}

/* ═══════════════════════════════════════
   MARKETPLACE COMMISSIONS
   ═══════════════════════════════════════ */

.precios-marketplace {
    background: var(--pr-darker-bg);
    position: relative;
}

    .precios-marketplace::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.2), transparent);
    }

.pr-principle {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(16, 185, 129, 0.06);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: var(--pr-radius-sm);
    padding: 1.25rem;
    margin-top: 1rem;
}

.pr-principle__icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--pr-success);
    border: 1px solid rgba(16, 185, 129, 0.25);
}

.pr-principle h5 {
    color: var(--pr-success);
    font-weight: 700;
}

.pr-principle p {
    font-size: 0.9rem;
}

.pr-commissions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.pr-commission {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--pr-radius-sm);
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .pr-commission::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--pr-success), var(--pr-primary));
        opacity: 0;
        transition: opacity var(--pr-transition);
    }

    .pr-commission:hover {
        transform: translateY(-4px);
        border-color: rgba(16, 185, 129, 0.25);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    }

        .pr-commission:hover::before {
            opacity: 1;
        }

.pr-commission__range {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.pr-commission__rate {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--pr-secondary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.pr-commission__example {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.45);
}

    .pr-commission__example strong {
        color: var(--pr-success);
    }

/* ═══════════════════════════════════════
   FAQ
   ═══════════════════════════════════════ */

.precios-faq {
    background: var(--pr-dark-bg);
}

.pr-faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--pr-radius-sm);
    margin-bottom: 0.75rem;
    overflow: hidden;
    transition: all var(--pr-transition);
}

    .pr-faq-item:hover {
        border-color: rgba(99, 102, 241, 0.2);
    }

.pr-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.15rem 1.5rem;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: all var(--pr-transition);
}

    .pr-faq-question:hover {
        color: #fff;
    }

    .pr-faq-question i {
        font-size: 0.75rem;
        color: var(--pr-primary);
        transition: transform 0.3s ease;
        flex-shrink: 0;
    }

    .pr-faq-question:not(.collapsed) i {
        transform: rotate(180deg);
    }

.pr-faq-answer {
    padding: 0 1.5rem 1.25rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.7;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 1rem;
}

/* ═══════════════════════════════════════
   CTA
   ═══════════════════════════════════════ */

.precios-cta {
    background: var(--pr-darker-bg);
    position: relative;
}

    .precios-cta::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.2), transparent);
    }

    .precios-cta h2 {
        color: #fff;
        font-weight: 800;
    }

    .precios-cta .cta-accent {
        color: var(--pr-primary);
    }

    .precios-cta .cta-subtitle {
        color: rgba(255, 255, 255, 0.7);
        font-size: 1.15rem;
    }

.precios-cta__buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.pr-cta-primary {
    background: var(--pr-gradient) !important;
    border: none !important;
    color: #fff !important;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    border-radius: 3rem;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

    .pr-cta-primary::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
        transition: left 0.6s ease;
    }

    .pr-cta-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 35px rgba(99, 102, 241, 0.4);
        color: #fff !important;
    }

        .pr-cta-primary:hover::before {
            left: 100%;
        }

.pr-cta-secondary {
    border: 2px solid rgba(255, 255, 255, 0.5) !important;
    color: rgba(255, 255, 255, 0.9) !important;
    background: rgba(255, 255, 255, 0.05) !important;
    font-weight: 600;
    font-size: 1.05rem;
    padding: 0.9rem 2rem;
    border-radius: 3rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

    .pr-cta-secondary:hover {
        background: rgba(255, 255, 255, 0.1) !important;
        border-color: rgba(255, 255, 255, 0.7) !important;
        transform: translateY(-2px);
        color: #fff !important;
    }

.precios-cta .cta-guarantees {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.9rem;
}

    .precios-cta .cta-guarantees .pr-text-success {
        color: var(--pr-success) !important;
    }

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */

@media (max-width: 992px) {
    .precios-hero {
        min-height: 50vh;
        padding-top: 90px;
    }

    .pr-card__price-amount {
        font-size: 2.75rem;
    }

    .pr-savings {
        padding: 1.5rem 1.75rem;
    }

    .pr-savings__number {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .precios-hero {
        min-height: auto;
        padding-top: 80px;
        padding-bottom: 1rem;
    }

        .precios-hero .hero-title {
            font-size: 2.25rem !important;
        }

    .pr-card {
        max-width: 420px;
        margin: 0 auto;
    }

    .precios-comparison .table-responsive::after {
        content: '\2190 Desliza para ver m\00e1s \2192';
        display: block;
        text-align: center;
        font-size: 0.75rem;
        color: rgba(255, 255, 255, 0.3);
        padding: 0.75rem;
    }

    .pr-table thead th, .pr-table tbody td {
        padding: 0.7rem 0.75rem;
        font-size: 0.82rem;
        white-space: nowrap;
    }

    .pr-table__feat-col {
        min-width: 160px;
    }

    .pr-table__plan-col {
        min-width: 100px;
    }

    .pr-commissions {
        grid-template-columns: 1fr;
    }

    .pr-commission__rate {
        font-size: 2rem;
    }

    .pr-savings {
        padding: 1.25rem;
        text-align: center;
    }

        .pr-savings::before {
            width: 100%;
            height: 3px;
        }

    .pr-principle {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .precios-cta__buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .pr-cta-primary, .pr-cta-secondary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .precios-hero .hero-title {
        font-size: 1.75rem !important;
    }

    .pr-card__price-amount {
        font-size: 2.25rem;
    }

    .pr-card__plan-name {
        font-size: 0.8rem;
    }

    .pr-card__header {
        padding: 1.75rem 1.25rem 1.25rem;
    }

    .pr-card__body {
        padding: 1.25rem;
    }

    .pr-features li {
        font-size: 0.85rem;
        padding: 0.45rem 0;
    }

    .pr-faq-question {
        font-size: 0.92rem;
        padding: 1rem 1.25rem;
    }

    .pr-faq-answer {
        font-size: 0.88rem;
        padding: 0 1.25rem 1rem;
    }
}

/* ═══════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════ */

@keyframes prFadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pr-card {
    animation: prFadeInUp 0.6s ease-out both;
}

    .pr-card:nth-child(1) {
        animation-delay: 0.1s;
    }

    .pr-card:nth-child(2) {
        animation-delay: 0.2s;
    }

    .pr-card:nth-child(3) {
        animation-delay: 0.3s;
    }
