/* ===== KAWAII RADIO - ANIME THEME ===== */

:root {
    --primary: #ff6b9d;
    --primary-dark: #e84393;
    --secondary: #a855f7;
    --accent: #06b6d4;
    --neon-pink: #ff2d95;
    --neon-purple: #b829dd;
    --neon-blue: #00d4ff;
    --dark-bg: #0f0a1e;
    --dark-card: #1a1130;
    --dark-surface: #231845;
    --text-primary: #ffffff;
    --text-secondary: #c4b5fd;
    --text-muted: #8b7fad;
    --gradient-1: linear-gradient(135deg, #ff6b9d 0%, #a855f7 50%, #06b6d4 100%);
    --gradient-2: linear-gradient(135deg, #1a1130 0%, #2d1b69 100%);
    --gradient-hero: linear-gradient(180deg, rgba(15, 10, 30, 0.3) 0%, rgba(15, 10, 30, 0.8) 100%);
    --shadow-glow: 0 0 20px rgba(255, 107, 157, 0.3);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.3);
    --radius: 16px;
    --radius-sm: 8px;
    --font-main: 'Quicksand', sans-serif;
    --font-display: 'Fredoka One', cursive;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--dark-bg);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== PARTICLES ===== */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    animation: float-particle linear infinite;
    opacity: 0.4;
}

@keyframes float-particle {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.4;
    }
    90% {
        opacity: 0.4;
    }
    100% {
        transform: translateY(-100px) rotate(720deg);
        opacity: 0;
    }
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
    background: rgba(15, 10, 30, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(168, 85, 247, 0.2);
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(15, 10, 30, 0.95);
    box-shadow: 0 4px 30px rgba(168, 85, 247, 0.15);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-primary);
}

.nav-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 107, 157, 0.5);
    animation: bounce-soft 2s ease-in-out infinite;
}

.logo-icon {
    font-size: 1.5rem;
    animation: bounce-soft 2s ease-in-out infinite;
}

@keyframes bounce-soft {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.4rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 8px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
    background: rgba(168, 85, 247, 0.2);
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.2);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 60px;
    background: var(--gradient-2);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(168, 85, 247, 0.1) 0%, transparent 50%),
                radial-gradient(ellipse at 20% 80%, rgba(255, 107, 157, 0.08) 0%, transparent 40%),
                radial-gradient(ellipse at 80% 20%, rgba(6, 182, 212, 0.08) 0%, transparent 40%);
    animation: aurora 15s ease-in-out infinite;
}

@keyframes aurora {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(3deg) scale(1.05); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 10, 30, 0.5) 0%, rgba(15, 10, 30, 0.85) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 107, 157, 0.15);
    border: 1px solid rgba(255, 107, 157, 0.4);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 24px;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 10px rgba(255, 107, 157, 0.2); }
    50% { box-shadow: 0 0 25px rgba(255, 107, 157, 0.4); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 5rem);
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    line-height: 1.1;
    text-shadow: 0 0 40px rgba(255, 107, 157, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
    font-weight: 500;
}

.hero-description {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 30px;
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--gradient-1);
    color: #fff;
    box-shadow: 0 4px 20px rgba(255, 107, 157, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 107, 157, 0.6);
}

.btn-secondary {
    background: rgba(168, 85, 247, 0.15);
    color: var(--text-secondary);
    border: 1px solid rgba(168, 85, 247, 0.4);
}

