/* Variables globales */
:root {
  --primary: #ff0030;
  --primary-dark: #cc0026;
  --primary-light: #ff3355;
  --dark: #111111;
  --dark-gray: #222222;
  --medium-gray: #444444;
  --light-gray: #888888;
  --lighter-gray: #f5f5f5;
  --white: #ffffff;
  --black: #000000;
  --gradient-dark: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(20, 20, 20, 0.8) 100%);
  --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  --gradient-overlay: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.2);
  --shadow-primary: 0 5px 15px rgba(255, 0, 48, 0.3);
  --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --header-height: 80px;
  --z-header: 1000;
  --z-modal: 2000;
  --z-tooltip: 3000;
  --menu-gradient: linear-gradient(135deg, rgba(25, 25, 25, 0.98) 0%, rgba(40, 40, 40, 0.95) 100%);
}

/* Fix Safari status bar color */
@supports (-webkit-touch-callout: none) {
  html {
    background-color: #000000;
  }
}

/* Reset y estilos base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--white);
  background-color: var(--dark);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
  letter-spacing: -0.02em;
}
h2 {
  font-size: 2.5rem;
  letter-spacing: -0.01em;
}
h3 {
  font-size: 1.75rem;
}
h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1.5rem;
  font-weight: 300;
}

a {
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul,
ol {
  list-style: none;
}

button,
.btn {
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  border: none;
  outline: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: var(--transition);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--primary);
  margin: 1rem auto 0;
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: var(--light-gray);
  max-width: 700px;
  margin: -2rem auto 3rem;
}

/* Utilidades */
.text-primary {
  color: var(--primary);
}
.text-white {
  color: var(--white);
}
.text-center {
  text-align: center;
}
.text-uppercase {
  text-transform: uppercase;
}
.fw-light {
  font-weight: 300;
}
.fw-normal {
  font-weight: 400;
}
.fw-medium {
  font-weight: 500;
}
.fw-semibold {
  font-weight: 600;
}
.fw-bold {
  font-weight: 700;
}
.fw-extrabold {
  font-weight: 800;
}
.mb-1 {
  margin-bottom: 0.5rem;
}
.mb-2 {
  margin-bottom: 1rem;
}
.mb-3 {
  margin-bottom: 1.5rem;
}
.mb-4 {
  margin-bottom: 2rem;
}
.mb-5 {
  margin-bottom: 3rem;
}
.mt-1 {
  margin-top: 0.5rem;
}
.mt-2 {
  margin-top: 1rem;
}
.mt-3 {
  margin-top: 1.5rem;
}
.mt-4 {
  margin-top: 2rem;
}
.mt-5 {
  margin-top: 3rem;
}
.py-1 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-2 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py-3 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.py-4 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.py-5 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.px-1 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.px-2 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-3 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.px-4 {
  padding-left: 2rem;
  padding-right: 2rem;
}
.px-5 {
  padding-left: 3rem;
  padding-right: 3rem;
}
.d-flex {
  display: flex;
}
.flex-column {
  flex-direction: column;
}
.flex-wrap {
  flex-wrap: wrap;
}
.justify-content-center {
  justify-content: center;
}
.justify-content-between {
  justify-content: space-between;
}
.align-items-center {
  align-items: center;
}
.gap-1 {
  gap: 0.5rem;
}
.gap-2 {
  gap: 1rem;
}
.gap-3 {
  gap: 1.5rem;
}
.gap-4 {
  gap: 2rem;
}
.gap-5 {
  gap: 3rem;
}
.w-100 {
  width: 100%;
}
.h-100 {
  height: 100%;
}
.position-relative {
  position: relative;
}
.position-absolute {
  position: absolute;
}
.overflow-hidden {
  overflow: hidden;
}
.bg-dark {
  background-color: var(--dark);
}
.bg-darker {
  background-color: var(--black);
}
.bg-primary {
  background-color: var(--primary);
}
.bg-gradient-dark {
  background-image: var(--gradient-dark);
}
.bg-gradient-primary {
  background-image: var(--gradient-primary);
}
.rounded-sm {
  border-radius: var(--radius-sm);
}
.rounded-md {
  border-radius: var(--radius-md);
}
.rounded-lg {
  border-radius: var(--radius-lg);
}
.rounded-xl {
  border-radius: var(--radius-xl);
}
.rounded-full {
  border-radius: var(--radius-full);
}
.shadow-sm {
  box-shadow: var(--shadow-sm);
}
.shadow-md {
  box-shadow: var(--shadow-md);
}
.shadow-lg {
  box-shadow: var(--shadow-lg);
}
.shadow-primary {
  box-shadow: var(--shadow-primary);
}

