:root {
  --bg: #031f2b;
  --bg-soft: #0a2b39;
  --ink: #f5e6bf;
  --muted: #c9b276;
  --accent: #d7bc73;
  --accent-2: #f0ddb0;
  --line: rgba(215, 188, 115, 0.34);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 14% -10%, #245063 0%, transparent 45%),
    radial-gradient(circle at 100% 10%, #184459 0%, transparent 44%),
    linear-gradient(145deg, #021823 0%, #062836 58%, #041f2c 100%),
    var(--bg);
  min-height: 100vh;
  line-height: 1.5;
  position: relative;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.09;
  background-image: radial-gradient(#fff 0.3px, transparent 0.3px);
  background-size: 4px 4px;
}

.hero,
.section,
.footer {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.topbar {
  --logo-gap: 470px;
  --banner-y: 210px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 6px;
  margin-top: 6px;
}

.logo-img {
  position: relative;
  z-index: 2;
  height: 470px;
  width: auto;
  display: block;
  margin-top: -10px;
}

.lang-switch {
  position: absolute;
  right: 0;
  top: 8px;
  z-index: 4;
  display: inline-flex;
  border: 1px solid rgba(215, 188, 115, 0.45);
}

.lang-btn {
  border: 0;
  background: rgba(8, 42, 56, 0.9);
  color: var(--accent-2);
  font-weight: 800;
  padding: 8px 12px;
  cursor: pointer;
}

.lang-btn + .lang-btn {
  border-left: 1px solid rgba(215, 188, 115, 0.45);
}

.lang-btn.is-active {
  background: rgba(215, 188, 115, 0.92);
  color: #08202b;
}

.topbar::before,
.topbar::after {
  content: "";
  position: absolute;
  top: var(--banner-y);
  height: 10px;
  background: linear-gradient(90deg, rgba(215, 188, 115, 0.95), rgba(187, 157, 86, 0.98));
  border: 1px solid rgba(215, 188, 115, 0.45);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.24);
}

.topbar::before {
  left: 0;
  width: calc(50% - (var(--logo-gap) / 2));
}

.topbar::after {
  right: 0;
  width: calc(50% - (var(--logo-gap) / 2));
}

.site-menu {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
}

.site-menu a {
  font-size: 0.82rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 800;
  background: linear-gradient(90deg, rgba(215, 188, 115, 0.95), rgba(187, 157, 86, 0.98));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-menu a:hover {
  opacity: 0.82;
  transform: translateY(-1px);
}

.hero-carousel {
  position: relative;
  margin: 24px 0 0;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
}

.hero-carousel::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(215, 188, 115, 0.95), rgba(187, 157, 86, 0.98));
  z-index: 2;
}

.hero-carousel-track {
  display: flex;
  gap: 0;
  width: max-content;
  padding: 16px 0 0;
  animation: carousel-scroll 420s linear infinite;
}

.hero-carousel-item {
  margin: 0;
  flex: 0 0 100vw;
  height: clamp(260px, 52vw, 640px);
  border: 1px solid rgba(215, 188, 115, 0.45);
  overflow: hidden;
  background: #08202b;
}

.hero-carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  padding: 30px 0 80px;
  max-width: 720px;
  animation: rise 0.8s ease both;
}

.eyebrow {
  color: var(--accent-2);
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  font-size: 0.78rem;
}

h1,
h2,
h3 {
  margin: 0 0 16px;
  line-height: 1.08;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.03em;
}

h2 {
  font-size: clamp(1.7rem, 4vw, 3rem);
  max-width: 760px;
}

h3 {
  font-size: 1.3rem;
}

p {
  margin: 0;
}

.section p + p {
  margin-top: 18px;
}

.lead {
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.25rem);
  max-width: 640px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 800;
  border-radius: 999px;
  padding: 12px 20px;
  transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(120deg, var(--accent), #ff947a);
  color: #130f1e;
}

.btn-link {
  color: var(--ink);
  border: 1px solid rgba(215, 188, 115, 0.25);
  background: rgba(215, 188, 115, 0.12);
}

.section {
  padding: 70px 0;
}

.cards {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.card {
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(215, 188, 115, 0.13), rgba(4, 36, 50, 0.65));
  border-radius: 18px;
  padding: 24px;
}

.video-card {
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(215, 188, 115, 0.09), rgba(4, 36, 50, 0.65));
  padding: 22px;
}

#video.section {
  padding-top: 30px;
}

.video-player {
  width: 100%;
  display: block;
  border: 1px solid rgba(215, 188, 115, 0.55);
  background: #000;
}

.youtube-cta {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-2);
  text-decoration: none;
  font-weight: 700;
}

.youtube-cta svg {
  width: 18px;
  height: 18px;
  fill: rgba(215, 188, 115, 0.95);
}

.video-copy {
  margin-top: 18px;
}

.video-copy h2 {
  margin-bottom: 16px;
}

.video-copy p + p {
  margin-top: 12px;
}

.poster-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.poster-card {
  margin: 0;
  border: 2px solid rgba(215, 188, 115, 0.62);
  background: linear-gradient(145deg, #062635, #0b3244);
  padding: 10px;
}

.poster-card img {
  width: 100%;
  height: auto;
  display: block;
}

#archivo.section {
  width: min(1220px, 96%);
}

.forms-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.musa-form {
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(215, 188, 115, 0.12), rgba(4, 36, 50, 0.75));
  padding: 20px;
}

.musa-form h3 {
  margin-bottom: 14px;
}

.musa-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-2);
  margin-bottom: 6px;
}

.musa-form input,
.musa-form textarea {
  width: 100%;
  border: 1px solid rgba(215, 188, 115, 0.36);
  background: rgba(2, 24, 35, 0.85);
  color: var(--ink);
  padding: 10px 12px;
  margin: 0 0 12px;
  font: inherit;
}

.card p,
.section p {
  color: var(--muted);
}

.text-list {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.section p + .text-list,
.section .text-list + p {
  margin-top: 18px;
}

.text-list li + li {
  margin-top: 8px;
}

.section-highlight {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-highlight h2 {
  margin-bottom: 16px;
}

.contact-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.contact-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
  text-decoration: none;
  color: var(--ink);
  background: linear-gradient(145deg, #072836, #0a3143);
}

.contact-item strong {
  display: block;
}

.contact-item span {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
  margin-bottom: 4px;
}

.footer {
  padding: 26px 0 34px;
  color: var(--muted);
  font-size: 0.92rem;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes carousel-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100vw * 14));
  }
}

@media (max-width: 900px) {
  .cards,
  .contact-grid,
  .forms-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-content {
    padding-top: 20px;
  }

  .site-menu {
    gap: 12px;
    margin-top: 10px;
  }

  .site-menu a {
    font-size: 0.72rem;
    letter-spacing: 0.09em;
  }

  .hero-carousel {
    margin-top: 18px;
  }

  .hero-carousel-track {
    padding-top: 12px;
    animation-duration: 460s;
  }

  .hero-carousel-item {
    height: clamp(220px, 66vw, 420px);
  }

  .topbar {
    --logo-gap: 210px;
    --banner-y: 150px;
    min-height: 245px;
    margin-top: 34px;
  }

  .logo-img {
    height: 260px;
    margin-top: 8px;
  }

  .topbar::before,
  .topbar::after {
    display: none;
  }

  .lang-switch {
    top: -10px;
  }

}
