:root {
  --bg: #090d0b;
  --bg-soft: #0e1511;
  --panel: #121b16;
  --panel-2: #182219;
  --line: rgba(203, 177, 108, .2);
  --line-strong: rgba(203, 177, 108, .55);
  --gold: #cbb16c;
  --gold-bright: #e7d28e;
  --red: #8f3328;
  --red-bright: #b64635;
  --text: #f2ede0;
  --muted: #aba99e;
  --green: #456b4a;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 85% 15%, rgba(50, 87, 56, .14), transparent 31rem),
    var(--bg);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .035;
  z-index: 20;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 112px 0; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 10px 16px;
  background: var(--gold);
  color: #111;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease;
}
.site-header.scrolled {
  background: rgba(9, 13, 11, .92);
  border-color: var(--line);
  backdrop-filter: blur(14px);
}
.nav-wrap { height: 82px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-family: "Cinzel", Georgia, serif; line-height: 1; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  aspect-ratio: 1;
  color: #11150f;
  background: var(--gold);
  border: 1px solid var(--gold-bright);
  clip-path: polygon(50% 0, 92% 24%, 92% 74%, 50% 100%, 8% 74%, 8% 24%);
  font: 800 21px/1 "Cinzel", Georgia, serif;
}
.brand strong { display: block; font-size: 15px; letter-spacing: .09em; }
.brand small { color: var(--gold); font-size: 10px; letter-spacing: .36em; }
.main-nav { display: flex; align-items: center; gap: 30px; font-size: 14px; font-weight: 600; }
.main-nav > a:not(.nav-play) { color: #d4d2ca; transition: color .2s ease; }
.main-nav > a:not(.nav-play):hover { color: var(--gold-bright); }
.nav-play { padding: 11px 19px; border: 1px solid var(--line-strong); color: var(--gold-bright); }
.nav-play:hover { background: var(--gold); color: #111; }
.nav-toggle { display: none; width: 44px; height: 44px; background: transparent; border: 1px solid var(--line); padding: 10px; }
.nav-toggle span { display: block; height: 1px; margin: 5px 0; background: var(--text); }

.hero { min-height: 790px; display: grid; align-items: center; padding: 140px 0 80px; position: relative; isolation: isolate; overflow: hidden; }
.hero::after {
  content: "";
  position: absolute;
  width: 650px;
  height: 650px;
  right: -350px;
  top: 80px;
  border: 1px solid var(--line);
  transform: rotate(45deg);
  z-index: -2;
}
.hero-glow { position: absolute; inset: auto 0 0; height: 240px; background: linear-gradient(transparent, var(--bg)); z-index: -1; }
.hero-grid { display: grid; grid-template-columns: .9fr 1.3fr; gap: 68px; align-items: center; }
.eyebrow, .section-kicker { margin: 0 0 18px; color: var(--gold); font-size: 12px; font-weight: 700; letter-spacing: .2em; }
.eyebrow { display: flex; align-items: center; gap: 10px; }
.eyebrow span, .media-label span { width: 28px; height: 1px; background: var(--gold); }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: "Cinzel", Georgia, serif; line-height: 1.1; }
h1 { margin-bottom: 25px; font-size: clamp(46px, 5.3vw, 78px); letter-spacing: -.025em; }
h1 em, h2 em { color: var(--gold-bright); font-style: normal; }
.hero-lead { max-width: 580px; color: var(--muted); font-size: 17px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 35px 0 38px; }
.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 18px; padding: 12px 24px; border: 1px solid transparent; font-size: 14px; font-weight: 700; transition: transform .2s ease, background .2s ease, border .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--red); border-color: var(--red-bright); box-shadow: 0 12px 35px rgba(143, 51, 40, .2); }
.button-primary:hover { background: var(--red-bright); }
.button-ghost { border-color: var(--line-strong); color: var(--gold-bright); }
.button-ghost:hover { background: rgba(203, 177, 108, .1); }
.hero-meta { display: flex; gap: 28px; margin: 0; padding: 0; list-style: none; }
.hero-meta li { padding-left: 12px; border-left: 1px solid var(--line-strong); }
.hero-meta strong, .hero-meta span { display: block; }
.hero-meta strong { font: 700 13px/1.4 "Cinzel", Georgia, serif; color: var(--text); }
.hero-meta span { color: var(--muted); font-size: 11px; }
.hero-media { position: relative; padding: 12px; border: 1px solid var(--line); background: rgba(18, 27, 22, .85); box-shadow: 0 35px 90px rgba(0, 0, 0, .5); transform: perspective(1200px) rotateY(-2deg); }
.hero-media::after { content: ""; position: absolute; inset: 12px; background: linear-gradient(90deg, rgba(4, 8, 5, .25), transparent 40%); pointer-events: none; }
.hero-media img { width: 100%; aspect-ratio: 16/10; object-fit: cover; object-position: center; image-rendering: pixelated; filter: saturate(.78) contrast(1.04) brightness(.82); }
.media-label { position: absolute; z-index: 2; left: 30px; bottom: 30px; display: flex; align-items: center; gap: 8px; padding: 8px 12px; background: rgba(7, 11, 8, .85); border: 1px solid var(--line); color: #d8d5cb; font-size: 11px; }
.frame-corner { position: absolute; width: 38px; height: 38px; z-index: 3; }
.frame-corner-tl { left: -8px; top: -8px; border-left: 2px solid var(--gold); border-top: 2px solid var(--gold); }
.frame-corner-br { right: -8px; bottom: -8px; border-right: 2px solid var(--gold); border-bottom: 2px solid var(--gold); }

.intro { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: linear-gradient(120deg, rgba(19, 30, 23, .65), rgba(9, 13, 11, .2)); }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: start; }
.intro h2, .section-heading h2, .how h2, .cta h2 { margin-bottom: 0; font-size: clamp(34px, 4vw, 52px); }
.intro-text { padding-left: 30px; border-left: 1px solid var(--line-strong); color: var(--muted); }
.intro-text p:last-child { margin-bottom: 0; }

