/* ==========================================================================
   1. VARIABLES DE TEMA PREMIUM
   ========================================================================== */
:root {
    --gold-main: #e8a34f;
    --gold-hover: #ffbd5e;
    --gold-alpha-08: rgba(232, 163, 79, 0.08);
    --gold-alpha-15: rgba(232, 163, 79, 0.15);
    --gold-alpha-20: rgba(232, 163, 79, 0.2);
    --gold-alpha-25: rgba(232, 163, 79, 0.25);
    --gold-alpha-30: rgba(232, 163, 79, 0.3);
    --gold-alpha-40: rgba(232, 163, 79, 0.4);
    --gold-alpha-50: rgba(232, 163, 79, 0.5);
    --gold-alpha-60: rgba(232, 163, 79, 0.6);
    --gold-alpha-70: rgba(232, 163, 79, 0.7);
    --gold-alpha-80: rgba(232, 163, 79, 0.8);
    --gold-alpha-90: rgba(232, 163, 79, 0.9);
    
    /* Textura premium recurrente */
    --texture-premium: url('../img/fon-news.jpg');
}

/* ==========================================================================
   2. CONFIGURACIÓN GLOBAL Y SCROLLBARS
   ========================================================================== */
html, body {
    scrollbar-width: none !important; /* Firefox */
    -ms-overflow-style: none !important; /* IE/Edge */
    scrollbar-gutter: stable; /* Previene saltos al ocultar scrollbar */
}

::-webkit-scrollbar {
    display: none !important; /* Chrome, Safari, Opera global */
}

/* Selección de texto forzada dorada */
*::selection, *::-moz-selection {
    background: var(--gold-alpha-60) !important;
    color: #fff !important;
}

/* Background fijo solo para páginas internas */
body.internal-page {
    background: url('../img/modulebg.png') no-repeat center center fixed !important;
    background-size: cover !important;
}

#contenidoWeb {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ==========================================================================
   3. ARQUITECTURA DE AUTENTICACIÓN (Login / Register)
   ========================================================================== */
.auth-page-wrapper {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 1 !important;
    min-height: calc(100vh - 100px) !important;
    padding: 20px !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

/* Alertas centradas y adaptadas dentro del envoltorio */
.auth-page-wrapper .alert {
    display: block !important;
    position: relative !important;
    z-index: 10 !important;
    float: none !important;
    width: 100% !important;
    max-width: 500px !important;
    margin: 20px auto 15px !important;
    border-radius: 4px !important;
    text-align: center !important;
}

.auth-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 5;
    width: 100%;
    min-height: auto !important;
    padding: 20px 0 !important;
    background: transparent !important;
}

.auth-box {
    position: relative;
    width: 100%;
    max-width: 500px !important;
    padding: 3rem;
    background-image: var(--texture-premium) !important;
    background-size: 500% !important; /* Zoom extremo para ocultar costuras */
    background-position: center !important;
    background-repeat: repeat !important;
    background-color: transparent !important;
    border: 1px solid var(--gold-alpha-30);
    border-radius: 4px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.9) !important;
    color: #ffffff;
}

.auth-box::after {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-main), transparent);
}

.auth-box > * {
    position: relative;
    z-index: 1;
}

.auth-title {
    font-family: 'Gambarino', serif !important;
    font-size: 24px !important;
    letter-spacing: 3px !important;
    text-align: center !important;
    margin-bottom: 20px !important;
}

.auth-input {
    background-color: rgba(0, 0, 0, 0.6) !important;
    border: 1px solid var(--gold-alpha-30) !important;
    color: white !important;
    border-radius: 3px !important;
    padding: 12px 15px !important;
    transition: all 0.3s ease;
}

.auth-btn-blue {
    display: flex !important; 
    align-items: center;
    justify-content: center;
    width: 100% !important;
    height: 50px !important;
    margin-top: 25px !important;
    background-image: var(--texture-premium) !important;
    background-size: 400% !important;
    background-position: center !important;
    background-repeat: repeat !important;
    border: 1px solid var(--gold-main) !important;
    color: #fff !important;
    font-weight: 700 !important;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 4px !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.6) !important;
    transition: all 0.3s ease;
}

.auth-btn-blue:hover {
    background-size: 200% !important;
    color: #fff !important;
    border-color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232, 163, 79, 0.4) !important;
}

.auth-back-link {
    display: inline-flex !important;
    align-items: center !important;
    margin-bottom: 15px !important;
    color: var(--gold-main) !important;
    font-size: 13px !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}