/* Botones */
.btn-primary {
  background-color: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-primary);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.btn-outline:hover {
  background-color: var(--white);
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.btn-outline-primary {
  background-color: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline-primary:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-primary);
}

.btn-dark {
  background-color: var(--dark);
  color: var(--white);
}

.btn-dark:hover {
  background-color: var(--dark-gray);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

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

/* Header y Navegación */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-header);
  transition: var(--transition);
  padding: 1rem 0;
  background-color: rgba(0, 0, 0, 0.7);
}

.header.scrolled {
  background-color: rgba(0, 0, 0, 0.9);
  padding: 0.5rem 0;
  box-shadow: var(--shadow-md);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  z-index: 1001;
}

.logo img {
  height: 35px;
  width: 165px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
}

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

.nav-link {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-buttons {
  display: flex;
  gap: 1rem;
}

.login-btn {
  background-color: var(--primary);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.5px;
  transition: var(--transition);
}

.mobile-text {
  display: none;
}

.login-btn:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-primary);
}

.register-btn {
  background-color: transparent;
  border: 2px solid var(--primary);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.5px;
  transition: var(--transition);
}

.register-btn:hover {
  background-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-primary);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1001;
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
}

.mobile-toggle:hover {
  color: var(--primary);
  background-color: rgba(255, 255, 255, 0.1);
}

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--dark);
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 0 1.5rem;
}

.hero-title {
  font-size: 5rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.1;
  font-weight: 800;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.hero-btn-primary {
  background-color: var(--primary);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 1px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-primary);
}

.hero-btn-outline {
  background-color: transparent;
  border: 2px solid var(--white);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 1px;
  transition: var(--transition);
}

.hero-btn-outline:hover {
  background-color: var(--white);
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.hero-indicators {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}

.hero-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition);
}

.hero-indicator.active {
  background-color: var(--primary);
  transform: scale(1.2);
}

/* Distribution Section */
.distribution {
  background-color: #1a1a1a;
  position: relative;
  border-top: 5px solid var(--primary);
  border-bottom: 5px solid var(--primary);
}

.distribution::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(255, 0, 48, 0.15), transparent);
  z-index: 1;
}

.distribution-content {
  position: relative;
  z-index: 2;
}

.distribution-intro {
  background-color: rgba(0, 0, 0, 0.4);
  padding: 2rem;
  border-radius: var(--radius-lg);
  margin-bottom: 3rem;
  box-shadow: var(--shadow-lg);
}

.distribution-process {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3rem;
  background-color: rgba(0, 0, 0, 0.3);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.process-step {
  flex: 1;
  min-width: 200px;
  text-align: center;
  padding: 1.5rem;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.process-step:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
  background-color: rgba(255, 255, 255, 0.08);
}

.process-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.process-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.process-description {
  font-size: 0.875rem;
  color: var(--light-gray);
}

/* Marketing Section */
.marketing {
  background-color: var(--dark);
  position: relative;
  overflow: hidden;
}

.marketing::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, transparent, rgba(255, 0, 48, 0.05));
  z-index: 1;
}

.marketing-content {
  position: relative;
  z-index: 2;
}

.marketing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.marketing-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.marketing-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
  background-color: rgba(255, 255, 255, 0.08);
}

