:root {
  --bg: #0b0b0d;
  --bg-soft: #141418;
  --text: #f3f3f3;
  --muted: #b7b7c2;
  --accent: #d4a24c;
  --accent-hover: #e2b468;
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

a {
  text-decoration: none;
  color: inherit;
}

.hero {
  position: relative;
  min-height: 100vh;
  background-image: url("../img/PORTADA.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.hero h1 {
  color: #fff;
  font-size: clamp(3rem, 8vw, 5rem);
  margin-bottom: 40px;
}

.hero {
  background-size: 110%;
}
.tagline {
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: 32px;
}

.listen-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.btn {
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: bold;
  transition: 0.25s ease;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn i {
  font-size: 1.1em;
}

.btn-primary {
  background: var(--accent);
  color: #111;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  border-color: rgba(255,255,255,0.4);
  color: var(--text);
}

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

.social-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-social {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent);
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: 0.25s ease;
  border: 1px solid transparent;
}

.btn-social:hover {
  background: var(--accent-hover);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px rgba(212, 162, 76, 0.3);
}

.section {
  padding: 80px 20px;
}

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

.section h2 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.section p {
  color: var(--muted);
  margin-bottom: 28px;
}

.contact-section {
  text-align: center;
}

.contact-mail {
  display: inline-block;
  margin-top: 8px;
  font-size: 1rem;
  font-weight: bold;
  color: var(--accent);
}

.contact-mail:hover {
  text-decoration: underline;
}

.footer {
  border-top: 1px solid var(--border);
  padding: 24px 20px;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 800px) {
  .section {
    padding: 64px 20px;
  }
}