.auth-back-link:hover {
    color: #fff !important;
    transform: translateX(-5px) !important;
}

.auth-back-arrow {
    width: 24px !important;
    height: auto !important;
    margin-right: 10px !important;
    mix-blend-mode: screen !important;
    filter: sepia(100%) saturate(500%) hue-rotate(350deg) brightness(1.2) !important;
}

.link-blue {
    color: var(--gold-main) !important;
    font-weight: 600;
    transition: all 0.3s ease;
}

.link-blue:hover {
    color: var(--gold-hover) !important;
    text-shadow: 0 0 8px rgba(232, 163, 79, 0.4);
}

#particles-js {
    display: none !important;
}

/* ==========================================================================
   4. MODALES PREMIUM (Ibiza Style)
   ========================================================================== */
.custom-mu-modal {
    background-image: var(--texture-premium) !important;
    background-size: 500% !important;
    background-position: center !important;
    background-repeat: repeat !important;
    border: 1px solid var(--gold-alpha-40) !important;
    border-radius: 8px !important;
    box-shadow: 0 0 50px rgba(0,0,0,0.9) !important;
}

.custom-mu-modal .modal-header .modal-title {
    font-family: 'Merriweather', serif;
    color: var(--gold-main);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.custom-mu-modal .modal-body {
    max-height: 80vh;
    padding: 2rem !important;
    overflow-y: auto;
}

/* Scroll activo exclusivo para modales */
.custom-mu-modal .modal-body::-webkit-scrollbar {
    width: 6px;
    display: block !important;
}
.custom-mu-modal .modal-body::-webkit-scrollbar-thumb {
    background: var(--gold-main);
    border-radius: 0;
}
.custom-mu-modal .modal-body::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.3);
}

/* ==========================================================================
   5. COMPONENTES USER PANEL (UserCP & Account Info)
   ========================================================================== */
.account-info-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    padding: 20px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.5), rgba(0, 0, 0, 0.7)) !important;
    border: 1px solid var(--gold-alpha-15) !important;
    border-radius: 6px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), inset 0 0 15px rgba(232, 163, 79, 0.05) !important;
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}

.account-info-block:hover {
    border-color: var(--gold-alpha-80) !important;
    box-shadow: 0 0 30px rgba(232, 163, 79, 0.4), inset 0 0 20px rgba(232, 163, 79, 0.1) !important;
    transform: translateY(-5px);
    filter: brightness(1.1);
}

.account-info-label {
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1px;
    color: var(--gold-main);
    font-weight: 700;
}

.account-info-value {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
}

.account-info-block table,
.account-info-block td {
    vertical-align: middle !important;
}

.account-info-block td {
    padding: 10px 5px !important;
}

.usercp-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 25px 15px !important;
    background-image: var(--texture-premium) !important;
    background-size: 400% !important;
    background-repeat: repeat !important;
    background-position: center !important;
    border: 1px solid var(--gold-alpha-20) !important;
    border-radius: 4px !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5) !important;
    backdrop-filter: blur(10px);
    text-decoration: none !important;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease !important;
}

.usercp-card:hover {
    transform: translateY(-10px) !important;
    border-color: var(--gold-alpha-90) !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(232, 163, 79, 0.3) !important;
    filter: brightness(1.15) !important;
}

.usercp-card-icon {
    width: 70px !important;
    height: auto !important;
    margin-bottom: 15px !important;
    filter: drop-shadow(0 0 10px rgba(0,0,0,0.5));
    transition: all 0.3s ease !important;
}

.usercp-card:hover .usercp-card-icon {
    transform: scale(1.1) !important;
    filter: drop-shadow(0 0 15px rgba(232, 163, 79, 0.4));
}

