/* Bocazas — web de marca. Estética "verbena nocturna". */
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,600;12..96,700;12..96,800&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --tinta: #1b1430;
  --tinta-2: #241b3d;
  --tinta-3: #2e2450;
  --papel: #fbf7ef;
  --coral: #ff4d4d;
  --limon: #ffd23f;
  --menta: #21d4a8;
  --cobalto: #4d6bff;
  --niebla: #9a95ab;
  --line: rgba(255, 255, 255, 0.08);
  --radius: 24px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--papel);
  background: var(--tinta);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.wrap {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(27, 20, 48, 0.72);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.5px;
}
.dots {
  display: flex;
  gap: 5px;
}
.dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
}
.dot.coral {
  background: var(--coral);
}
.dot.limon {
  background: var(--limon);
}
.logo .mark {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: block;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}
.nav-links {
  display: flex;
  gap: 28px;
  font-weight: 500;
  font-size: 15px;
  color: var(--niebla);
}
.nav-links a:hover {
  color: var(--papel);
}
@media (max-width: 640px) {
  .nav-links {
    display: none;
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 24px;
  border-radius: 16px;
  border: 0;
  cursor: pointer;
  transition:
    transform 0.12s ease,
    box-shadow 0.12s ease;
}
.btn:active {
  transform: scale(0.97);
}
.btn-coral {
  background: var(--coral);
  color: var(--papel);
  box-shadow: 0 10px 30px rgba(255, 77, 77, 0.35);
}
.btn-ghost {
  background: transparent;
  color: var(--papel);
  border: 1.5px solid var(--line);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  text-align: center;
  padding: 90px 0 70px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: -10% 10% auto 10%;
  height: 480px;
  background:
    radial-gradient(closest-side, rgba(255, 77, 77, 0.22), transparent),
    radial-gradient(closest-side, rgba(255, 210, 63, 0.18), transparent) 70% 30%;
  filter: blur(20px);
  z-index: -1;
}
.hero .heromark {
  width: 104px;
  height: 104px;
  display: block;
  margin: 0 auto 26px;
  filter: drop-shadow(0 14px 30px rgba(0, 0, 0, 0.5));
}
.hero h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(56px, 12vw, 120px);
  line-height: 0.95;
  letter-spacing: -3px;
}
.hero .tagline {
  font-size: clamp(18px, 3.5vw, 24px);
  color: var(--niebla);
  margin: 18px auto 8px;
  max-width: 620px;
}
.hero .sub {
  color: var(--menta);
  font-weight: 600;
  margin-bottom: 34px;
}
.cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 16px;
  background: var(--tinta-2);
  border: 1px solid var(--line);
  font-weight: 600;
}
.badge small {
  display: block;
  color: var(--niebla);
  font-size: 11px;
  font-weight: 500;
}

/* ---------- Sections ---------- */
section {
  padding: 64px 0;
}
.eyebrow {
  color: var(--coral);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 10px;
}
h2.section-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(30px, 5vw, 44px);
  letter-spacing: -1px;
  margin-bottom: 12px;
}
.section-lead {
  color: var(--niebla);
  max-width: 600px;
  margin-bottom: 36px;
}

.grid {
  display: grid;
  gap: 18px;
}
.grid.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid.cols-2 {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 820px) {
  .grid.cols-3 {
    grid-template-columns: 1fr;
  }
  .grid.cols-2 {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--tinta-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}
.card .ico {
  font-size: 30px;
  margin-bottom: 14px;
}
.card h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 8px;
}
.card p {
  color: var(--niebla);
  font-size: 15px;
}
.card.accent-coral {
  border-color: rgba(255, 77, 77, 0.4);
}
.card.accent-limon {
  border-color: rgba(255, 210, 63, 0.4);
}
.card.accent-menta {
  border-color: rgba(33, 212, 168, 0.4);
}
.card.accent-cobalto {
  border-color: rgba(77, 107, 255, 0.4);
}

/* packs */
.packs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.pack {
  padding: 12px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  font-weight: 600;
  font-size: 15px;
}
.pack .free {
  color: var(--menta);
  font-size: 12px;
  margin-left: 6px;
}
.pack .paid {
  color: var(--limon);
  font-size: 12px;
  margin-left: 6px;
}

/* ---------- Footer ---------- */
footer {
  border-top: 1px solid var(--line);
  padding: 48px 0 60px;
  color: var(--niebla);
  font-size: 14px;
}
.foot {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.foot-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.foot-links a:hover {
  color: var(--papel);
}

/* ---------- Legal pages ---------- */
.legal {
  padding: 56px 0 80px;
}
.doc {
  background: var(--papel);
  color: var(--tinta);
  border-radius: 28px;
  padding: clamp(28px, 5vw, 56px);
  max-width: 820px;
  margin: 0 auto;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}
.doc h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(30px, 6vw, 44px);
  letter-spacing: -1px;
  margin-bottom: 6px;
}
.doc .updated {
  color: var(--niebla);
  font-size: 14px;
  margin-bottom: 28px;
}
.doc h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 22px;
  margin: 30px 0 10px;
  color: var(--tinta);
}
.doc p,
.doc li {
  color: #3a3350;
  margin-bottom: 12px;
}
.doc ul {
  padding-left: 22px;
}
.doc a {
  color: var(--cobalto);
  font-weight: 600;
}
.doc .back {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--cobalto);
  font-weight: 600;
}