.btn-secondary:hover {
    background: rgba(168, 85, 247, 0.25);
    color: var(--text-primary);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ===== PLAYER WIDGET ===== */
.player-widget {
    background: rgba(26, 17, 48, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: var(--radius);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.player-info {
    display: flex;
    align-items: center;
    gap: 14px;
}

.player-album-art {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.vinyl-disc {
    width: 100%;
    height: 100%;
    background: conic-gradient(from 0deg, #1a1130, #2d1b69, #1a1130, #2d1b69, #1a1130);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary);
}

.vinyl-disc.spinning {
    animation: spin 3s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.vinyl-center {
    font-size: 1.2rem;
}

.player-details {
    display: flex;
    flex-direction: column;
}

.player-now {
    font-size: 0.7rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.player-track {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.player-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-1);
    border: none;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.4);
}

.player-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(255, 107, 157, 0.6);
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.volume-slider {
    width: 80px;
    height: 4px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(168, 85, 247, 0.3);
    border-radius: 2px;
    outline: none;
    cursor: pointer;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 8px rgba(255, 107, 157, 0.5);
}

.equalizer {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 30px;
}

.eq-bar {
    width: 4px;
    background: var(--gradient-1);
    border-radius: 2px;
    height: 10px;
    transition: height 0.1s ease;
}

.eq-bar.active {
    animation: eq-bounce 0.5s ease-in-out infinite alternate;
}

.eq-bar:nth-child(1).active { animation-delay: 0s; }
.eq-bar:nth-child(2).active { animation-delay: 0.1s; }
.eq-bar:nth-child(3).active { animation-delay: 0.2s; }
.eq-bar:nth-child(4).active { animation-delay: 0.15s; }
.eq-bar:nth-child(5).active { animation-delay: 0.05s; }

@keyframes eq-bounce {
    0% { height: 8px; }
    100% { height: 28px; }
}

/* ===== SECTIONS COMMON ===== */
section {
    position: relative;
    z-index: 1;
    padding: 100px 0;
}

.page-section:first-of-type {
    padding-top: 160px;
}

.advertising-hero {
    position: relative;
    min-height: 40vh;
    display: flex;
    align-items: center;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(168, 85, 247, 0.15);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto;
}

/* ===== FEATURES ===== */
.features {
    background: var(--dark-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.feature-card {
    background: var(--dark-card);
    border: 1px solid rgba(168, 85, 247, 0.15);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 157, 0.4);
    box-shadow: var(--shadow-glow);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: block;
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===== PROGRAMMING ===== */
.programming {
    background: var(--dark-card);
    position: relative;
}

.programming::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(15, 10, 30, 0.85);
    z-index: 0;
}

.programming > .container {
    position: relative;
    z-index: 1;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
}

.schedule-card {
    background: var(--dark-surface);
    border: 1px solid rgba(168, 85, 247, 0.15);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: all 0.3s ease;
}

.schedule-card:hover {
    border-color: rgba(255, 107, 157, 0.4);
    box-shadow: 0 4px 20px rgba(255, 107, 157, 0.15);
    transform: translateY(-3px);
}

.schedule-time {
    font-family: var(--font-display);
    font-size: 0.9rem;
    color: var(--primary);
    background: rgba(255, 107, 157, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
    width: fit-content;
}

.schedule-info h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.schedule-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.schedule-tag {
    font-size: 0.75rem;
    color: var(--accent);
    background: rgba(6, 182, 212, 0.1);
    padding: 4px 10px;
    border-radius: 12px;
    width: fit-content;
    font-weight: 600;
}

/* ===== LOCUTORES / DJs ===== */
.locutores {
    background: var(--dark-bg);
}

.dj-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.dj-card {
    background: var(--dark-card);
    border: 1px solid rgba(168, 85, 247, 0.15);
    border-radius: var(--radius);
    padding: 36px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.dj-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 157, 0.4);
    box-shadow: var(--shadow-glow);
}

.dj-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(255, 107, 157, 0.3);
}

.dj-avatar-placeholder {
    font-size: 2.5rem;
}

.dj-name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.dj-role {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 12px;
}

.dj-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.5;
}

.dj-social {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.dj-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(168, 85, 247, 0.15);
    border: 1px solid rgba(168, 85, 247, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.dj-social a:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(255, 107, 157, 0.5);
}

/* ===== ABOUT ===== */
.about {
    background: var(--dark-card);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content .section-badge {
    margin-bottom: 12px;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 16px;
    font-size: 0.95rem;
    line-height: 1.7;
}

.about-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.about-image {
    display: flex;
    justify-content: center;
}

.about-img {
    width: 100%;
    max-width: 400px;
    border-radius: var(--radius);
    border: 3px solid rgba(168, 85, 247, 0.3);
    box-shadow: 0 0 60px rgba(168, 85, 247, 0.2);
    animation: float 6s ease-in-out infinite;
    object-fit: cover;
}

.about-image-placeholder {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--gradient-2);
    border: 3px solid rgba(168, 85, 247, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 60px rgba(168, 85, 247, 0.2);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.about-image-placeholder span {
    font-size: 4rem;
    margin-bottom: 10px;
}

.about-image-placeholder p {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.about-image-placeholder .small {
    font-family: var(--font-main);
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ===== CONTACT ===== */
.contact {
    background: var(--dark-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-form {
    background: var(--dark-card);
    border: 1px solid rgba(168, 85, 247, 0.15);
    border-radius: var(--radius);
    padding: 36px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--dark-surface);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-main);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(255, 107, 157, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group select {
    cursor: pointer;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card {
    background: var(--dark-card);
    border: 1px solid rgba(168, 85, 247, 0.15);
    border-radius: var(--radius);
    padding: 24px;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: rgba(255, 107, 157, 0.3);
    transform: translateX(5px);
}

.contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 107, 157, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 12px;
    font-size: 1rem;
}

.contact-card h4 {
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.contact-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.social-card {
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(168, 85, 247, 0.15);
    border: 1px solid rgba(168, 85, 247, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(255, 107, 157, 0.5);
    transform: translateY(-3px);
}

/* ===== FOOTER ===== */
.footer {
    background: #080515;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(168, 85, 247, 0.15);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin-bottom: 12px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-brand h3 .logo-icon {
    -webkit-text-fill-color: initial;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 0 12px rgba(255, 107, 157, 0.4);
}

.footer-links h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(168, 85, 247, 0.1);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(15, 10, 30, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 8px;
        transition: right 0.3s ease;
        border-left: 1px solid rgba(168, 85, 247, 0.2);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-toggle {
        display: block;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .player-widget {
        flex-direction: column;
        text-align: center;
    }

    .player-info {
        flex-direction: column;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-content .section-title {
        text-align: center;
    }

    .about-stats {
        justify-content: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .schedule-grid {
        grid-template-columns: 1fr;
    }

    .dj-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .about-image-placeholder {
        width: 220px;
        height: 220px;
    }

    .about-stats {
        flex-direction: column;
        gap: 20px;
    }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: rgba(168, 85, 247, 0.4);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(168, 85, 247, 0.6);
}

/* ===== SELECTION ===== */
::selection {
    background: rgba(255, 107, 157, 0.3);
    color: #fff;
}

/* ===== PUBLICIDAD PAGE ===== */
.ad-plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    align-items: stretch;
}

.ad-plan-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--dark-card);
    border: 1px solid rgba(168, 85, 247, 0.18);
    border-radius: var(--radius);
    padding: 30px 25px;
    transition: all 0.3s ease;
}

.ad-plan-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 107, 157, 0.45);
    box-shadow: 0 14px 36px rgba(168, 85, 247, 0.2);
}

.ad-plan-featured {
    border-color: rgba(255, 107, 157, 0.6);
    box-shadow: 0 0 28px rgba(255, 107, 157, 0.18);
}

.ad-plan-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff6b9d, #c44dff);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 999px;
    white-space: nowrap;
}

.ad-plan-header {
    text-align: center;
    margin-bottom: 18px;
}

.ad-plan-icon {
    display: block;
    font-size: 2.4rem;
    margin-bottom: 8px;
}

.ad-plan-name {
    font-family: 'Fredoka One', cursive;
    font-size: 1.35rem;
    color: #fff;
    margin-bottom: 6px;
}

.ad-plan-tagline {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.88rem;
    margin: 0;
}

.ad-plan-price {
    text-align: center;
    padding: 16px 0;
    border-top: 1px solid rgba(168, 85, 247, 0.15);
    border-bottom: 1px solid rgba(168, 85, 247, 0.15);
    margin-bottom: 14px;
}

.ad-price-amount {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ff6b9d, #c44dff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ad-price-period {
    display: block;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.85rem;
    margin-top: 4px;
}

.ad-plan-duration {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 18px;
}

.ad-plan-duration i {
    color: #ff6b9d;
    margin-right: 6px;
}

.ad-plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
    flex: 1;
}

.ad-plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    line-height: 1.5;
    padding: 7px 0;
}

.ad-plan-features li i {
    margin-top: 3px;
    color: #10b981;
    flex-shrink: 0;
}

.ad-plan-features li.ad-feature-off {
    color: rgba(255, 255, 255, 0.4);
}

.ad-plan-features li.ad-feature-off i {
    color: rgba(255, 255, 255, 0.3);
}

.btn-ad-plan {
    width: 100%;
    justify-content: center;
    text-align: center;
}

/* Servicios adicionales */
.ad-extras {
    margin-top: 55px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 20px;
    padding: 30px;
}

.ad-extras-title {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 20px;
    text-align: center;
}

.ad-extras-title i {
    color: #ff6b9d;
    margin-right: 8px;
}

.ad-extras-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 14px;
}

.ad-extra-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    background: rgba(168, 85, 247, 0.08);
    border: 1px solid rgba(168, 85, 247, 0.15);
    border-radius: 12px;
    padding: 14px 18px;
}

.ad-extra-name {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
}

.ad-extra-price {
    color: #ff6b9d;
    font-weight: 700;
    font-size: 0.92rem;
    white-space: nowrap;
}

/* Medios de pago */
.payment-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.payment-card {
    background: var(--dark-card);
    border: 1px solid rgba(168, 85, 247, 0.18);
    border-radius: var(--radius);
    padding: 30px 25px;
    transition: all 0.3s ease;
}

.payment-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 157, 0.45);
    box-shadow: 0 12px 32px rgba(168, 85, 247, 0.18);
}

.payment-card-icon {
    width: 62px;
    height: 62px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 16px;
}

.payment-card h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-family: 'Fredoka One', cursive;
}

.payment-card-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.payment-card-data {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}

.payment-card-data li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.88rem;
    padding: 6px 0;
    border-bottom: 1px dashed rgba(168, 85, 247, 0.15);
}

.payment-card-data li:last-child {
    border-bottom: none;
}

.payment-card-data li strong {
    color: #ff6b9d;
}

.payment-card-note {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
    background: rgba(168, 85, 247, 0.1);
    border-left: 3px solid #ff6b9d;
    border-radius: 8px;
    padding: 10px 12px;
}

.payment-card-note i {
    color: #ff6b9d;
    margin-right: 6px;
}

/* Condiciones */
.ad-terms {
    margin-top: 45px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 20px;
    padding: 30px;
}

.ad-terms-title {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 18px;
}

.ad-terms-title i {
    color: #ff6b9d;
    margin-right: 8px;
}

.ad-terms-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ad-terms-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.92rem;
    line-height: 1.6;
    padding: 8px 0;
}

.ad-terms-list li i {
    margin-top: 4px;
    color: #a855f7;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .ad-extras,
    .ad-terms {
        padding: 22px 18px;
    }

    .ad-extra-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
}

/* ===== PYMES PAGE ===== */
.pymes-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.pyme-card {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    background: var(--dark-card);
    border: 1px solid rgba(168, 85, 247, 0.15);
    border-radius: var(--radius);
    padding: 25px;
    transition: all 0.3s ease;
}

.pyme-card:hover {
    border-color: rgba(255, 107, 157, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.15);
}

.pyme-logo {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(168, 85, 247, 0.3);
    background: rgba(168, 85, 247, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pyme-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 13px;
}

.pyme-info {
    flex: 1;
}

.pyme-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    font-family: 'Fredoka One', cursive;
}

.pyme-desc {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.pyme-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pyme-details p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pyme-details p i {
    color: var(--neon-pink);
    width: 20px;
    text-align: center;
    font-size: 1rem;
}

.pyme-details p i.fa-whatsapp {
    color: #25d366;
}

.pyme-details p i.fa-map-marker-alt {
    color: #ff6b9d;
}

.pyme-details p i.fa-briefcase {
    color: #a855f7;
}

@media (max-width: 768px) {
    .pyme-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .pyme-logo {
        width: 100px;
        height: 100px;
    }

    .pyme-details {
        align-items: center;
    }

    .pyme-details p {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* ===== TICKETS PAGE ===== */
.events-tickets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.event-ticket-card {
    background: var(--dark-card);
    border: 1px solid rgba(168, 85, 247, 0.15);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s ease;
}

.event-ticket-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 157, 0.4);
    box-shadow: 0 8px 40px rgba(255, 107, 157, 0.2);
}

.event-ticket-banner {
    position: relative;
    padding: 30px 24px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.event-ticket-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 12px 16px;
    border-radius: 12px;
}

.event-day {
    font-family: var(--font-display);
    font-size: 2rem;
    color: #fff;
    line-height: 1;
}

.event-month {
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-ticket-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #fff;
}

.event-ticket-content {
    padding: 24px;
}

.event-ticket-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.event-ticket-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.event-ticket-details {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.event-ticket-details span {
    font-size: 0.8rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.event-ticket-details span i {
    color: var(--primary);
    font-size: 0.75rem;
}

.event-ticket-pricing {
    background: var(--dark-surface);
    border-radius: var(--radius-sm);
    padding: 16px;
    margin-bottom: 20px;
}

.ticket-type {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(168, 85, 247, 0.1);
}

.ticket-type:last-child {
    border-bottom: none;
}

.ticket-name {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.ticket-price {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--primary);
}

.btn-ticket {
    width: 100%;
    justify-content: center;
}

/* ===== SPONSORS ===== */
.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.sponsor-card {
    background: var(--dark-card);
    border: 1px solid rgba(168, 85, 247, 0.15);
    border-radius: var(--radius);
    padding: 28px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.sponsor-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 107, 157, 0.3);
    box-shadow: 0 4px 20px rgba(255, 107, 157, 0.15);
}

.sponsor-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.sponsor-card h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.sponsor-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ===== TICKET MODAL ===== */
.ticket-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.ticket-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.ticket-modal {
    background: var(--dark-card);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: var(--radius);
    padding: 36px;
    width: 100%;
    max-width: 520px;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.ticket-modal-overlay.active .ticket-modal {
    transform: scale(1);
}

.ticket-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 107, 157, 0.15);
    border: 1px solid rgba(255, 107, 157, 0.3);
    color: var(--primary);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ticket-modal-close:hover {
    background: var(--primary);
    color: #fff;
}

.ticket-modal-header {
    margin-bottom: 24px;
}

.ticket-modal-header h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.ticket-modal-header p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.ticket-form-section {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(168, 85, 247, 0.1);
}

.ticket-form-section:last-of-type {
    border-bottom: none;
}

.ticket-form-section h4 {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ticket-form-section h4 i {
    color: var(--primary);
}

.ticket-form-group {
    margin-bottom: 12px;
}

.ticket-form-group input,
.ticket-form-group select {
    width: 100%;
    padding: 12px 16px;
    background: var(--dark-surface);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-main);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    outline: none;
}

.ticket-form-group input:focus,
.ticket-form-group select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(255, 107, 157, 0.2);
}

.ticket-form-group label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.ticket-form-group select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23a855f7' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.ticket-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    margin-bottom: 14px;
}

.ticket-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
    cursor: pointer;
}