.marketing-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.marketing-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.marketing-text {
  font-size: 0.95rem;
  color: var(--light-gray);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

/* Artists Section */
.artists {
  background-color: var(--dark);
}

.artists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
}

.artist-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.artist-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.artist-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.artist-card:hover .artist-image {
  transform: scale(1.05);
}

.artist-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: var(--transition);
}

.artist-card:hover .artist-overlay {
  opacity: 1;
}

.artist-name {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.artist-type {
  font-size: 0.875rem;
  color: var(--light-gray);
  margin-bottom: 1rem;
}

.artist-social {
  display: flex;
  gap: 1rem;
}

.artist-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.artist-social a:hover {
  background-color: var(--primary);
  transform: translateY(-3px);
}

.artist-social i {
  font-size: 1rem;
}

/* About Section */
.about {
  background-color: var(--dark-gray);
  position: relative;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image img {
  width: 100%;
  height: auto;
}

.about-content {
  max-width: 500px;
}

.about-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.about-text {
  margin-bottom: 2rem;
}

.about-quote {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--primary);
  margin-bottom: 1rem;
  font-weight: 500;
}

.about-quote-author {
  font-size: 1rem;
  color: var(--light-gray);
}

/* Videos Section */
.videos {
  background-color: var(--dark);
}

.videos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.featured-video {
  margin-bottom: 2rem;
}

.video-container {
  position: relative;
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.video-container:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.video-container iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
}

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

/* Releases Section */
.releases {
  background-color: var(--dark-gray);
}

.release-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 2rem;
  margin-bottom: 2rem;
  transition: var(--transition);
}

.release-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
  background-color: rgba(255, 255, 255, 0.08);
}

.release-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.release-description {
  font-size: 0.95rem;
  color: var(--light-gray);
  margin-bottom: 1.5rem;
}

.spotify-embed {
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

/* Contact Section */
.contact {
  background-color: var(--dark);
  position: relative;
}

.contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(255, 0, 48, 0.05), transparent);
  z-index: 1;
}