.usercp-card-title {
    font-family: 'Gambarino', serif !important;
    font-size: 13px !important;
    color: #ded9ff !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    font-weight: 400 !important;
    text-align: center !important;
    margin: 0 !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.usercp-card:hover .usercp-card-title {
    color: #fff !important;
}

/* Contenedores Legacy y Sidebar */
.usercp-premium-container {
    background: rgba(20, 10, 30, 0.7) !important;
    border: 1px solid var(--gold-alpha-40) !important;
    border-radius: 20px !important;
    box-shadow: 0 0 40px rgba(0,0,0,0.8), 0 0 20px rgba(232, 163, 79, 0.1) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    margin-top: 30px !important;
    overflow: hidden;
}

.usercp-sidebar {
    background: rgba(0, 0, 0, 0.3) !important;
    border-right: 1px solid var(--gold-alpha-20) !important;
    padding: 40px 20px !important;
}

.usercp-content {
    background: transparent !important;
    padding: 40px !important;
    min-height: 550px;
}

.usercp-sidebar .btn-panel {
    background: rgba(40, 40, 60, 0.1) !important;
    border: 1px solid var(--gold-alpha-15) !important;
    margin-bottom: 15px !important;
    padding: 18px 20px !important;
    border-radius: 12px !important;
    font-family: 'Gambarino', serif !important;
    font-size: 13px !important;
    letter-spacing: 1px !important;
    color: rgba(255,255,255,0.7) !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5) !important;
}

.usercp-sidebar .btn-panel i {
    font-size: 18px !important;
    color: var(--gold-alpha-60) !important;
}

.usercp-sidebar .btn-panel.active {
    background: linear-gradient(135deg, rgba(232, 163, 79, 0.2) 0%, rgba(0,0,0,0.4) 100%) !important;
    border: 1px solid var(--gold-main) !important;
    color: #fff !important;
    box-shadow: 0 0 20px rgba(232, 163, 79, 0.2) !important;
}

/* ==========================================================================
   6. TARJETAS DE PERSONAJES (Character Showcase)
   ========================================================================== */
.char-card-square {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 25px 15px;
    background-image: var(--texture-premium) !important;
    background-size: 450% !important;
    background-repeat: repeat !important;
    background-position: center !important;
    border: 1px solid var(--gold-alpha-40);
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8), inset 0 0 20px rgba(0,0,0,0.6) !important;
    text-align: center;
    transition: all 0.3s ease;
}

.char-card-square:hover {
    transform: translateY(-8px);
    border-color: var(--gold-alpha-90);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8), 0 0 25px rgba(232, 163, 79, 0.3) !important;
    filter: brightness(1.15);
}

.char-card-img {
    display: block;
    width: 75px;
    height: auto;
    margin: 0 auto 10px;
    padding: 3px;
    background: rgba(0,0,0,0.7);
    border: 1px solid var(--gold-alpha-60);
    filter: drop-shadow(0 0 10px rgba(232,163,79,0.3));
}

.char-card-name {
    font-family: 'Gambarino', serif;
    font-size: 18px;
    color: #fff;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.char-card-name a {
    color: #fff !important;
    text-decoration: none !important;
}

.char-card-meta {
    font-size: 11px;
    color: var(--gold-alpha-60);
    text-transform: uppercase;
}

.level-badge-square {
    display: inline-block;
    padding: 3px 10px !important;
    background: rgba(0, 0, 0, 0.8) !important;
    border: 1px solid var(--gold-alpha-50) !important;
    color: #fff !important;
    font-size: 10px !important;
    font-family: 'Gambarino', serif !important;
    border-radius: 0 !important;
    letter-spacing: 1px;
    box-shadow: inset 0 0 5px rgba(232, 163, 79, 0.2);
}

