:root {
    --primary: #6f42c1;     /* Violeta Uritorco */
    --secondary: #d97706;   /* Naranja/Dorado oscuro */
    --gold: #ffd700;        /* Dorado detalles */
    --bg-dark: #1a0b2e;     /* Violeta muy oscuro */
    --card-bg: rgba(45, 20, 80, 0.7);
    --text-light: #f3f4f6;
}

body {
    background: var(--bg-dark);
    font-family: 'Inter', sans-serif;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.hero-club {
    background: linear-gradient(rgba(26, 11, 46, 0.8), rgba(26, 11, 46, 0.9)), url('../images/OVNIS1_20251128_060804.webp') center/cover;
    height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    border-bottom: 2px solid var(--primary);
}

.club-logo {
    height: 180px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.5));
}

.hero-club h1 {
    font-size: 3rem;
    margin: 0;
    color: var(--primary); /* Violeta */
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.hero-club p {
    color: var(--gold); /* Dorado */
    font-size: 1.2rem;
}

.section {
    padding: 60px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: var(--card-bg);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 15px;
    padding: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
    backdrop-filter: blur(10px);
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary); /* Naranja al hover */
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.card h3 {
    color: var(--secondary); /* Naranja/Dorado */
    margin-top: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    background: var(--primary); /* Violeta */
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.btn:hover {
    background: white;
    color: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
}

.benefit-list {
    list-style: none;
    padding: 0;
}

.benefit-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
}

.benefit-list li i {
    color: var(--gold); /* Dorado iconos */
}

.recommended-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.qr-footer {
    text-align: center;
    padding: 40px;
    background: rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    .hero-club h1 { font-size: 2rem; }
    .grid { grid-template-columns: 1fr; }
}
