/* ============ TOKENS ============ */
:root {
  --bg: #000000;
  --panel: #121212;
  --panel-2: #1a1a1a;
  --line: rgba(255, 255, 255, 0.09);
  --white: #f3f3f3;
  --gray: #9b9b9b;
  --gray-dim: #6c6c6c;
  --orange: #ff7e1f;
  --orange-deep: #e85d04;
  --yellow: #ffc93c;
  --radius: 16px;
  --maxw: 1180px;
  --shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.8);
  --grad: linear-gradient(120deg, var(--yellow), var(--orange));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(900px 500px at 50% -8%, rgba(255, 140, 20, 0.14), transparent 60%),
    var(--bg);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  font-size: 16px;
}

h1,
h2,
h3,
h4 {
  font-family: 'Sora', sans-serif;
  margin: 0;
  letter-spacing: -0.01em;
  font-weight: 700;
}

p {
  margin: 0;
  font-size: 16px;
}

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

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

::selection {
  background: var(--orange);
  color: #160b00;
}

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

/* ============ BOTONES ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
}

.btn:active {
  transform: translateY(1px) scale(.98);
}

.btn-primary {
  background: var(--grad);
  color: #1a0e00;
  box-shadow: 0 10px 25px -8px rgba(255, 140, 20, 0.5);
}

.btn-primary:hover {
  box-shadow: 0 14px 32px -8px rgba(255, 140, 20, 0.7);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--white);
}

.btn-ghost:hover {
  border-color: var(--orange);
  background: rgba(255, 140, 20, 0.08);
  color: var(--orange);
}

.btn i {
  font-size: 16px;
}

/* ============ SECTIONS ============ */
.section {
  padding: 96px 0;
  position: relative;
}

.section-head {
  max-width: 640px;
  margin-bottom: 52px;
}

.section-head h2 {
  font-size: clamp(28px, 3.8vw, 40px);
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.section-head h2::after {
  content: '';
  display: block;
  width: 56px;
  height: 3px;
  margin-top: 16px;
  border-radius: 3px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .6s ease .1s;
}

.section-head.is-visible h2::after {
  transform: scaleX(1);
}

.section-head p {
  color: var(--gray);
  font-size: 16.5px;
  margin-top: 16px;
  line-height: 1.6;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 180px 0 110px;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 640px;
  height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 140, 20, 0.22), transparent 68%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 56px;
  align-items: center;
}

.hero-logo-wrap {
  width: 220px;
  height: 220px;
  border-radius: 26px;
  flex-shrink: 0;
  background: transparent;
  border: none;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  padding: 12px;
}

.hero-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-copy h1 {
  font-size: clamp(38px, 5.8vw, 60px);
  font-weight: 800;
  line-height: 1.05;
}

