/* ============================
   GLOBAL BASE - DARK & GOLD LUXURY
=============================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    background: #0b0b0e; /* Negro profundo de lujo */
    color: #e4e4e7; /* Blanco/Gris claro muy legible */
    line-height: 1.6;
}

/* UNIVERSAL GOLD GLOW / ACENTOS */
.text-gold {
    color: #d4af37 !important;
}

.bg-gold {
    background-color: #d4af37 !important;
    color: #0b0b0e !important;
}

.border-gold {
    border-color: #d4af37 !important;
}

.btn-flag {
    border: none;
    background: transparent;
    cursor: pointer;
}

/* ============================
   NAVBAR
=============================== */
.navbar {
    width: 100%;
    padding: 20px 7%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(14, 14, 18, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    position: sticky;
    top: 0;
    z-index: 10;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #d4af37;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

.buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn {
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.25s;
    cursor: pointer;
}

/* PRIMARY BUTTON GOLD */
.btn-primary {
    background: #d4af37;
    color: #0b0b0e;
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
    background: #e6c547;
    box-shadow: 0 0 18px rgba(212, 175, 55, 0.7);
}

/* OUTLINE GOLD */
.btn-outline, .btn-outline-gold {
    border: 2px solid #d4af37;
    color: #d4af37;
    background: transparent;
}

.btn-outline:hover, .btn-outline-gold:hover {
    background: rgba(212, 175, 55, 0.15);
    box-shadow: 0 0 14px rgba(212, 175, 55, 0.4);
    color: #d4af37;
}

.btn-flag img {
    filter: drop-shadow(0 0 6px rgba(212, 175, 55, 0.5));
}

/* ============================
   HERO SECTION
=============================== */
.hero {
    width: 100%;
    padding: 60px 7%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    color: #e4e4e7;
}

.hero-left {
    flex: 1;
}

.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-right img, .hero-img {
    width: 100%;
    max-width: 540px;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.25));
    border-radius: 14px;
}

.hero-content h1 {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    text-shadow: 0 0 12px rgba(212, 175, 55, 0.3);
}

.hero-content p {
    margin: 15px 0;
    font-size: 16px;
    color: #a1a1aa;
    max-width: 550px;
}

.hero-buttons {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.badge {
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.35);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #f3e5ab;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
    margin-right: 8px;
}

/* ============================
   TRUST BAR
=============================== */
.trustbar {
    width: 100%;
    margin-top: 40px;
    padding: 25px 0;
    background: #d4af37;
    color: #0b0b0e;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.trust-inner {
    width: 85%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    text-align: center;
}

.trust-item strong {
    font-size: 28px;
    display: block;
    color: #0b0b0e;
}

.trust-item span {
    font-weight: 500;
    opacity: 0.9;
}

/* ============================
   FEATURES
=============================== */
.features {
    width: 100%;
    padding: 70px 7%;
    text-align: center;
    background: #121216;
}

.features h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.feature-card {
    background: #18181c;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
    transition: 0.25s;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.feature-card img {
    width: 65px;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.3));
}

.feature-card h3 {
    color: #d4af37;
    margin-bottom: 10px;
}

.feature-card p {
    color: #a1a1aa;
}

/* ============================
   HOW IT WORKS
=============================== */
.how-it-works {
    width: 100%;
    padding: 60px 7%;
    background: #0b0b0e;
    text-align: center;
    color: white;
}

.how-grid {
    margin-top: 35px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.how-card {
    background: #141418;
    padding: 25px;
    border-radius: 14px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    transition: 0.25s;
}

.how-card:hover {
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 0 18px rgba(212, 175, 55, 0.2);
    transform: translateY(-5px);
}

.how-card h4 {
    margin-bottom: 10px;
    color: #d4af37;
}

.how-card p {
    color: #a1a1aa;
}

/* ============================
   TESTIMONIALS
=============================== */
.testimonials {
    padding: 70px 7%;
    background: #121216;
    text-align: center;
}

.testimonials h2 {
    color: #fff;
    margin-bottom: 30px;
}

.test-grid {
    margin-top: 30px;
    display: grid;
    gap: 25px;
}

blockquote {
    background: #18181c;
    padding: 25px;
    border-left: 5px solid #d4af37;
    border-radius: 8px;
    font-size: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    color: #a1a1aa;
    text-align: left;
}

/* ============================
   CTA SECTION
=============================== */
.cta {
    padding: 65px 7%;
    background: #16161a;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
    color: white;
}

.cta h2 {
    color: #d4af37;
    margin-bottom: 15px;
}

.cta p {
    color: #a1a1aa;
}

.cta-buttons {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cta .btn-outline {
    border-color: #d4af37;
    color: #d4af37;
}

.cta .btn-outline:hover {
    background: rgba(212, 175, 55, 0.2);
}

/* ============================
   FOOTER
=============================== */
footer {
    padding: 25px;
    text-align: center;
    background: #070709;
    color: #71717a;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

/* ============================
   TARJETAS Y PANELES VIP (TRADING)
=============================== */
.card {
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    background-color: #141418;
    color: #e4e4e7;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.15);
}

.card-vip-activa {
    border-left: 4px solid #d4af37 !important;
}

.card-vip-finalizada {
    border-left: 4px solid #71717a !important;
    opacity: 0.8;
}

.alert-gold-custom {
    background-color: #1c1c22;
    border-color: rgba(212, 175, 55, 0.3) !important;
    border-radius: 8px;
}

#panel-admin-senal, 
#panel-admin-senal-vip2 {
    background: #141418;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.form-control, .form-select, textarea {
    background-color: #1c1c22 !important;
    border: 1px solid #3f3f46 !important;
    color: #ffffff !important;
    border-radius: 8px;
    padding: 0.45rem 0.75rem;
    font-size: 0.9rem;
}

.form-control:focus, .form-select:focus, textarea:focus {
    border-color: #d4af37 !important;
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25) !important;
}

.form-check-input {
    background-color: #1c1c22;
    border-color: #3f3f46;
    cursor: pointer;
}

.form-check-input:checked {
    background-color: #d4af37;
    border-color: #d4af37;
}

/* ============================
   RESPONSIVE
=============================== */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-right img {
        width: 90%;
    }

    .features-grid,
    .how-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-inner {
        flex-direction: column;
        gap: 20px;
    }
}