/* ============================================
   AISLAMIENTO TOTAL PARA PLANES PLUS
============================================ */

.plan-plus {
    all: unset; /* rompe herencia del contenedor */
    display: block;
    box-sizing: border-box;

    /* Estilo premium */
    background: linear-gradient(135deg, #1a1a1a, #3a3a3a, #5a5a5a) !important;
    color: #fff !important;
    border: 2px solid rgba(255, 215, 0, 0.6) !important;
    border-radius: 14px !important;
    padding: 25px !important;
    box-shadow: 0 0 18px rgba(255, 215, 0, 0.25) !important;
    position: relative !important;
    overflow: hidden !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

/* brillo diagonal */
.plan-plus::before {
    content: "";
    position: absolute !important;
    top: -120% !important;
    left: -120% !important;
    width: 300% !important;
    height: 300% !important;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0.15) 50%,
        rgba(255, 255, 255, 0.05) 100%
    ) !important;
    transform: rotate(25deg) !important;
    pointer-events: none !important;
}

/* hover */
.plan-plus:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 0 28px rgba(255, 215, 0, 0.45) !important;
}

/* título */
.plan-plus .plan__nombre {
    all: unset;
    display: block;
    font-size: 1.4em !important;
    font-weight: bold !important;
    color: #ffd700 !important;
    text-shadow: 0 0 6px rgba(255, 215, 0, 0.6) !important;
    margin-bottom: 10px !important;
}

/* precio */
.plan-plus .plan__precio {
    all: unset;
    display: block;
    font-size: 1.4em !important;
    font-weight: bold !important;
    color: #ffffff !important;
    margin-bottom: 20px !important;
}

/* lista */
.plan-plus .plan__lista {
    all: unset;
    display: block;
    margin: 0;
    padding: 0;
}

.plan-plus .plan__lista li {
    all: unset;
    display: block;
    color: #f0f0f0 !important;
    margin-bottom: 12px !important;
}

/* addons */
.plan-plus .addon__nombre {
    color: #ffd700 !important;
}

.plan-plus .addon__precio {
    color: #ffffff !important;
}

/* botones */
.plan-plus .btn-accion {
    all: unset;
    display: inline-block;
    background: #ffd700 !important;
    color: #000 !important;
    border-radius: 8px !important;
    padding: 10px 14px !important;
    font-weight: bold !important;
    cursor: pointer !important;
    margin-right: 10px !important;
    transition: background 0.3s ease !important;
}

.plan-plus .btn-accion:hover {
    background: #ffea80 !important;
}

/* ============================================
   TEMA PREMIUM PARA SECCIÓN PLANES PLUS
============================================ */

.planes.plus-section {
    background: radial-gradient(circle at top, #2a2a2a 0%, #0f0f0f 100%);
    padding: 60px 0;
    border-top: 2px solid rgba(255, 215, 0, 0.4);
    border-bottom: 2px solid rgba(255, 215, 0, 0.4);
}

/* Título y subtítulo premium */
.planes.plus-section .planes__titulo {
    color: #ffd700 !important;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
    font-weight: bold;
    font-size: 2em;
    margin-bottom: 10px;
    padding: 14px 22px;
    border-radius: 12px;
    display: inline-block;
    border: 1px solid rgba(255, 215, 0, 0.4);
    background: radial-gradient(circle at center, #1a1a1a 0%, #3a3a3a 100%);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

/* Subtítulo */
.planes.plus-section .planes__sub {
    color: #e6e6e6 !important;
    font-size: 1.1em;
    margin-bottom: 40px;
}

/* Ajuste del grid para destacar las tarjetas */
.planes.plus-section .planes__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

/* Asegura que las tarjetas no hereden fondo de la página */
.planes.plus-section .plan-plus {
    background: linear-gradient(135deg, #1a1a1a, #3a3a3a, #5a5a5a) !important;
}

/* ============================================
   RÓTULO PREMIUM INDEPENDIENTE PARA PLANES PLUS
============================================ */

.planes.plus-section .planes__titulo {
    color: #ffd700 !important;
    font-weight: bold;
    font-size: 2em;
    margin-bottom: 20px;

    /* Fondo independiente */
    background: linear-gradient(135deg, #0d0d0d, #1f1f1f, #3a3a3a) !important;

    /* Borde dorado */
    border: 2px solid rgba(255, 215, 0, 0.6) !important;

    /* Sombra luminosa */
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.4);

    /* Forma */
    padding: 18px 30px;
    border-radius: 14px;
    display: inline-block;

    /* Evita que el fondo de la página afecte */
    position: relative;
    z-index: 10;
}

/* Fondo luminoso detrás del rótulo */
.planes.plus-section .planes__titulo::before {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;

    background: radial-gradient(circle, rgba(255, 215, 0, 0.25), transparent 70%);
    border-radius: 20px;
    z-index: -1;
}