.hero-copy h1 .accent {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lore {
  margin-top: 20px;
  max-width: 560px;
  color: var(--gray);
  font-size: 17px;
  line-height: 1.7;
}

.ip-row {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.ip-box {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 10px 12px 20px;
}

.ip-box .ip-text {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}

.ip-box .ip-label {
  font-size: 11px;
  color: var(--gray-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 2px;
}

.copy-btn {
  background: rgba(255, 140, 20, 0.1);
  border: 1px solid rgba(255, 140, 20, 0.3);
  color: var(--orange);
  padding: 9px 14px;
  border-radius: 9px;
  font-weight: 700;
  font-size: 13.5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: .15s;
  font-family: 'Inter', sans-serif;
}

.copy-btn:hover {
  background: var(--grad);
  color: #1a0e00;
  border-color: transparent;
}

.copy-btn i {
  font-size: 14px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.hero-actions .btn i {
  font-size: 16px;
}

/* ============ CARRUSEL ============ */
.gallery-section {
  padding-top: 20px;
}

.carousel-container {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: var(--shadow);
  background: var(--panel);
  border: 1px solid var(--line);
}

.carousel {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: 520px;
}

.carousel-slide {
  min-width: 100%;
  height: 100%;
  flex-shrink: 0;
}

.carousel-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  font-weight: 300;
}

.carousel-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: translateY(-50%) scale(1.05);
}

.carousel-btn i {
  font-size: 20px;
}

.carousel-btn-prev {
  left: 20px;
}

.carousel-btn-next {
  right: 20px;
}

.carousel-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.indicator:hover {
  background: rgba(255, 255, 255, 0.6);
}

.indicator.active {
  background: var(--orange);
  width: 32px;
  border-radius: 6px;
}

/* ============ ANUNCIOS ============ */
.ann-grid-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.ann-grid-preview .ann-card {
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: visible;
  transition: transform .2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0;
}

.ann-grid-preview .ann-card:hover {
  transform: translateY(-4px);
}

.ann-grid-preview .ann-media {
  height: 220px;
  width: 100%;
  position: relative;
  overflow: hidden;
  background: var(--panel-2);
  border-radius: 16px;
  margin-bottom: 16px;
}

.ann-grid-preview .ann-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.ann-grid-preview .ann-body {
  padding: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.ann-grid-preview .ann-date {
  font-size: 12px;
  color: var(--gray-dim);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.ann-grid-preview .ann-date i {
  font-size: 12px;
  color: var(--gray-dim);
}

.ann-grid-preview .ann-body h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}

.ann-grid-preview .ann-body p {
  font-size: 14.5px;
  color: var(--gray);
  line-height: 1.6;
  flex: 1;
  max-width: 90%;
}

.ann-grid-preview .ann-link {
  margin-top: 14px;
  font-size: 14px;
  font-weight: 700;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
}

.ann-grid-preview .ann-link i {
  font-size: 12px;
  transition: transform 0.2s ease;
}

.ann-grid-preview .ann-link:hover {
  gap: 12px;
}

.ann-grid-preview .ann-link:hover i {
  transform: translateX(4px);
}

.preview-footer {
  text-align: center;
  margin-top: 40px;
}

/* ============ ABOUT BAND ============ */
.about-band {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 40px 44px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  color: var(--white);
}

.about-band .about-icon {
  width: 90px;
  height: 90px;
  border-radius: 18px;
  background: rgba(255, 140, 20, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-band .about-icon i {
  font-size: 40px;
  color: var(--orange);
}

.about-band .about-text {
  flex: 1;
  min-width: 240px;
}

.about-band h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.about-band p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--gray);
}

.about-band .btn {
  background: var(--grad);
  color: #1a0e00;
}

/* ============ FOOTER ============ */
footer {
  padding: 60px 0 40px;
}

.footer-bottom {
  margin-top: 36px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  color: var(--gray);
  font-size: 13.5px;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--gray);
  transition: .15s;
}

.footer-links a:hover {
  color: var(--orange);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
}

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

.footer-brand .brand-mark {
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  padding: 2px;
}

.footer-brand .brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

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

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .15s;
  color: var(--gray);
}

.social-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(255, 140, 20, 0.08);
}

.social-btn i {
  font-size: 18px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .hero-grid .hero-logo-wrap {
    margin: 0 auto;
  }

  .ip-row {
    justify-content: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .about-band {
    flex-direction: column;
    text-align: center;
  }

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

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

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

  .social-row {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .carousel {
    height: 380px;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .ann-grid-preview {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .ann-grid-preview .ann-media {
    height: 180px;
  }

  .about-band {
    padding: 30px 28px;
  }
}

@media (max-width: 480px) {
  .carousel {
    height: 280px;
  }

  .carousel-btn {
    width: 34px;
    height: 34px;
    font-size: 16px;
  }

  .ann-grid-preview {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .ann-grid-preview .ann-media {
    height: 180px;
  }

  .hero-logo-wrap {
    width: 150px;
    height: 150px;
    padding: 10px;
  }

  .hero-copy h1 {
    font-size: 26px;
  }

  .hero-lore {
    font-size: 15px;
  }

  .about-band {
    padding: 24px 20px;
  }

  .footer-bottom {
    padding: 16px 20px;
  }
}