.logo a {
    font-size: 1.5rem;
    font-weight: normal;
    color: #ffffff;
}

.logo a span {
    font-weight: bold;
    color: #bb86fc;
}.logo a {
    font-size: 1.5rem;
    font-weight: normal;
    color: #ffffff;
}

.logo a span {
    font-weight: bold;
    color: #bb86fc;
}.logo a {
    font-size: 1.5rem;
    font-weight: normal;
    color: #ffffff;
}

.logo a span {
    font-weight: bold;
    color: #bb86fc;
}/* Estilos Generales */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    background-color: #121212;
    color: #ffffff;
}

a {
    color: #bb86fc;
    text-decoration: none;
}

/* Encabezado y Navegación */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #1f1f1f;
    border-bottom: 1px solid #333;
}

.logo a {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff;
}

.search-bar input {
    width: 300px;
    padding: 0.5rem;
    border: 1px solid #333;
    border-radius: 20px;
    background-color: #2c2c2c;
    color: #ffffff;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    font-weight: 500;
}

.btn {
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
}

.btn-primary {
    background-color: #bb86fc;
    color: #121212;
}

.btn-secondary {
    background-color: transparent;
    border: 1px solid #bb86fc;
    color: #bb86fc;
}

/* Sección Hero */
.hero {
        background-image: url('https://images.unsplash.com/photo-1492684223066-81342ee5ff30?q=80&w=1920&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 2rem 3rem;
    border-radius: 10px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Eventos Destacados */
.featured-events {
    padding: 2rem;
    text-align: center;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.event-card {
    background-color: #1f1f1f;
    border-radius: 10px;
    overflow: hidden;
    text-align: left;
}

.event-card img {
    width: 100%;
    height: auto;
}

.event-card .event-info {
    padding: 1rem;
}

/* Contacto por WhatsApp */
.whatsapp-contact {
    text-align: center;
    padding: 3rem 1rem;
    background-color: #1f1f1f;
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: 1.2rem;
    display: inline-block;
    margin-top: 1rem;
}

/* Pie de página */
footer {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid #333;
}

.social-links {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}