/* css/vip.css */

body {
    background-color: #050505;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.vip-section {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 60px 20px; /* Espacio para el header fijo */
    background: radial-gradient(circle at center, #111 0%, #000 100%);
}

.vip-card {
    max-width: 700px;
    width: 100%;
    text-align: center;
    border: 1px solid rgba(197, 160, 89, 0.3); /* Borde dorado tenue */
    padding: 60px 40px;
    background: rgba(20, 20, 20, 0.5);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 50px rgba(0,0,0,0.8);
    position: relative;
    overflow: hidden;
    z-index: 100;
    
    /* Animación de entrada inicial */
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Adorno dorado en las esquinas */
.vip-card::before, .vip-card::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    border: 2px solid var(--gold-accent);
    transition: all 0.5s ease;
}
.vip-card::before { top: 0; left: 0; border-right: none; border-bottom: none; }
.vip-card::after { bottom: 0; right: 0; border-left: none; border-top: none; }

.vip-card:hover::before, .vip-card:hover::after {
    width: 100%; height: 100%; opacity: 0.1;
}

/* Tipografía */
.vip-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: white;
    line-height: 1.1;
    margin-bottom: 20px;
}

.gold-text { color: var(--gold-accent); font-style: italic; }

.vip-subtitle {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 50px;
    font-weight: 300;
    letter-spacing: 1px;
}

/* Botones Gigantes */
.vip-actions {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 50px;
    position: relative;
    z-index: 101;

}

.btn-vip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 25px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 3px;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    position: relative;
    z-index: 102;
    cursor: pointer;
}

.btn-vip-gold {
    background: linear-gradient(45deg, #a67c00, #ffd700, #a67c00);
    background-size: 200% auto;
    color: black;
    border: none;
    box-shadow: 0 0 20px rgba(197, 160, 89, 0.4);
    animation: shine 3s infinite linear;
}

.btn-vip-outline {
    background: transparent;
    border: 2px solid var(--gold-accent);
    color: var(--gold-accent);
}

.btn-vip:hover {
    transform: scale(1.02);
    letter-spacing: 5px;
}

@keyframes shine {
    to { background-position: 200% center; }
}



/* Texto de condiciones */
.vip-conditions {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    color: #666;
    border-top: 1px solid #333;
    padding-top: 30px;
    line-height: 1.6;
}

.condition-highlight {
    color: var(--gold-accent);
    font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
    .vip-title { font-size: 2.2rem; }
    .vip-card { padding: 40px 20px; border: none; background: transparent; box-shadow: none; }
    .vip-card::before, .vip-card::after { display: none; }
    .btn-vip { font-size: 1rem; padding: 20px; }
}