/* =========================================================
   MOTIVACIÓN SALSERA
   Prices Page Styles
========================================================= */


/* =========================================================
   1. PRICES HERO
========================================================= */

.prices-hero {
    position: relative;

    padding: 90px 20px 80px;

    background:
        linear-gradient(
            135deg,
            #fffaf5 0%,
            #fff7f0 50%,
            #f8e9df 100%
        );

    text-align: center;

    overflow: hidden;
}

.prices-hero::before,
.prices-hero::after {
    content: "";

    position: absolute;

    border: 1px solid rgba(169, 0, 32, 0.08);

    border-radius: 50%;

    pointer-events: none;
}

.prices-hero::before {
    width: 420px;
    height: 420px;

    top: -250px;
    left: -190px;
}

.prices-hero::after {
    width: 360px;
    height: 360px;

    right: -190px;
    bottom: -240px;
}

.prices-hero-content {
    position: relative;

    z-index: 2;

    width: min(760px, 100%);

    margin: 0 auto;
}

.prices-hero .eyebrow {
    margin-bottom: 15px;
}

.prices-hero h1 {
    margin: 0 0 20px;

    color: var(--black);

    font-size: clamp(2.8rem, 6vw, 5rem);

    line-height: 1;

    letter-spacing: -2px;
}

.prices-hero h1 .accent {
    color: var(--orange);
}

.prices-intro {
    max-width: 620px;

    margin: 0 auto;

    color: var(--muted);

    font-size: 0.95rem;

    line-height: 1.75;
}


/* =========================================================
   2. PRICES SECTION
========================================================= */

.prices-section {
    padding: 85px 20px 100px;

    background: var(--cream);
}

.prices-container {
    width: min(950px, 100%);

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 24px;

    align-items: start;
}


/* =========================================================
   3. PRICE CARD
========================================================= */

.price-card {
    position: relative;

    padding: 35px;

    background: white;

    border: 1px solid var(--border);

    border-radius: var(--radius-lg);

    box-shadow: var(--shadow-sm);

    overflow: hidden;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.price-card:hover {
    transform: translateY(-4px);

    box-shadow: var(--shadow-md);
}

.price-card-main {
    border-top: 4px solid var(--red);
}


/* =========================================================
   4. PRICE CARD HEADER
========================================================= */

.price-card-header {
    margin-bottom: 28px;
}

.price-category {
    margin-bottom: 10px;

    color: var(--red);

    font-size: 0.65rem;

    font-weight: 800;

    letter-spacing: 1.5px;
}

.price-card-header h2 {
    margin-bottom: 12px;

    color: var(--black);

    font-size: clamp(1.7rem, 3vw, 2.2rem);

    line-height: 1.1;

    letter-spacing: -0.5px;
}

.price-card-description {
    color: var(--muted);

    font-size: 0.78rem;

    line-height: 1.7;
}


/* =========================================================
   5. PRICE LIST
========================================================= */

.price-list {
    display: flex;

    flex-direction: column;

    gap: 0;

    margin: 0;

    padding: 0;

    list-style: none;
}

.price-item {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding: 17px 0;

    border-bottom: 1px solid var(--border);
}

.price-item:first-child {
    border-top: 1px solid var(--border);
}

.price-info {
    min-width: 0;
}

.price-info strong {
    display: block;

    color: var(--text);

    font-size: 0.78rem;

    line-height: 1.4;

    font-weight: 700;
}

.price-info small {
    display: block;

    margin-top: 3px;

    color: var(--muted);

    font-size: 0.65rem;
}

.price-value {
    flex-shrink: 0;

    color: var(--red);

    font-size: 0.95rem;

    font-weight: 800;

    white-space: nowrap;
}


/* =========================================================
   6. SPECIAL VISUAL ACCENT
========================================================= */

.price-card-main::before {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    top: -100px;
    right: -100px;

    border-radius: 50%;

    background: rgba(242, 126, 63, 0.06);

    pointer-events: none;
}


/* =========================================================
   7. PRICES CTA
========================================================= */

.prices-cta {
    position: relative;

    padding: 90px 20px;

    background:
        linear-gradient(
            135deg,
            var(--red-dark),
            var(--red)
        );

    color: white;

    text-align: center;

    overflow: hidden;
}

.prices-cta::before,
.prices-cta::after {
    content: "";

    position: absolute;

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 50%;

    pointer-events: none;
}

.prices-cta::before {
    width: 460px;
    height: 460px;

    left: -240px;
    top: -270px;
}

.prices-cta::after {
    width: 400px;
    height: 400px;

    right: -210px;
    bottom: -260px;
}

.prices-cta-content {
    position: relative;

    z-index: 2;

    width: min(650px, 100%);

    margin: 0 auto;
}

.prices-cta .eyebrow {
    margin-bottom: 13px;

    color: rgba(255, 255, 255, 0.72);
}

.prices-cta h2 {
    margin-bottom: 18px;

    color: white;

    font-size: clamp(2.4rem, 5vw, 4rem);

    line-height: 1;

    letter-spacing: -1px;
}

.prices-cta h2 .accent {
    color: var(--orange-light);
}

.prices-cta p:not(.eyebrow) {
    max-width: 520px;

    margin: 0 auto 28px;

    color: rgba(255, 255, 255, 0.82);

    font-size: 0.86rem;

    line-height: 1.7;
}

.prices-cta .btn {
    background: white;

    color: var(--red);
}

.prices-cta .btn:hover {
    background: var(--orange-light);

    color: white;
}


/* =========================================================
   8. RESPONSIVE
========================================================= */

@media (max-width: 850px) {

    .prices-hero {
        padding: 70px 20px 65px;
    }

    .prices-section {
        padding: 70px 20px 80px;
    }

    .prices-container {
        grid-template-columns: 1fr;

        max-width: 650px;
    }

    .prices-cta {
        padding: 75px 20px;
    }
}


@media (max-width: 600px) {

    .prices-hero {
        padding: 60px 18px 55px;
    }

    .prices-hero h1 {
        font-size: clamp(2.5rem, 12vw, 3.5rem);

        letter-spacing: -1.5px;
    }

    .prices-intro {
        font-size: 0.85rem;
    }

    .prices-section {
        padding: 55px 18px 70px;
    }

    .price-card {
        padding: 25px 20px;

        border-radius: 18px;
    }

    .price-card-header h2 {
        font-size: 1.7rem;
    }

    .price-item {
        align-items: flex-start;

        gap: 15px;

        padding: 15px 0;
    }

    .price-info strong {
        font-size: 0.74rem;
    }

    .price-value {
        font-size: 0.88rem;
    }

    .prices-cta {
        padding: 65px 18px;
    }

    .prices-cta h2 {
        font-size: 2.5rem;
    }
}


/* =========================================================
   9. ACCESSIBILITY
========================================================= */

.price-card:focus-within {
    outline: 2px solid var(--orange);

    outline-offset: 4px;
}