.ticket-checkbox span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.ticket-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 107, 157, 0.1);
    border: 1px solid rgba(255, 107, 157, 0.3);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    margin-bottom: 24px;
}

.ticket-total span:first-child {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.ticket-total-price {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--primary);
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--dark-surface);
    border: 1px solid rgba(168, 85, 247, 0.15);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-option:hover {
    border-color: rgba(255, 107, 157, 0.4);
    background: rgba(255, 107, 157, 0.05);
}

.payment-option input[type="radio"] {
    accent-color: var(--primary);
    width: 16px;
    height: 16px;
}

.payment-option span {
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.payment-option span i {
    color: var(--primary);
    font-size: 1rem;
}

.btn-ticket-submit {
    width: 100%;
    justify-content: center;
    padding: 16px;
    font-size: 1.05rem;
}

/* Ticket modal scrollbar */
.ticket-modal::-webkit-scrollbar {
    width: 6px;
}

.ticket-modal::-webkit-scrollbar-track {
    background: transparent;
}

.ticket-modal::-webkit-scrollbar-thumb {
    background: rgba(168, 85, 247, 0.3);
    border-radius: 3px;
}

/* ===== TICKETS RESPONSIVE ===== */
@media (max-width: 768px) {
    .events-tickets-grid {
        grid-template-columns: 1fr;
    }

    .sponsors-grid {
        grid-template-columns: 1fr 1fr;
    }

    .ticket-modal {
        padding: 24px;
        max-height: 90vh;
    }
}

@media (max-width: 480px) {
    .sponsors-grid {
        grid-template-columns: 1fr;
    }

    .event-ticket-details {
        flex-direction: column;
        gap: 8px;
    }
}