.stat-input-group label {
    margin-bottom: 3px;
    color: var(--gold-alpha-70);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.stat-input-group input {
    background-color: rgba(0, 0, 0, 0.6) !important;
    border-color: var(--gold-alpha-20) !important;
    color: #fff !important;
    border-radius: 2px !important;
}

/* ==========================================================================
   7. TABLAS, RANKINGS Y MENÚS
   ========================================================================== */
.rankings-table td {
    padding: 15px 10px;
    vertical-align: middle;
    font-size: 13px;
}

/* Unificación y optimización de links dorados en Rankings */
.rankings-table a,
.rankings-table td a,
.rankings-table .fw-bold a,
.table-dark.rankings-table a {
    color: var(--gold-main) !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}

.rankings-table a:hover,
.rankings-table td a:hover,
.rankings-table .fw-bold a:hover,
.table-dark.rankings-table a:hover {
    color: #fff !important;
    text-shadow: 0 0 10px rgba(232, 163, 79, 1) !important;
}

/* Corregir hover gris nativo de Bootstrap */
.table-hover > tbody > tr:hover > * {
    background-color: var(--gold-alpha-08) !important;
    color: #fff !important;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.5) !important;
}

.rankings-class-image {
    max-width: 38px !important;
    height: auto;
    padding: 2px;
    background: rgba(0,0,0,0.5);
    border: 1px solid var(--gold-alpha-30);
    border-radius: 4px;
}

.rankings-table .character-avatar img {
    max-width: 32px !important;
    height: auto;
    border: 1px solid var(--gold-alpha-30);
    border-radius: 4px;
}

/* Menú de Rankings Rediseñado */
.rankings_menu {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 10px !important;
    width: 100% !important;
    padding: 15px !important;
    margin-bottom: 25px !important;
    background: rgba(0, 0, 0, 0.4) !important;
    border: none !important;
    border-radius: 8px !important;
    overflow: visible !important;
}

.rankings_menu span {
    display: none !important;
}

.rankings_menu a {
    display: block;
    width: auto !important;
    min-width: 120px !important;
    padding: 8px 20px !important;
    background-image: var(--texture-premium) !important;
    background-size: 200% !important;
    background-position: center !important;
    border: 1px solid var(--gold-alpha-40) !important;
    border-radius: 4px !important;
    color: #fff !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    text-decoration: none !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5) !important;
    transition: all 0.3s ease !important;
}

.rankings_menu a:hover,
.rankings_menu a.active {
    background-size: 150% !important;
    border-color: var(--gold-main) !important;
    color: var(--gold-main) !important;
    box-shadow: 0 0 15px rgba(232, 163, 79, 0.3) !important;
    transform: translateY(-3px) !important;
}

/* ==========================================================================
   8. COMPONENTES DE CARTELERÍA PREMIUM (Sólidos y Con Desplazamiento)
   ========================================================================== */
.premium-cartel-square {
    position: relative;
    z-index: 10;
    width: 95% !important;
    max-width: 1000px !important;
    margin: 60px auto !important;
    padding: 40px !important;
    background-image: var(--texture-premium) !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
    background-color: rgba(0, 0, 0, 0.4) !important;
    border: 1px solid var(--gold-alpha-30) !important;
    border-radius: 4px !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.7) !important;
    color: #fff !important;
    backdrop-filter: blur(8px) brightness(0.8);
}

.premium-cartel-deep {
    padding: 30px !important;
    background: rgba(0, 0, 0, 0.7) !important;
    border: 1px solid var(--gold-alpha-25) !important;
    border-radius: 8px !important;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.6), inset 0 0 25px rgba(0, 0, 0, 0.5) !important;
    backdrop-filter: blur(10px) !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.premium-cartel-deep:hover {
    transform: translateY(-10px) !important;
    border-color: var(--gold-alpha-80) !important;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(232, 163, 79, 0.2) !important;
    filter: brightness(1.1) !important;
}

.cartel-scroll-v {
    max-height: 500px;
    padding-right: 15px;
    margin-right: -10px;
    overflow-y: auto;
    overflow-x: hidden;
}

/* Scroll interno sutil para carteles */
.cartel-scroll-v::-webkit-scrollbar {
    width: 6px;
    display: block !important;
}
.cartel-scroll-v::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
}
.cartel-scroll-v::-webkit-scrollbar-thumb {
    background: var(--gold-alpha-50);
    border-radius: 0;
}
.cartel-scroll-v::-webkit-scrollbar-thumb:hover {
    background: var(--gold-alpha-80);
}

/* Insignias de estados dentro de carteles */
.premium-cartel-square .label {
    font-size: 10px !important;
    padding: 4px 8px !important;
    text-transform: uppercase !important;
    border-radius: 2px !important;
}

.premium-cartel-square .label-success {
    background: rgba(40, 167, 69, 0.2) !important;
    border: 1px solid #28a745 !important;
    color: #28a745 !important;
}

.premium-cartel-square .label-danger {
    background: rgba(220, 53, 69, 0.2) !important;
    border: 1px solid #dc3545 !important;
    color: #dc3545 !important;
}

.premium-cartel-square .label-default {
    background: var(--gold-alpha-20) !important;
    border: 1px solid var(--gold-main) !important;
    color: var(--gold-main) !important;
}

.premium-info-badge {
    display: inline-block;
    padding: 4px 12px !important;
    background: rgba(0,0,0,0.5) !important;
    border: 1px solid var(--gold-alpha-30) !important;
    color: var(--gold-alpha-90) !important;
    font-size: 11px !important;
    letter-spacing: 1px !important;
    font-weight: 600 !important;
    border-radius: 0px !important;
}

