@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;900&display=swap');

body {
    background-color: #000;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    color: white;
}

.promos-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.promo-card {
    flex: 1;
    min-width: 320px;
    max-width: 450px;
    background: #111; /* Fondo oscuro sutil */
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid #333;
}

.promo-card:hover {
    transform: translateY(-10px);
}

.card-inner {
    padding: 40px;
    text-align: center;
}

/* Estilos de Insignias (Badges) */
.badge {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 5px 15px;
    border-radius: 50px;
    background: #e31e24;
    color: white;
}

.badge.purple {
    background: #9d4edd;
}

/* TÃ­tulos */
.promo-title {
    font-size: 1.5rem;
    font-weight: 400;
    margin: 25px 0 10px;
    letter-spacing: 2px;
}

.promo-title span {
    font-size: 5rem;
    font-weight: 900;
    display: block;
    line-height: 1;
}

.card-anualidad .promo-title span { color: #fff; }
.card-mujer .promo-title span { color: #ff99f1; } /* Rosa suave del anuncio */

/* Cajas de Precio e Info */
.price-box {
    margin: 20px 0;
}

.price-box .price {
    font-size: 3.5rem;
    font-weight: 900;
    color: #e31e24;
}

.sub-promo {
    font-weight: 700;
    color: #ff99f1;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.services-list {
    font-size: 0.7rem;
    color: #aaa;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.promo-info {
    margin: 30px 0;
    font-size: 0.85rem;
    color: #ccc;
}

.promo-info .total {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin: 5px 0;
}

.promo-info .small {
    font-size: 0.7rem;
    color: #666;
}

/* Botones */
.btn-promo {
    display: block;
    padding: 15px;
    text-decoration: none;
    font-weight: 900;
    border-radius: 10px;
    transition: 0.3s;
    letter-spacing: 1px;
}

.btn-red { background: #e31e24; color: white; }
.btn-red:hover { background: #fff; color: #000; }

.btn-purple { background: #7b2cbf; color: white; }
.btn-purple:hover { background: #ff99f1; color: #000; }

.validity {
    margin-top: 20px;
    font-size: 0.7rem;
    color: #444;
}

/* DecoraciÃ³n sutil de fondo para la tarjeta de mujer */
.card-mujer {
    background: linear-gradient(145deg, #111 0%, #240046 100%);
    border: 1px solid #5a189a;
}

.promo-disclaimer {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
    text-align: center;
}

.promo-disclaimer p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    color: #888; /* Color gris suave para no distraer de las tarjetas */
    line-height: 1.6;
    font-weight: 300;
}

.promo-disclaimer a {
    color: #e31e24; /* El rojo de tu logo para el link */
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.promo-disclaimer a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Opcional: una l¨ªnea sutil arriba del texto */
.promo-disclaimer::before {
    content: "";
    display: block;
    width: 50px;
    height: 1px;
    background: #333;
    margin: 0 auto 20px;
}