/* Variables de Color */
:root {
    --primary: #FF4081; /* Color "Primavera" */
    --accent: #25d366;  /* Whatsapp */
    --dark: #121212;
    --light: #fdfdfd;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
    scroll-behavior: smooth;
}

/* Navbar */
.navbar {
    display: flex; justify-content: space-between; align-items: center;
    padding: 15px 5%; background: var(--dark); color: white;
    position: sticky; top: 0; z-index: 1000;
}
.hummingbird-icon { color: var(--primary); font-size: 1.5rem; }
.logo span { font-weight: bold; font-size: 1.3rem; margin-left: 10px; }
.nav-links { display: flex; list-style: none; gap: 20px; }
.nav-links a { color: white; text-decoration: none; font-weight: 500; transition: 0.3s; }
.nav-links a:hover { color: var(--primary); }

/* Carousel */
.hero-carousel { height: 60vh; position: relative; overflow: hidden; }
.slide { 
    position: absolute; width: 100%; height: 100%; 
    background-size: cover; background-position: center;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 1s ease-in-out;
}
.slide.active { opacity: 1; }
.caption { text-align: center; color: white; }
.caption h1 { font-size: 3.5rem; margin-bottom: 10px; }

/* Secciones Generales */
.container { padding: 60px 10%; text-align: center; }
.section-title { margin-bottom: 40px; font-size: 2rem; color: var(--dark); position: relative; }
.section-title::after { content: ''; width: 60px; height: 3px; background: var(--primary); position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); }

/* Grid de Info */
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.info-card { background: white; padding: 40px; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: 0.3s; }
.info-card:hover { transform: translateY(-5px); }
.info-card i { font-size: 3rem; color: var(--primary); margin-bottom: 20px; }

/* Botones */
.btn { display: inline-block; padding: 12px 25px; border-radius: 50px; text-decoration: none; color: white; font-weight: bold; margin-top: 15px; }
.btn-whatsapp { background: var(--accent); }
.btn-gps { background: #4285F4; }

/* Tabla */
.table-wrapper { overflow-x: auto; margin-top: 20px; border-radius: 15px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
table { width: 100%; border-collapse: collapse; min-width: 600px; background: white; }
th, td { padding: 20px; text-align: left; border-bottom: 1px solid #eee; }
th { background: var(--dark); color: white; }

/* Reproductor Fijo */
.player-bar { 
    position: fixed; bottom: 0; width: 100%; background: #000; color: white; 
    padding: 10px 5%; z-index: 2000; 
}
.player-container { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; }
.player-info { display: flex; align-items: center; gap: 15px; }
.play-circle { 
    width: 50px; height: 50px; border-radius: 50%; border: none; 
    background: var(--primary); color: white; cursor: pointer; font-size: 1.2rem;
}
.live-badge { background: #ff0000; padding: 2px 8px; border-radius: 4px; font-size: 0.7rem; font-weight: bold; }
.volume-control { display: flex; align-items: center; gap: 10px; }
.social-footer a { color: white; margin-left: 15px; font-size: 1.3rem; transition: 0.3s; }
.social-footer a:hover { color: var(--primary); }

/* Responsive */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .caption h1 { font-size: 2.2rem; }
    .hide-mobile { display: none; }
    .player-container { justify-content: space-around; }
}