/* =========================================================
   MEMBRESÍA PREMIA - ESTILOS COMPLETOS
   Paleta: Azul Petróleo #005F73, Cian #00bcd4
   ========================================================= */

/* =========================================================
   1. CONTENEDORES PRINCIPALES
   ========================================================= */

.abc-premia-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background: #F1F5F9;
    box-shadow: 0 10px 25px rgba(0,0,0,0.7);
}

/* =========================================================
   2. CABECERA - SALUDO
   ========================================================= */

.abc-premia-header {
    text-align: center;
    margin-bottom: 48px;
}

.abc-premia-icono {
    background: linear-gradient(135deg, #7C3AED 0%, #3BB8DB 100%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.2);
}

.abc-premia-icono .dashicons {
    font-size: 40px;
    width: 40px;
    height: 40px;
    color: #ffffff;
}

.abc-premia-titulo {
    font-size: 36px;
    font-weight: 800;
    color: #1F2937;
    margin: 0 0 12px;
    background: linear-gradient(135deg, #7C3AED 0%, #3BB8DB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.abc-premia-subtitulo {
    font-size: 18px;
    color: #6B7280;
    margin: 0;
}

/* =========================================================
   3. TARJETAS GENERALES
   ========================================================= */

.abc-premia-card {
    background: #ffffff;
    margin-bottom: 32px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s, box-shadow 0.2s;
}

.abc-premia-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
}

.abc-premia-card-header {
    padding: 24px 28px 0 28px;
    border-bottom: 1px solid #F3F4F6;
}

.abc-premia-card-header h2 {
    font-size: 20px;
    font-weight: 600;
    color: #1F2937;
    margin: 0 0 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.abc-premia-card p {
    font-size: 18px;
    color: #6B7280;
    line-height: 1.5;
    margin: 0;
}

.abc-premia-card-body {
    padding: 24px 28px;
}

/* =========================================================
   4. BADGE DE MEMBRESÍA
   ========================================================= */

.abc-premia-membresia-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.abc-premia-membresia-badge.fundador {
    background: linear-gradient(135deg, #F59E0B, #D97706);
    color: #ffffff;
}

.abc-premia-membresia-badge.universal {
    background: linear-gradient(135deg, #6B7280, #4B5563);
    color: #ffffff;
}

.abc-premia-membresia-badge.premia {
    background: linear-gradient(135deg, #7C3AED, #3BB8DB);
    color: #ffffff;
}

/* =========================================================
   5. BENEFICIOS
   ========================================================= */

.abc-premia-beneficios {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.abc-premia-beneficio {
    background: #ffffff;
    padding: 20px;
    display: flex;
    gap: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid #00bcd4;
    transition: all 0.2s;
}

.abc-premia-beneficio:hover {
    border-color: #E5E7EB;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.abc-premia-beneficio-icono {
    flex-shrink: 0;
}

.abc-premia-beneficio-icono .dashicons {
    font-size: 34px;
    width: 34px;
    height: 34px;
    color: #005F73;
}

.abc-premia-beneficio-contenido h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 8px;
    color: #1F2937;
}

.abc-premia-beneficio-contenido p {
    font-size: 18px;
    color: #6B7280;
    line-height: 1.5;
    margin: 0;
}

.abc-premia-beneficio.premia-destacado {
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid #00bcd4;
    transition: all 0.2s;
}

.abc-premia-beneficio.premia-destacado:hover {
    border-color: #E5E7EB;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* =========================================================
   6. COMISIONES
   ========================================================= */

.abc-premia-comisiones-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #F3F4F6;
}

.abc-premia-comision-label {
    display: block;
    font-size: 13px;
    color: #9CA3AF;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.abc-premia-comision-valor {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #1F2937;
}

.abc-premia-progreso {
    margin-bottom: 24px;
}

.abc-premia-progreso-bar {
    background: #F3F4F6;
    border-radius: 12px;
    height: 8px;
    overflow: hidden;
}

.abc-premia-progreso-fill {
    background: linear-gradient(90deg, #7C3AED, #3BB8DB);
    height: 100%;
    border-radius: 12px;
    transition: width 0.5s ease;
}

.abc-premia-progreso-texto {
    font-size: 13px;
    color: #6B7280;
    margin-top: 10px;
}

.abc-premia-total-comisiones {
    background: #F9FAFB;
    padding: 20px;
    text-align: center;
}

.abc-premia-total-label {
    display: block;
    font-size: 18px;
    color: #9CA3AF;
    margin-bottom: 8px;
}

.abc-premia-total-valor {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: #178236;
}

/* =========================================================
   7. OFERTA ESPECIAL
   ========================================================= */

.abc-premia-oferta {
    background: 
        linear-gradient(#1a1a1a, #1a1a1a) padding-box, 
        linear-gradient(135deg, #00d2ff, #3a7bd5, #ae2af4, #00d2ff) border-box;
    background-size: 100% 100%, 400% 400%;
    padding: 40px;
    margin-bottom: 32px;
    text-align: center;
    color: #ffffff;
    border: 10px solid transparent !important;
    border-radius: 50px;
    animation: aurora-border-flow 8s ease infinite;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), 0 0 15px rgba(0, 210, 255, 0.2);
    position: relative;
    overflow: hidden;
}

/* El pago dentro de la oferta hereda los estilos */
.abc-premia-oferta .abc-premia-pago-spei {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

@keyframes aurora-border-flow {
    0% {
        background-position: 0% 0%, 0% 50%;
    }
    50% {
        background-position: 0% 0%, 100% 50%;
    }
    100% {
        background-position: 0% 0%, 0% 50%;
    }
}

.abc-premia-oferta-badge {
    display: inline-block;
    background: #00bcd4;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
}

.abc-premia-oferta-titulo {
    font-size: 28px;
    font-weight: 800;
    color: #FFF;
    margin: 0 0 16px;
}

.abc-premia-oferta-descripcion {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 16px;
    opacity: 0.95;
}

.abc-premia-oferta-destacado {
    font-size: 18px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 0px;
    border: 1px solid #00bcd4;
    padding: 20px;
    margin-top: 24px;
}

.abc-premia-oferta p strong {
    color: #00bcd4;
    font-weight: 700;
}

/* =========================================================
   8. BENEFICIOS PREMIA (en oferta)
   ========================================================= */

.abc-premia-beneficios-premia {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 32px 0;
    text-align: left;
}

.abc-premia-beneficio-premia {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.abc-premia-beneficio-premia .dashicons {
    font-size: 28px;
    width: 28px;
    height: 28px;
    color: #ffffff;
    flex-shrink: 0;
}

.abc-premia-beneficio-premia h4 {
    font-size: 18px;
    font-weight: 600;
    color: #00bcd4;
    margin: 0 0 6px;
}

.abc-premia-beneficio-premia p {
    font-size: 16px;
    margin: 0;
    opacity: 0.9;
}

/* =========================================================
   9. PRECIO
   ========================================================= */

.abc-premia-precio {
    text-align: center;
    margin-top: 32px;
}

.abc-premia-precio-valor {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.abc-premia-precio-numero {
    font-size: 48px;
    font-weight: 800;
    color: #F59E0B;
}

.abc-premia-precio-moneda {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
}

.abc-premia-precio-vigencia {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.abc-premia-precio-nota {
    font-size: 15px;
    margin-top: 12px;
    opacity: 0.8;
}

/* =========================================================
   10. BOTONES
   ========================================================= */

.abc-premia-acciones {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.abc-premia-btn {
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.abc-premia-btn-comprar {
    background: #016630;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3);
}

.abc-premia-btn-comprar:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.abc-premia-btn-renovar {
    background: #016630;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3);
}

.abc-premia-btn-renovar:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.abc-premia-btn-info {
    background: #1C398E;
    color: #ffffff;
    backdrop-filter: blur(4px);
}

.abc-premia-btn-info:hover {
    background: #2B7FFF;
    color: #ffffff;
    transform: translateY(-2px);
}

.abc-premia-btn-reportar {
    background: #00bcd4;
    color: #1a1a1a;
    font-weight: 700;
    padding: 14px 36px;
    border-radius: 50px;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.abc-premia-btn-reportar:hover {
    background: #0096aa;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 188, 212, 0.4);
}

/* =========================================================
   11. SECCIÓN DE PAGO SPEI
   ========================================================= */

.abc-premia-pago-spei {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

.abc-premia-pago-spei .abc-premia-pago-datos {
    text-align: left;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px 24px;
    margin-bottom: 20px;
}

.abc-premia-pago-spei .abc-premia-pago-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.abc-premia-pago-spei .abc-premia-pago-item:last-child {
    border-bottom: none;
}

.abc-premia-pago-spei .abc-premia-pago-label {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
}

.abc-premia-pago-spei .abc-premia-pago-valor {
    font-size: 15px;
    color: #ffffff;
    text-align: right;
    word-break: break-word;
}

.abc-premia-pago-spei .abc-pago-destacado {
    background: rgba(0, 188, 212, 0.2);
    padding: 2px 12px;
    border-radius: 6px;
    font-weight: 700;
    color: #00bcd4;
}

.abc-premia-pago-spei .abc-pago-monto {
    font-weight: 700;
    color: #00bcd4;
    font-size: 17px;
}

.abc-premia-pago-spei .abc-premia-pago-importante {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 24px;
    border-left: 4px solid #00bcd4;
    text-align: left;
}

.abc-premia-pago-spei .abc-premia-pago-importante .dashicons {
    font-size: 24px;
    width: 24px;
    height: 24px;
    color: #00bcd4;
    flex-shrink: 0;
    margin-top: 2px;
}

.abc-premia-pago-spei .abc-premia-pago-importante p {
    margin: 0;
    font-size: 15px;
    color: #ffffff;
}

.abc-premia-pago-spei .abc-premia-pago-importante p strong {
    color: #ffffff;
}

.abc-premia-pago-spei .abc-premia-reporte-mensaje {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
    padding: 16px;
    background: rgba(16, 185, 129, 0.15);
    border-radius: 12px;
    border: 1px solid #10B981;
}

.abc-premia-pago-spei .abc-premia-reporte-mensaje .dashicons {
    font-size: 28px;
    width: 28px;
    height: 28px;
    color: #10B981;
}

.abc-premia-pago-spei .abc-premia-reporte-mensaje p {
    margin: 0;
    font-size: 16px;
    color: #6EE7B7;
    font-weight: 500;
}

/* =========================================================
   12. VIGENCIA DE MEMBRESÍA PREMIA
   ========================================================= */

.abc-premia-vigencia-card .abc-premia-card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 28px;
}

.abc-premia-vigencia-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}

.abc-premia-vigencia-icono .dashicons {
    font-size: 48px;
    width: 48px;
    height: 48px;
    color: #005F73;
    background: rgba(0, 188, 212, 0.1);
    border-radius: 50%;
    padding: 12px;
    box-sizing: content-box;
}

.abc-premia-vigencia-texto {
    width: 100%;
}

.abc-premia-vigencia-texto p {
    margin: 0 0 8px 0;
    font-size: 18px;
    color: #4B5563;
}

.abc-premia-vigencia-fecha {
    font-size: 20px !important;
    color: #1F2937 !important;
}

.abc-premia-vigencia-fecha strong {
    color: #005F73;
}

.abc-premia-vigencia-dias {
    font-size: 18px !important;
    color: #6B7280 !important;
}

.abc-premia-dias-restantes {
    font-size: 24px;
    font-weight: 700;
    color: #00bcd4;
    background: rgba(0, 188, 212, 0.1);
    padding: 2px 12px;
    border-radius: 6px;
}

.abc-premia-vigencia-nota {
    font-size: 16px !important;
    color: #9CA3AF !important;
    font-style: italic;
}

.abc-premia-vigencia-card .abc-premia-acciones {
    margin-top: 20px;
}

/* =========================================================
   13. MÉTODOS DE PAGO
   ========================================================= */

.abc-premia-metodos-lista {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.abc-premia-metodo {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    background: #F9FAFB;
    border-radius: 12px;
}

.abc-premia-metodo-icono .dashicons {
    font-size: 24px;
    width: 24px;
    height: 24px;
    color: #7C3AED;
}

.abc-premia-metodo-principal {
    background: #10B981;
    color: #ffffff;
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
    margin-left: 10px;
}

.abc-premia-metodos-nota {
    margin-top: 16px;
    font-size: 13px;
    text-align: center;
}

.abc-premia-metodos-nota a {
    color: #7C3AED;
    text-decoration: none;
}

/* =========================================================
   14. MODAL DE COMPRA
   ========================================================= */

.abc-premia-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100000;
    transition: opacity 0.3s ease;
}

.abc-premia-modal-oculto {
    display: none !important;
}

.abc-premia-body-bloqueado {
    overflow: hidden !important;
}

.abc-premia-modal-contenido {
    background: #ffffff;
    border-radius: 32px;
    max-width: 500px;
    width: 90%;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: modalEntrada 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalEntrada {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.abc-premia-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #F3F4F6;
}

.abc-premia-modal-header h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    color: #1F2937;
}

.abc-premia-modal-cerrar {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #9CA3AF;
    transition: color 0.2s ease;
    line-height: 1;
}

.abc-premia-modal-cerrar:hover {
    color: #1F2937;
}

.abc-premia-modal-body {
    padding: 24px;
}

.abc-premia-modal-metodos {
    margin-top: 20px;
}

.abc-premia-modal-metodos label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #4B5563;
}

.abc-premia-modal-metodos select {
    width: 100%;
    padding: 8px;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    font-size: 14px;
    background: #ffffff;
    color: #1F2937;
    outline: none;
    transition: border-color 0.2s ease;
}

.abc-premia-modal-metodos select:focus {
    border-color: #7C3AED;
}

.abc-premia-modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding: 20px 24px;
    border-top: 1px solid #F3F4F6;
}

.abc-premia-modal-confirmar,
.abc-premia-modal-cancelar {
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
}

.abc-premia-modal-confirmar {
    background: #7C3AED;
    color: #ffffff;
}

.abc-premia-modal-confirmar:hover {
    background: #6D28D9;
}

.abc-premia-modal-cancelar {
    background: #F3F4F6;
    color: #4B5563;
}

.abc-premia-modal-cancelar:hover {
    background: #E5E7EB;
}

/* =========================================================
   15. LANDING PAGE PÚBLICA
   ========================================================= */

.abc-premia-landing {
    min-height: 100vh;
    background: linear-gradient(135deg, #F8FAFC 0%, #FFFFFF 100%);
}

.abc-premia-landing .abc-premia-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
}

/* Hero Section */
.abc-premia-hero {
    text-align: center;
    padding: 60px 20px 80px;
    background: linear-gradient(135deg, rgba(0, 95, 115, 0.05) 0%, rgba(0, 188, 212, 0.05) 100%);
    border-radius: 48px;
    margin-bottom: 60px;
}

.abc-premia-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #005F73;
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 60px;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
}

.abc-premia-hero-badge .dashicons {
    font-size: 18px;
    width: 18px;
    height: 18px;
}

.abc-premia-hero-titulo {
    font-size: 48px;
    font-weight: 800;
    margin: 0 0 16px;
    color: #1E293B;
}

.abc-premia-hero-titulo span {
    background: linear-gradient(135deg, #005F73 0%, #00bcd4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.abc-premia-hero-descripcion {
    font-size: 18px;
    color: #475569;
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

.abc-premia-btn-principal {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #005F73 0%, #00bcd4 100%);
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 60px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 95, 115, 0.3);
}

.abc-premia-btn-principal:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 95, 115, 0.4);
    background: linear-gradient(135deg, #004d5e 0%, #0096aa 100%);
    color: #ffffff;
}

.abc-premia-hero-nota {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #64748B;
    background: #F1F5F9;
    padding: 8px 20px;
    border-radius: 60px;
}

/* Beneficios grid */
.abc-premia-beneficios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.abc-premia-beneficio-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #E2E8F0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.abc-premia-beneficio-card:hover {
    transform: translateY(-5px);
    border-color: #00bcd4;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.abc-premia-beneficio-card-icono {
    width: 70px;
    height: 70px;
    background: rgba(0, 188, 212, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.abc-premia-beneficio-card-icono .dashicons {
    font-size: 32px;
    width: 32px;
    height: 32px;
    color: #00bcd4;
}

.abc-premia-beneficio-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #005F73;
    margin: 0 0 12px;
}

.abc-premia-beneficio-card p {
    font-size: 16px;
    color: #475569;
    line-height: 1.4;
    margin: 0;
}

/* Tabla de comisiones landing */
.abc-premia-comisiones-section {
    background: #F8FAFC;
    border-radius: 32px;
    padding: 48px;
    margin-bottom: 60px;
    text-align: center;
}

.abc-premia-section-titulo {
    font-size: 32px;
    font-weight: 800;
    color: #005F73;
    margin: 0 0 16px;
}

.abc-premia-section-subtitulo {
    font-size: 18px;
    color: #64748B;
    margin-bottom: 40px;
}

.abc-premia-tabla-comisiones {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    margin-bottom: 32px;
}

.abc-premia-tabla-header,
.abc-premia-tabla-fila {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    padding: 16px 20px;
    text-align: center;
}

.abc-premia-tabla-header {
    background: #005F73;
    color: #ffffff;
    font-weight: 700;
    font-size: 16px;
}

.abc-premia-tabla-header small {
    font-size: 14px;
    font-weight: normal;
    opacity: 0.8;
}

.abc-premia-tabla-fila {
    border-bottom: 1px solid #E2E8F0;
    font-size: 16px;
}

.abc-premia-tabla-fila.destacada {
    background: rgba(0, 188, 212, 0.05);
    border: 1px solid #00bcd4;
    border-radius: 12px;
    margin: 10px;
    font-weight: 700;
}

.abc-premia-tabla-membresia {
    font-weight: 600;
    color: #005F73;
}

.abc-premia-oferta-especial {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, #005F73, #00bcd4);
    color: #ffffff;
    padding: 20px 20px;
    border-radius: 20px;
    font-size: 18px;
    margin-top: 20px;
}

/* Precios landing */
.abc-premia-precio-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.abc-premia-precio-card {
    background: #ffffff;
    border-radius: 32px;
    padding: 40px;
    text-align: center;
    border: 1px solid #E2E8F0;
    transition: all 0.3s ease;
    position: relative;
}

.abc-premia-precio-card.destacado {
    border: 2px solid #00bcd4;
    box-shadow: 0 20px 25px -5px rgba(0, 188, 212, 0.2);
    transform: scale(1.02);
}

.abc-premia-precio-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #F59E0B;
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 60px;
    font-size: 16px;
    font-weight: 700;
}

.abc-premia-precio-etiqueta {
    font-size: 24px;
    color: #64748B;
    margin-bottom: 16px;
}

.abc-premia-precio-valor .abc-premia-precio-numero {
    font-size: 48px;
    font-weight: 800;
    color: #F59E0B;
}

.abc-premia-precio-valor .abc-premia-precio-moneda {
    font-size: 28px;
    color: #F59E0B;
}

.abc-premia-precio-vigencia {
    font-size: 16px;
    color: #64748B;
    margin-bottom: 24px;
}

.abc-premia-precio-beneficios {
    text-align: left;
    margin: 24px 0;
    padding: 20px 0;
    border-top: 1px solid #E2E8F0;
    border-bottom: 1px solid #E2E8F0;
}

.abc-premia-precio-beneficios p:before {
    content: "✓";
    color: #00bcd4;
    font-weight: bold;
}

.abc-premia-precio-ahorro {
    background: rgba(0, 188, 212, 0.1);
    padding: 12px;
    border-radius: 60px;
    font-size: 14px;
    font-weight: 700;
    color: #005F73;
    margin-top: 20px;
}

/* Call to action final */
.abc-premia-cta-final {
    text-align: center;
    background: linear-gradient(135deg, #005F73 0%, #00bcd4 100%);
    border-radius: 48px;
    padding: 60px 40px;
    color: #ffffff;
    margin-bottom: 40px;
}

.abc-premia-cta-titulo {
    font-size: 36px;
    color: #ffffff;
    font-weight: 800;
    margin: 0 0 16px;
}

.abc-premia-cta-descripcion {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.abc-premia-btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    color: #005F73;
    padding: 16px 40px;
    border-radius: 60px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.abc-premia-btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    background: #F8FAFC;
}

.abc-premia-cta-nota {
    font-size: 16px;
    margin-top: 24px;
    opacity: 0.8;
}

/* Footer */
.abc-premia-footer {
    text-align: center;
    padding: 40px 20px 20px;
    border-top: 1px solid #E2E8F0;
    color: #64748B;
    font-size: 14px;
}

.abc-premia-footer a {
    color: #005F73;
    text-decoration: none;
    transition: color 0.2s;
}

.abc-premia-footer a:hover {
    color: #00bcd4;
    text-decoration: underline;
}

/* =========================================================
   16. RESPONSIVE
   ========================================================= */

@media (max-width: 992px) {
    .abc-premia-beneficios-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .abc-premia-precio-section {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .abc-premia-hero-titulo {
        font-size: 36px;
    }
    
    .abc-premia-cta-titulo {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .abc-premia-container {
        padding: 20px 16px;
    }
    
    .abc-premia-titulo {
        font-size: 28px;
    }
    
    .abc-premia-beneficio {
        flex-direction: column;
        text-align: center;
    }
    
    .abc-premia-beneficios-premia {
        grid-template-columns: 1fr;
    }
    
    .abc-premia-comisiones-info {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .abc-premia-oferta {
        padding: 24px;
    }
    
    .abc-premia-oferta-titulo {
        font-size: 22px;
        color: #CCC;
    }
    
    .abc-premia-acciones {
        flex-direction: column;
        align-items: center;
    }
    
    .abc-premia-btn {
        width: 100%;
        justify-content: center;
    }
    
    .abc-premia-precio-valor {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }
    
    .abc-premia-pago-spei {
        max-width: 100%;
        padding: 0 10px;
    }
    
    .abc-premia-pago-spei .abc-premia-pago-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    
    .abc-premia-pago-spei .abc-premia-pago-valor {
        text-align: left;
        width: 100%;
    }
    
    .abc-premia-pago-spei .abc-premia-pago-datos {
        padding: 15px;
    }
    
    .abc-premia-vigencia-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .abc-premia-vigencia-texto p {
        text-align: center;
    }
    
    .abc-premia-vigencia-icono .dashicons {
        font-size: 36px;
        width: 36px;
        height: 36px;
        padding: 10px;
    }
    
    .abc-premia-hero {
        padding: 40px 20px 60px;
    }
    
    .abc-premia-hero-titulo {
        font-size: 28px;
    }
    
    .abc-premia-hero-descripcion {
        font-size: 16px;
    }
    
    .abc-premia-beneficios-grid {
        grid-template-columns: 1fr;
    }
    
    .abc-premia-comisiones-section {
        padding: 30px 20px;
    }
    
    .abc-premia-section-titulo {
        font-size: 24px;
    }
    
    .abc-premia-tabla-header,
    .abc-premia-tabla-fila {
        grid-template-columns: 1fr;
        gap: 8px;
        text-align: center;
    }
    
    .abc-premia-tabla-header {
        display: none;
    }
    
    .abc-premia-tabla-fila {
        margin-bottom: 16px;
        border: 1px solid #E2E8F0;
        border-radius: 16px;
    }
    
    .abc-premia-tabla-fila div {
        padding: 8px;
    }
    
    .abc-premia-tabla-membresia {
        background: #005F73;
        color: #ffffff;
        border-radius: 12px 12px 0 0;
        margin: -1px -1px 0 -1px;
    }
    
    .abc-premia-oferta-especial {
        flex-direction: column;
        text-align: center;
    }
    
    .abc-premia-precio-card {
        padding: 30px 20px;
    }
    
    .abc-premia-precio-card.destacado {
        transform: scale(1);
    }
    
    .abc-premia-cta-final {
        padding: 40px 20px;
    }
    
    .abc-premia-cta-titulo {
        font-size: 24px;
    }
    
    .abc-premia-cta-descripcion {
        font-size: 16px;
    }
    
    .abc-premia-btn-cta,
    .abc-premia-btn-principal {
        padding: 12px 28px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .abc-premia-hero-titulo {
        font-size: 24px;
    }
    
    .abc-premia-precio-valor .abc-premia-precio-numero {
        font-size: 36px;
    }
}

/* =========================================================
   17. UTILIDADES
   ========================================================= */

.text-center {
    text-align: center;
}

.text-success {
    color: #10B981;
}

.text-warning {
    color: #F59E0B;
}

.text-premium {
    color: #7C3AED;
}

/* Oculta el modal por defecto */
.abc-premia-modal-oculto {
    display: none !important;
}

/* Evita el scroll en el cuerpo de la página cuando el modal está abierto */
.abc-premia-body-bloqueado {
    overflow: hidden;
}