.contact-content {
  position: relative;
  z-index: 2;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.contact-card {
  text-align: center;
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
  background-color: rgba(255, 255, 255, 0.08);
}

.contact-title {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-info {
  margin-bottom: 1rem;
}

.contact-label {
  font-size: 0.875rem;
  color: var(--light-gray);
  margin-bottom: 0.5rem;
}

.contact-value {
  font-size: 1rem;
  font-weight: 500;
}

.contact-value a {
  color: var(--white);
  transition: var(--transition);
}

.contact-value a:hover {
  color: var(--primary);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}

.social-link {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-link:hover {
  background-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: var(--shadow-primary);
}

.social-link i {
  font-size: 1.25rem;
  color: var(--white);
}

/* Footer */
.footer {
  background-color: var(--black);
  padding: 4rem 0 2rem;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 1rem;
  display: inline-block;
}

.footer-about {
  font-size: 0.9rem;
  color: var(--light-gray);
  margin-bottom: 1.5rem;
}

.footer-heading {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  font-size: 0.9rem;
  color: var(--light-gray);
  transition: var(--transition);
}

.footer-link:hover {
  color: var(--primary);
  transform: translateX(5px);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.footer-contact-icon {
  font-size: 1.25rem;
  color: var(--primary);
}

.footer-contact-text {
  font-size: 0.9rem;
  color: var(--light-gray);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  font-size: 0.875rem;
  color: var(--light-gray);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-link {
  font-size: 0.875rem;
  color: var(--light-gray);
  transition: var(--transition);
}

.footer-bottom-link:hover {
  color: var(--primary);
}

/* Formulario de registro */
.register-section {
  min-height: 100vh;
  padding-top: 120px;
  padding-bottom: 5rem;
  background-color: var(--dark);
  position: relative;
}

.register-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(255, 0, 48, 0.05), transparent);
  z-index: 1;
}

.register-container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.register-card {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.register-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.register-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.register-subtitle {
  font-size: 1.1rem;
  color: var(--light-gray);
  max-width: 600px;
  margin: 0 auto;
}

.register-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.form-group {
  position: relative;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 1rem 1.25rem;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  transition: var(--transition);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--primary);
  background-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(255, 0, 48, 0.2);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px 12px;
}

.form-select option {
  background-color: var(--dark-gray);
  color: var(--white);
}

.phone-input-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Modificación específica para el campo de código de país */
.phone-code {
  min-width: 80px; /* Reducido de 100px a 80px */
  width: auto;
  flex-shrink: 0;
  margin-right: 0.5rem;
  padding-right: 2rem; /* Espacio para el ícono de flecha */
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.phone-number {
  flex-grow: 1;
}

.form-submit {
  margin-top: 1rem;
  padding: 1rem 2rem;
  background-color: var(--primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius-full);
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
}

.form-submit:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-primary);
}

.form-submit:disabled {
  background-color: var(--light-gray);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.form-note {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--light-gray);
  text-align: center;
}

.form-note a {
  color: var(--primary);
  font-weight: 500;
}

.form-note a:hover {
  text-decoration: underline;
}

.form-error {
  color: #ff3b3b;
  font-size: 0.8rem;
  margin-top: 0.5rem;
  display: none;
}

.form-success {
  background-color: rgba(0, 200, 83, 0.1);
  border: 1px solid rgba(0, 200, 83, 0.3);
  color: #00c853;
  padding: 1rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  display: none;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

/* Success Section */
.success-section {
  min-height: 100vh;
  padding-top: 120px;
  padding-bottom: 5rem;
  background-color: var(--dark);
  position: relative;
  display: flex;
  align-items: center;
}

.success-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(255, 0, 48, 0.05), transparent);
  z-index: 1;
}

.success-container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.success-card {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.success-icon {
  font-size: 5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  display: inline-block;
}

.success-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.success-message {
  font-size: 1.1rem;
  color: var(--light-gray);
  max-width: 600px;
  margin: 0 auto 2rem;
}

.success-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
  margin: 0 auto;
}

.success-btn {
  padding: 1rem 2rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 1px;
  transition: var(--transition);
  width: 100%;
  text-align: center;
}

/* Lazy Loading */
.lazy-image {
  opacity: 0;
  transition: opacity 0.5s ease-in;
}

.lazy-image.loaded {
  opacity: 1;
}

/* Placeholder para imágenes mientras cargan */
.artist-image.lazy-image:not(.loaded) {
  background-color: rgba(255, 255, 255, 0.1);
  background-image: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0.1) 100%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* Animaciones */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.8s ease forwards;
}

/* Media Queries */
@media (max-width: 992px) {
  h1 {
    font-size: 2.75rem;
  }
  h2 {
    font-size: 2rem;
  }
  h3 {
    font-size: 1.5rem;
  }
  .hero-title {
    font-size: 3rem;
  }
  .hero-subtitle {
    font-size: 1.1rem;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-content {
    max-width: 100%;
  }

  .mobile-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background-image: var(--menu-gradient);
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
    overflow: hidden;
  }

  .nav::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 0, 48, 0.05) 0%, transparent 100%);
    z-index: -1;
  }

  .nav.active {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
  }

  .nav-link {
    font-size: 1.1rem;
    position: relative;
    display: inline-block;
    padding: 0.5rem 1.5rem;
    width: 100%;
    text-align: center;
    transition: all 0.3s ease;
  }

  .nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
  }

  .nav-link:hover::after,
  .nav-link.active::after {
    width: 50%;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 1.75rem;
  }
  .section {
    padding: 4rem 0;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  .hero-buttons .btn {
    width: 100%;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom-links {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2.25rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  .section {
    padding: 3rem 0;
  }
  .hero-title {
    font-size: 2rem;
  }

  .register-card,
  .success-card {
    padding: 1.5rem;
  }

  /* Ajustes específicos para móvil */
  .header-container {
    position: relative;
    height: 60px;
  }

  .logo {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
  }

  .mobile-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
  }

  .nav-buttons {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 0;
    flex-direction: row;
    gap: 0.5rem;
  }

  .desktop-text {
    display: none;
  }

  .mobile-text {
    display: inline;
  }

  .login-btn,
  .register-btn {
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
    white-space: nowrap;
  }

  /* Mejoras estéticas para el menú desplegable */
  .nav.active {
    background-image: var(--menu-gradient);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    padding-top: 80px;
    width: 80%;
  }

  .nav-list {
    gap: 1.5rem;
  }

  .nav-link {
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.03);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
  }

  .nav-link:hover,
  .nav-link.active {
    background-color: rgba(255, 0, 48, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 0, 48, 0.1);
  }
}