/* Tarjetas de Donaciones (Completamente Cuadradas y Sólidas) */
.card-donations {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    position: relative;
    background-image: var(--texture-premium) !important;
    background-size: 400% !important;
    background-position: center !important;
    border: 1px solid var(--gold-alpha-40) !important;
    border-radius: 0px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8), inset 0 0 20px rgba(0,0,0,0.5) !important;
    overflow: hidden;
    transition: all 0.3s ease !important;
}

.card-donations:hover {
    transform: translateY(-5px) !important;
    border-color: var(--gold-alpha-90) !important;
    box-shadow: 0 20px 50px rgba(0,0,0,0.9), 0 0 35px rgba(232,163,79,0.4) !important;
    filter: brightness(1.15) !important;
}

.card-donations img {
    max-width: 140px !important;
    filter: drop-shadow(0 0 8px rgba(0,0,0,0.6));
}

/* ==========================================================================
   9. DETALLE DE NOTICIAS (News Detail Custom)
   ========================================================================== */
.news-detail-container {
    position: relative;
    z-index: 0;
    width: 95% !important;
    max-width: 800px !important;
    margin: -20px auto 40px !important;
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: url('../img/fon-news.jpg') no-repeat center !important;
    background-size: cover !important;
    border: 1px solid var(--gold-alpha-40) !important;
    border-radius: 12px !important;
    box-shadow: inset 0 0 60px rgba(0,0,0,0.9), 0 15px 50px rgba(0,0,0,0.8) !important;
    overflow: hidden;
}

.news-detail-container > * {
    position: relative;
    z-index: 2;
}

.news-back-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 32px !important;
    padding: 0 12px !important;
    background-image: var(--texture-premium) !important;
    background-size: cover !important;
    background-position: center !important;
    border: 1px solid var(--gold-alpha-80) !important;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.5), 0 0 15px rgba(232, 163, 79, 0.3) !important;
    color: #fff !important;
    border-radius: 4px !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    font-family: 'Roboto', sans-serif !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    letter-spacing: 0.5px;
    transition: all 0.3s ease !important;
}

.news-back-link:hover {
    color: var(--gold-main) !important;
    transform: translateY(-2px);
    box-shadow: inset 0 0 10px rgba(0,0,0,0.3), 0 0 20px rgba(232, 163, 79, 0.5) !important;
}

.news-detail-title {
    font-family: 'Gambarino', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 4px 10px rgba(0,0,0,0.8);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.news-detail-meta {
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    color: var(--gold-alpha-90);
    letter-spacing: 1px;
}

.news-detail-meta i {
    margin-right: 5px;
}

.news-detail-content {
    width: 100%;
    max-width: 100%;
    padding: 20px 30px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
}

.news-detail-content img {
    display: block !important;
    max-width: 100% !important;
    max-height: 50vh !important;
    width: auto !important;
    height: auto !important;
    margin: 15px auto !important;
    object-fit: contain !important;
    border: 1px solid var(--gold-alpha-30);
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.9);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.news-detail-content img:hover {
    transform: scale(1.02);
    border-color: var(--gold-alpha-80);
}

/* ==========================================================================
   10. BOTONES Y CONTROLES ADICIONALES (Premium Gold & Swiper)
   ========================================================================== */
.btn-premium-gold {
    padding: 5px 15px !important;
    background-image: var(--texture-premium) !important;
    background-size: 180% !important;
    background-position: center !important;
    border: 1px solid var(--gold-main) !important;
    color: #fff !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    border-radius: 4px !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5), inset 0 0 10px rgba(232,163,79,0.3) !important;
    transition: all 0.3s ease !important;
}

.btn-premium-gold:hover {
    color: #fff !important;
    border-color: #fff !important;
    transform: scale(1.05) !important;
    box-shadow: 0 6px 20px rgba(0,0,0,0.6), inset 0 0 15px rgba(232,163,79,0.5) !important;
}

/* Navegadores Swiper Integrados */
.swiper-button-next, .swiper-button-prev {
    color: var(--gold-main) !important;
    transition: all 0.3s ease !important;
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 24px !important;
    font-weight: bold !important;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    color: #fff !important;
    transform: scale(1.2) !important;
}

.swiper-pagination-bullet {
    background: var(--gold-alpha-30) !important;
    opacity: 1 !important;
}

.swiper-pagination-bullet-active {
    background: var(--gold-main) !important;
    box-shadow: 0 0 10px rgba(232, 163, 79, 0.5) !important;
}