:root {
  --navy: #0b1530;
  --navy-light: #131f45;
  --gold: #c9a24b;
  --gold-light: #e6c777;
  --cream: #faf7f0;
  --text-dark: #1c1f2a;
  --text-muted: #5a5f6e;
  --max-width: 1140px;
  --radius: 10px;
  font-size: 16px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Georgia', 'Times New Roman', serif;
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.6;
}

h1, h2, h3, .brand-name {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

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

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(11, 21, 48, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(201, 162, 75, 0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo { height: 44px; width: 44px; }

.brand-name {
  color: var(--cream);
  font-size: 1.05rem;
  text-transform: uppercase;
}
.brand-name em { color: var(--gold-light); font-style: normal; }

.nav {
  display: flex;
  gap: 32px;
}

.nav a {
  color: var(--cream);
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.85;
  transition: opacity 0.2s, color 0.2s;
}
.nav a:hover { opacity: 1; color: var(--gold-light); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--cream);
}

/* Hero */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--cream);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,21,48,0.75) 0%, rgba(11,21,48,0.88) 60%, rgba(11,21,48,0.97) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 72px;
}
.hero-seal {
  width: 120px;
  height: 120px;
  margin: 0 auto 24px;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin: 0 0 16px;
  color: var(--cream);
}
.hero-tagline {
  max-width: 620px;
  margin: 0 auto 36px;
  font-size: 1.15rem;
  color: rgba(250, 247, 240, 0.85);
  font-family: Georgia, serif;
}
.hero-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 999px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.25s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy);
  font-weight: 700;
}
.btn-primary:hover { filter: brightness(1.08); transform: translateY(-1px); }
.btn-outline {
  border-color: rgba(250,247,240,0.5);
  color: var(--cream);
}
.btn-outline:hover { border-color: var(--gold-light); color: var(--gold-light); }

/* Sections */
.section { padding: 96px 0; }
.section-alt { background: #f1ece0; }

.eyebrow {
  display: inline-block;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 12px;
}

.section h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  color: var(--navy);
  margin: 0 0 20px;
}

.section-intro {
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 36px;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.about-text p { color: var(--text-muted); }
.about-image img {
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(11,21,48,0.25);
}

/* Services */
.services-grid {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}
.service-card {
  background: #fff;
  border: 1px solid rgba(11,21,48,0.08);
  border-radius: var(--radius);
  padding: 40px 36px;
  max-width: 420px;
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(11,21,48,0.1);
}
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin: 0 auto 18px;
}
.service-card h3 {
  color: var(--navy);
  margin: 0 0 10px;
  font-size: 1.1rem;
}
.service-card p { color: var(--text-muted); margin: 0; font-size: 0.95rem; }

/* Platform offer (para artistas) */
.platform-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 40px 0 56px;
}
.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.feature-icon {
  font-size: 1.6rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-item h4 {
  margin: 0 0 6px;
  color: var(--navy);
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 1rem;
}
.feature-item p { margin: 0; color: var(--text-muted); font-size: 0.92rem; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pricing-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(11,21,48,0.08);
  border-radius: var(--radius);
  padding: 32px 26px;
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(11,21,48,0.1); }
.pricing-card.featured {
  border-color: var(--gold);
  box-shadow: 0 16px 40px rgba(201,162,75,0.2);
}
.pricing-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 999px;
}
.pricing-card h3 {
  color: var(--navy);
  font-size: 1.05rem;
  margin: 8px 0 12px;
}
.price {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 14px;
}
.price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-muted);
}
.pricing-desc { color: var(--text-muted); font-size: 0.92rem; margin: 0; }
.pricing-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.82rem;
  margin: 18px 0 0;
}
.platform-cta { text-align: center; margin-top: 40px; }

/* Music */
.showcase-card {
  background: var(--navy);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(11,21,48,0.25);
  padding: 48px;
  text-align: center;
}
.showcase-card p {
  color: rgba(250,247,240,0.85);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto 24px;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.contact-grid p { color: var(--text-muted); }
.contact-form {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid rgba(11,21,48,0.08);
}
.form-row { margin-bottom: 18px; display: flex; flex-direction: column; gap: 6px; }
.form-row label {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.85rem;
  color: var(--navy);
  font-weight: 700;
}
.form-row input, .form-row textarea {
  border: 1px solid rgba(11,21,48,0.15);
  border-radius: 6px;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 0.95rem;
  resize: vertical;
}
.form-row input:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-note {
  margin: 14px 0 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  min-height: 1.2em;
}

/* WhatsApp */
.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
  padding: 14px 20px;
  background: #fff;
  border: 1px solid rgba(11,21,48,0.1);
  border-radius: var(--radius);
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(11,21,48,0.12);
}
.whatsapp-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.whatsapp-label {
  display: block;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}
.whatsapp-number {
  display: block;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-weight: 700;
  color: var(--navy);
  font-size: 1rem;
}

.whatsapp-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  z-index: 90;
  transition: transform 0.2s;
}
.whatsapp-float:hover { transform: scale(1.08); }

/* Footer */
.site-footer {
  background: var(--navy);
  color: rgba(250,247,240,0.7);
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-logo { width: 40px; height: 40px; }
.footer-inner p { margin: 0; font-size: 0.85rem; font-family: 'Helvetica Neue', Arial, sans-serif; }

/* Responsive */
@media (max-width: 860px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-image { order: -1; }
  .platform-features { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav {
    position: absolute;
    top: 72px;
    left: 0; right: 0;
    background: var(--navy);
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .nav.open { max-height: 300px; }
  .nav a { padding: 16px 24px; border-top: 1px solid rgba(201,162,75,0.15); }
  .nav-toggle { display: flex; }
}
