*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green: #22c55e;
  --green-dark: #16a34a;
  --bg: #0a0a0a;
  --bg2: #111111;
  --bg3: #181818;
  --text: #f0ede8;
  --muted: #8a8580;
  --border: rgba(255,255,255,0.07);
  --player-h: 72px;
  --nav-h: 64px;
  --radius: 6px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 40px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,10,10,0.88) 0%,
    rgba(10,10,10,0.55) 50%,
    rgba(34,197,94,0.12) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 24px;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  padding-bottom: calc(var(--player-h) + 32px);
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 5px 12px;
  border-radius: 2px;
  margin-bottom: 20px;
  animation: pulse-badge 2s infinite;
}

.hero-tag::before {
  content: '';
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  animation: blink 1.2s step-start infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

@keyframes pulse-badge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
  50% { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 10vw, 8rem);
  line-height: 0.92;
  letter-spacing: 0.01em;
  color: var(--text);
  margin-bottom: 20px;
}

.hero-title span {
  color: var(--green);
  display: block;
}

.hero-sub {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 300;
  letter-spacing: 0.04em;
  margin-bottom: 36px;
}

.social-row {
  display: flex;
  gap: 14px;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--border);
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
}

.social-btn:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-2px);
}

.social-btn img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.player-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 200;
  height: var(--player-h);
  background: rgba(18,18,18,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
}

.player-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.player-info {
  display: flex;
  align-items: center;
  gap: 14px;
}

.player-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--muted);
  flex-shrink: 0;
  transition: background 0.3s;
}

.player-dot.live {
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(34,197,94,0.5);
  animation: pulse-dot 1.8s infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
  50% { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}

.player-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  color: var(--text);
  line-height: 1.1;
}

.player-status {
  font-size: 0.74rem;
  color: var(--muted);
  margin-top: 2px;
}

.player-controls {
  display: flex;
  align-items: center;
  gap: 20px;
}

.play-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.2s, transform 0.15s;
  flex-shrink: 0;
}

.play-btn:hover {
  background: var(--green-dark);
  transform: scale(1.07);
}

.volume-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.vol-icon {
  color: var(--muted);
  flex-shrink: 0;
}

.volume-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100px;
  height: 3px;
  border-radius: 2px;
  background: var(--border);
  outline: none;
  cursor: pointer;
}

.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--green);
  cursor: pointer;
}

.volume-slider::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--green);
  border: none;
  cursor: pointer;
}

.servicios-section {
  padding: 100px 0 80px;
  background: var(--bg2);
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  letter-spacing: 0.03em;
  color: var(--text);
  margin-bottom: 52px;
}

.section-title span {
  color: var(--green);
}

.servicios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.servicio-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: border-color 0.25s, transform 0.25s;
}

.servicio-card:hover {
  border-color: var(--green);
  transform: translateY(-4px);
}

.card-icon {
  width: 52px;
  height: 52px;
  background: rgba(34,197,94,0.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.card-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.servicio-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  color: var(--text);
  margin-bottom: 10px;
}

.servicio-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

.contacto-section {
  padding: 100px 0 80px;
  background: var(--bg);
}

.contacto-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.contacto-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.contacto-list li {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contacto-list img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  opacity: 0.8;
  flex-shrink: 0;
}

.contacto-list span,
.contacto-list a {
  font-size: 0.95rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.contacto-list a:hover {
  color: var(--text);
}

.contacto-social {
  display: flex;
  gap: 12px;
}

.calendar-wrap {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.calendar-wrap iframe {
  width: 100%;
  height: 360px;
  border: none;
  display: block;
}

.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 28px 0 calc(28px + var(--player-h));
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-copy p {
  font-size: 0.8rem;
  color: var(--muted);
}

.footer-copy a {
  color: var(--green);
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s;
}

.footer-copy a:hover {
  opacity: 0.8;
}

.footer-logo {
  height: 32px;
  width: auto;
  opacity: 0.6;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    width: 100%;
    background: rgba(10,10,10,0.97);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .servicios-grid {
    grid-template-columns: 1fr;
  }

  .contacto-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .volume-wrap {
    display: none;
  }

  .player-inner {
    padding: 0 16px;
  }
}