/* Estilos para PWA */
/* ================ */

/* Prompt de instalación PWA */
#install-prompt {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 50px;
}

.prompt-content {
  background-color: #151516;
  width: 85%;
  max-width: 350px;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  position: relative;
  color: white;
  margin-bottom: 12px;
}

.close-prompt {
  position: absolute;
  top: 8px;
  right: 8px;
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  width: 17px;
  height: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0; /* Anular el padding grande */
  text-transform: none; /* Evitar que se convierta a mayúsculas */
}

.prompt-title {
  font-size: 12px;
  font-weight: 700 !important;
  margin-bottom: 11px;
  line-height: 1.3;
  padding: 0 10px !important;
  text-transform: none !important;
  font-family: "Poppins", sans-serif !important;
  letter-spacing: normal !important;
}

.prompt-step {
  margin: 10px 0;
  text-align: center;
}

.prompt-icon {
  font-size: 20px;
  margin: 3px 0;
  display: inline-block;
}

.prompt-instruction {
  font-size: 12px;
  margin: 3px 0;
  font-weight: 400 !important;
  text-transform: none !important;
  font-family: "Poppins", sans-serif !important;
  letter-spacing: normal !important;
}

.add-button {
  background-color: #222;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  padding: 8px 12px;
  margin: 10px auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 85%;
  max-width: 250px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
}

.add-button-icon {
  font-size: 14px;
  border: 1px solid white;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
}

.dont-show {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: white;
  padding: 6px 12px;
  border-radius: 4px;
  margin-top: 10px;
  font-size: 11px;
  cursor: pointer;
  text-transform: none !important;
  font-family: "Poppins", sans-serif !important;
  letter-spacing: normal !important;
  font-weight: normal !important;
}

/* Asegurar que los botones del PWA no hereden los estilos generales de botones */
#install-prompt button {
  text-transform: none !important;
  letter-spacing: normal !important;
}

.down-arrow {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-8px) translateX(-50%);
  }
  60% {
    transform: translateY(-4px) translateX(-50%);
  }
}

/* Estilos específicos para iPad/tablet */
#install-prompt.tablet-prompt {
  align-items: flex-start;
  justify-content: flex-end;
  padding-top: 50px;
  padding-right: 20px;
  padding-bottom: 0;
}

#install-prompt.tablet-prompt .prompt-content {
  margin-top: 12px;
  margin-right: 0;
  margin-bottom: 0;
}

#install-prompt.tablet-prompt .down-arrow {
  top: 20px;
  bottom: auto;
  right: 60px;
  left: auto;
  transform: rotate(180deg);
}

#install-prompt.tablet-prompt .prompt-instruction {
  text-align: center;
}

/* ===== Estilos para depuración PWA ===== */
/* Estos estilos solo se usan cuando DEBUG_ENABLED = true o con el parámetro debug=true en la URL */
#debug-controls {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9000;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 8px;
  border-radius: 8px;
  display: none;
  box-shadow: var(--shadow-md);
}

#debug-controls button {
  background-color: var(--primary);
  color: white;
  border: none;
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 11px;
  cursor: pointer;
  margin-right: 5px;
  margin-bottom: 5px;
}

#debug-controls button:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-primary);
}

/* Botón de debug para forzar el prompt - solo visible en modo depuración */
#debug-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--primary);
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 24px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 9000;
}

#debug-button:hover {
  background-color: var(--primary-dark);
}
