* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
}
/* ==========================
   SECCIÓN
========================== */

.promo-planes {
    position: relative;
    background-image: url("../../images/bg-promocion.jpg");
    background-size: contain;
    background-position: center;
    padding: 100px 20px;
    overflow: hidden;
}

.promo-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .70);
}

.promo-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: auto;
}

/* ==========================
   TÍTULO
========================== */

.promo-header {
    text-align: center;
    color: #fff;
    margin-bottom: 10rem;
}

.promo-header h2 {
    font-size: clamp(2rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
}

.promo-header h2 span {
    display: block;
    font-size: 50px;
    color: #0084DD;
    font-weight: 600;
}

.promo-header p {
    margin-top: 20px;
    font-size: 18px;
}

/* ==========================
   PLANES
========================== */

.planes-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
}

/* ==========================
   CARD
========================== */

.plan-card {
    position: relative;
    background: #fff;
    border-radius: 30px;
    padding: 80px 30px 40px;
    width: 100%;
    max-width: 360px;
    text-align: center;
}

.plan-tag {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: #0084DD;
    color: white;
    padding: 16px 15px;
    border-radius: 18px;
    font-weight: 700;
    font-size: 16px;
    min-width: 220px;
}

.plan-price {
    color: #0084DD;
    font-size: 60px;
    font-weight: 800;
    line-height: 1;
}

.currency {
    font-size: 35px;
    padding-right: 20px;
}

.plan-duration {
    color: #0084DD;
    font-weight: 700;
    font-size: 22px;
}

.plan-old-price {
    margin: 15px 0 25px;
    color: #bdbdbd;
    text-decoration: line-through;
    font-size: 22px;
}

.plan-text {
    line-height: 1.4;
    margin-bottom: 30px;
}

.btn-plan {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: #0084DD;
    color: white;
    text-decoration: none;
    padding: 10px 40px;
    border-radius: 999px;
    font-weight: 600;
}

/* ==========================
   CARD DESTACADA
========================== */

.featured {
    background: #0084DD;
    color: white;

    transform: scale(1.08);
    z-index: 5;
}

.featured .plan-price,
.featured .plan-duration {
    color: white;
}

.featured .plan-old-price {
    color: #DDDDDD;
}

.featured-label {
    position: absolute;

    top: -45px;
    left: 50%;
    transform: translateX(-50%);

    background: #fff;
    color: #0084DD;

    padding: 18px 30px;
    border-radius: 18px;

    min-width: 260px;

    font-weight: 700;
}

.featured-label span {
    display: block;
    font-style: italic;
    font-weight: 500;
}

.btn-plan.light {
    background: white;
    color: #0084DD;
}

/* ==========================
   TABLET
========================== */

@media (max-width: 992px) {

    .planes-wrapper {
        flex-wrap: wrap;
        gap: 60px;
    }

    .featured {
        transform: none;
    }
}

/* ==========================
   MOBILE
========================== */

@media (max-width: 768px) {

    .promo-planes {
        padding: 80px 15px;
    }

    .planes-wrapper {
        flex-direction: column;
        gap: 70px;
    }

    .plan-card,
    .featured {
        max-width: 100%;
        width: 100%;
    }

    .plan-price {
        font-size: 48px;
    }

    .featured-label,
    .plan-tag {
        min-width: auto;
        width: 85%;
    }
}