.section-heading { max-width: 760px; margin-bottom: 48px; }
.section-heading-row { max-width: none; display: flex; justify-content: space-between; align-items: end; gap: 40px; }
.section-heading-row > p { max-width: 320px; color: var(--muted); }
.centered { margin-inline: auto; text-align: center; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.feature-card { min-height: 300px; position: relative; padding: 32px 26px; overflow: hidden; border: 1px solid var(--line); background: linear-gradient(145deg, rgba(21, 33, 25, .85), rgba(11, 17, 13, .8)); }
.feature-card::after { content: ""; position: absolute; inset: auto -50px -80px auto; width: 160px; height: 160px; border: 1px solid var(--line); transform: rotate(45deg); }
.feature-number { position: absolute; top: 22px; right: 22px; color: rgba(203, 177, 108, .35); font: 700 12px "Cinzel", serif; }
.feature-icon { display: grid; place-items: center; width: 54px; height: 54px; margin-bottom: 46px; border: 1px solid var(--line-strong); color: var(--gold); font-size: 24px; clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%); }
.feature-card h3 { font-family: "Cinzel", Georgia, serif; font-size: 18px; }
.feature-card p { margin-bottom: 0; color: var(--muted); font-size: 14px; }

.gallery { background: var(--bg-soft); border-block: 1px solid var(--line); }
.gallery-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 16px; }
.gallery-grid figure { position: relative; margin: 0; min-height: 258px; overflow: hidden; border: 1px solid var(--line); background: #050806; }
.gallery-grid .gallery-main { grid-row: span 2; min-height: 532px; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; image-rendering: pixelated; filter: saturate(.78) contrast(1.07) brightness(.8); transition: transform .5s ease, filter .5s ease; }
.gallery-grid figure:hover img { transform: scale(1.025); filter: saturate(.92) contrast(1.04) brightness(.9); }
.gallery-grid figcaption { position: absolute; inset: auto 16px 16px; width: fit-content; padding: 9px 13px; background: rgba(7, 11, 8, .88); border-left: 2px solid var(--gold); color: #e5e1d6; font-size: 12px; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin: 55px 0 0; padding: 0; list-style: none; counter-reset: steps; }
.steps li { display: flex; gap: 22px; min-height: 170px; padding: 30px; border-top: 1px solid var(--line-strong); border-bottom: 1px solid var(--line); }
.steps li + li { border-left: 1px solid var(--line); }
.steps > li > span { flex: 0 0 44px; display: grid; place-items: center; height: 44px; border: 1px solid var(--line-strong); color: var(--gold); font: 700 16px "Cinzel", serif; }
.steps h3 { margin-bottom: 10px; font-family: "Cinzel", Georgia, serif; font-size: 17px; }
.steps p { margin-bottom: 0; color: var(--muted); font-size: 14px; }

.cta { padding-top: 30px; }
.cta-panel { position: relative; overflow: hidden; padding: 84px 30px; text-align: center; border: 1px solid var(--line-strong); background: radial-gradient(circle at center, rgba(62, 91, 62, .26), transparent 55%), #101812; }
.cta-panel::before, .cta-panel::after { content: ""; position: absolute; width: 120px; height: 120px; border-color: var(--gold); opacity: .6; }
.cta-panel::before { left: 18px; top: 18px; border-left: 1px solid; border-top: 1px solid; }
.cta-panel::after { right: 18px; bottom: 18px; border-right: 1px solid; border-bottom: 1px solid; }
.cta-rune { position: absolute; inset: 50% auto auto 50%; transform: translate(-50%, -50%); color: rgba(203, 177, 108, .035); font: 800 360px/1 "Cinzel", serif; }
.cta-panel > *:not(.cta-rune) { position: relative; z-index: 1; }
.cta-panel > p:not(.section-kicker) { max-width: 620px; margin: 20px auto 30px; color: var(--muted); }

.contact-strip { padding: 58px 0; border-top: 1px solid var(--line); background: #0d130f; }
.contact-grid { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.contact-grid h2 { margin: 0; font: 700 clamp(23px, 3vw, 34px)/1.25 "Cinzel", Georgia, serif; }

.site-footer { padding: 44px 0; border-top: 1px solid var(--line); color: var(--muted); font-size: 12px; }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand .brand-mark { width: 38px; }
.footer-brand strong { color: var(--text); font-family: "Cinzel", Georgia, serif; font-size: 13px; }
.footer-brand p { margin: 4px 0 0; }
.site-footer nav { display: flex; gap: 22px; }
.site-footer nav a:hover { color: var(--gold-bright); }
.copyright { grid-column: 1/-1; margin: 0; padding-top: 22px; border-top: 1px solid var(--line); }

/* Páginas internas */
.legal-page main { min-height: calc(100vh - 180px); padding: 150px 0 90px; }
.legal-shell { max-width: 820px; }
.legal-shell h1 { font-size: clamp(38px, 5vw, 62px); }
.legal-shell h2 { margin-top: 45px; font-size: 25px; color: var(--gold-bright); }
.legal-shell p, .legal-shell li { color: var(--muted); }
.legal-shell a { color: var(--gold-bright); text-decoration: underline; text-underline-offset: 3px; }
.legal-note { margin: 28px 0; padding: 18px 20px; border-left: 2px solid var(--gold); background: var(--panel); }
.contact-card { margin-top: 36px; padding: 32px; border: 1px solid var(--line); background: var(--panel); }
.contact-card .button { text-decoration: none; }

@media (max-width: 980px) {
  .hero { padding-top: 125px; }
  .hero-grid { grid-template-columns: 1fr; gap: 55px; }
  .hero-copy { max-width: 720px; }
  .hero-media { transform: none; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .intro-grid { gap: 45px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid .gallery-main { grid-row: auto; min-height: 410px; }
  .gallery-grid figure { min-height: 360px; }
  .steps { grid-template-columns: 1fr; }
  .steps li + li { border-left: 0; }
}

@media (max-width: 760px) {
  .section { padding: 80px 0; }
  .nav-toggle { display: block; }
  .main-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 74px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    background: rgba(9, 13, 11, .98);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 14px; }
  .nav-play { margin-top: 6px; text-align: center; }
  .hero { min-height: auto; padding: 125px 0 70px; }
  h1 { font-size: clamp(42px, 14vw, 64px); }
  .hero-meta { flex-wrap: wrap; }
  .intro-grid { grid-template-columns: 1fr; gap: 30px; }
  .intro-text { padding-left: 18px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 255px; }
  .section-heading-row, .contact-grid { align-items: flex-start; flex-direction: column; }
  .gallery-grid .gallery-main, .gallery-grid figure { min-height: 290px; }
  .footer-grid { grid-template-columns: 1fr; }
  .site-footer nav { flex-wrap: wrap; }
  .copyright { grid-column: auto; }
}

@media (max-width: 430px) {
  .container { width: min(calc(100% - 26px), var(--container)); }
  .brand strong { font-size: 12px; }
  .hero-actions .button { width: 100%; }
  .hero-meta { gap: 14px; }
  .hero-media { padding: 7px; }
  .media-label { left: 18px; bottom: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
