/* ============================================================
   VARIABLES & RESET
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Outfit:wght@300;400;500;600&display=swap');

:root {
  --nav-h: 68px;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Outfit', sans-serif;

  --bg-void:  #080808;
  --bg-dark:  #0f0d0b;
  --bg-warm:  #13100c;
  --bg-cream: #f0ece5;
  --bg-cream2:#e8e3da;

  --txt-light: #ffffff;
  --txt-muted: rgba(255,255,255,0.5);
  --txt-dark:  #0d0d0d;
  --txt-dark2: rgba(13,13,13,0.55);

  --accent:    #c4935a;
  --accent2:   #8b6340;

  --border-l: rgba(255,255,255,0.1);
  --border-d: rgba(0,0,0,0.08);

  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--bg-void);
  color: var(--txt-light);
  overflow-x: hidden;
  cursor: default;
}

img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ============================================================
   NAV — FLOATING + PILL SLIDER + AUTO THEME
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.5s var(--ease-smooth),
              border-color 0.5s var(--ease-smooth);
}

.nav::after {
  content: '';
  position: absolute;
  inset: 0;
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  z-index: -1;
  transition: opacity 0.4s ease;
}

.nav[data-theme="dark"] {
  border-bottom: 1px solid var(--border-l);
}
.nav[data-theme="dark"]::after { background: rgba(8,8,8,0.75); }
.nav[data-theme="dark"] .nav-logo-text,
.nav[data-theme="dark"] .nav-btn { color: var(--txt-light); }
.nav[data-theme="dark"] .nav-cta {
  color: var(--txt-dark);
  background: var(--txt-light);
}
.nav[data-theme="dark"] .nav-pill { background: rgba(255,255,255,0.14); }
.nav[data-theme="dark"] .nav-logo-icon path { fill: white; }

.nav[data-theme="light"] {
  border-bottom: 1px solid var(--border-d);
}
.nav[data-theme="light"]::after { background: rgba(240,236,229,0.85); }
.nav[data-theme="light"] .nav-logo-text,
.nav[data-theme="light"] .nav-btn { color: var(--txt-dark); }
.nav[data-theme="light"] .nav-cta {
  color: var(--txt-light);
  background: var(--txt-dark);
}
.nav[data-theme="light"] .nav-pill { background: rgba(0,0,0,0.07); }
.nav[data-theme="light"] .nav-logo-icon path { fill: #0d0d0d; }

.nav-inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-logo-icon { width: 32px; height: 32px; }
.nav-logo-icon path { transition: fill 0.4s ease; }

.nav-logo-text {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 0.4s ease;
}

.nav-links {
  position: relative;
  display: flex;
  align-items: center;
  padding: 4px;
  gap: 2px;
}

.nav-pill {
  position: absolute;
  top: 4px;
  height: calc(100% - 8px);
  border-radius: 100px;
  pointer-events: none;
  will-change: left, width;
  transition: background 0.4s ease;
}

.nav-btn {
  position: relative;
  z-index: 1;
  padding: 8px 16px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: color 0.4s ease, opacity 0.3s ease;
  opacity: 0.7;
}

.nav-btn:hover { opacity: 1; }
.nav-btn.active { opacity: 1; font-weight: 500; }

.nav-cta {
  flex-shrink: 0;
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.4s ease, color 0.4s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,0.2); }

/* ============================================================
   SECTION SHARED
   ============================================================ */
.section { position: relative; overflow: hidden; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: var(--bg-void);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 900px; height: 700px;
  background: radial-gradient(ellipse at center,
    rgba(160,110,60,0.18) 0%,
    rgba(100,70,40,0.08) 40%,
    transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -52%);
  pointer-events: none;
}

.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 180px;
  pointer-events: none;
  mix-blend-mode: overlay;
}

.hero-stage {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 65%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0;
  pointer-events: none;
}

.hero-pillar {
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, #1e1812 0%, #0f0d0a 100%);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.hero-pillar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.03) 0%, transparent 50%, rgba(0,0,0,0.2) 100%);
}

.hero-vase {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  padding: 0 32px;
  padding-top: var(--nav-h);
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 110px);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--txt-light);
  margin-bottom: 40px;
  opacity: 0;
}

.hero-title em {
  font-style: italic;
  color: rgba(255,255,255,0.7);
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: var(--txt-light);
  color: var(--txt-dark);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: transform 0.25s var(--ease-spring), box-shadow 0.25s ease;
  opacity: 0;
}

.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
}

.hero-scroll-hint span {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
  40% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  60% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

.hero-tabs {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border-top: 1px solid var(--border-l);
  background: rgba(8,8,8,0.6);
  backdrop-filter: blur(10px);
}

.hero-tab {
  padding: 16px 28px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: color 0.3s ease;
  position: relative;
}
.hero-tab::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--txt-light);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.hero-tab:hover { color: white; }
.hero-tab:hover::after { transform: scaleX(0.6); }

/* ============================================================
   PLANTILLAS SECTION — LIGHT
   ============================================================ */
.s-plantillas {
  background: var(--bg-cream);
  padding: 100px 0 80px;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 48px;
}

.s-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 60px;
}

.s-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--txt-dark);
  max-width: 480px;
}

.s-title em { font-style: italic; color: var(--accent2); }

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border: 1.5px solid var(--txt-dark);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--txt-dark);
  white-space: nowrap;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
  align-self: flex-start;
  margin-top: 8px;
}
.btn-outline-dark:hover { background: var(--txt-dark); color: white; transform: translateY(-2px); }

.btn-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.6;
}

.templates-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.tpl-card {
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-cream2);
  position: relative;
  cursor: pointer;
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s ease;
}

.tpl-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

.tpl-card-inner {
  padding: 0;
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}

.tpl-mock {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.tpl-mock-nav {
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  background: rgba(255,255,255,0.5);
}

.tpl-mock-logo {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
}

.tpl-mock-links { display: flex; gap: 16px; }

.tpl-mock-link {
  width: 28px; height: 5px;
  border-radius: 3px;
  background: rgba(0,0,0,0.15);
}

.tpl-mock-body {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tpl-mock-headline {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  text-transform: uppercase;
  color: var(--txt-dark);
  margin-bottom: 8px;
}

.tpl-mock-sub {
  font-size: 11px;
  color: var(--txt-dark2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.tpl-card-meta {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-d);
}

.tpl-card-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--txt-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.tpl-arrow {
  font-size: 16px;
  color: var(--txt-dark2);
  transition: transform 0.3s var(--ease-spring);
}
.tpl-card:hover .tpl-arrow { transform: translateX(4px); }

/* ============================================================
   DISEÑO INTELIGENTE SECTION — DARK
   ============================================================ */
.s-diseno {
  background: var(--bg-dark);
  padding: 120px 0;
}

.s-diseno .s-title { color: var(--txt-light); max-width: 500px; }
.s-diseno .s-title em { color: rgba(255,255,255,0.45); }

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  white-space: nowrap;
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease, transform 0.2s ease;
  align-self: flex-start;
  margin-top: 8px;
}
.btn-outline-light:hover {
  border-color: white;
  color: white;
  background: rgba(255,255,255,0.06);
  transform: translateY(-2px);
}

.diseno-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 70px;
}

.diseno-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-l);
  border-radius: 16px;
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease, transform 0.4s var(--ease-spring);
}

.diseno-card:hover {
  background: rgba(255,255,255,0.07);
  transform: translateY(-4px);
}

.diseno-card::before {
  content: '';
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,147,90,0.1), transparent 70%);
  top: -50px; right: -50px;
  pointer-events: none;
}

.diseno-card-num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 24px;
}

.diseno-card-icon {
  width: 48px; height: 48px;
  margin-bottom: 20px;
  opacity: 0.7;
}

.diseno-card-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.25;
  color: var(--txt-light);
  margin-bottom: 12px;
}

.diseno-card-desc {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.45);
  font-weight: 300;
}

.diseno-mockup {
  margin-top: 70px;
  border-radius: 16px;
  border: 1px solid var(--border-l);
  overflow: hidden;
  background: #1a1714;
  padding: 24px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 20px;
  align-items: center;
}

.diseno-mockup-controls {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mockup-control-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 8px;
}

.color-swatches { display: flex; gap: 8px; }

.swatch {
  width: 28px; height: 28px;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 2px solid transparent;
}
.swatch:hover { transform: scale(1.15); }
.swatch.active { border-color: white; box-shadow: 0 0 0 2px rgba(255,255,255,0.3); }

.mockup-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.toggle-pill {
  width: 44px; height: 24px;
  border-radius: 100px;
  background: rgba(255,255,255,0.15);
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
}
.toggle-pill.on { background: var(--accent); }
.toggle-thumb {
  position: absolute;
  top: 3px; left: 3px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: white;
  transition: transform 0.3s var(--ease-spring);
}
.toggle-pill.on .toggle-thumb { transform: translateX(20px); }

.diseno-mockup-preview {
  background: #232018;
  border-radius: 12px;
  padding: 20px;
  min-height: 220px;
  position: relative;
  overflow: hidden;
  transition: background-color 0.5s ease;
}

.preview-nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.preview-logo {
  font-family: var(--font-display);
  font-size: 16px;
  color: rgba(255,255,255,0.7);
}

.preview-links { display: flex; gap: 16px; }
.preview-link { font-size: 12px; color: rgba(255,255,255,0.4); }

.preview-btn {
  padding: 6px 14px;
  border-radius: 3px;
  background: rgba(255,255,255,0.15);
  font-size: 11px;
  color: white;
}

.preview-hero-text {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  line-height: 1.1;
  margin-bottom: 10px;
}

.preview-sub { font-size: 13px; color: rgba(255,255,255,0.3); }

/* ============================================================
   HERRAMIENTAS CREATIVAS — WARM DARK
   ============================================================ */
.s-herramientas {
  background: #13100c;
  padding: 120px 0;
}

.s-herramientas .s-title { color: var(--txt-light); max-width: 520px; }

.herr-bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
  margin-top: 70px;
}

.herr-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: background 0.35s ease, transform 0.4s var(--ease-spring), border-color 0.35s ease;
}
.herr-card:hover {
  background: rgba(255,255,255,0.055);
  border-color: rgba(255,255,255,0.12);
  transform: translateY(-3px);
}

.herr-card-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.herr-card-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.25;
  color: var(--txt-light);
  margin-bottom: 12px;
}

.herr-card-desc {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.42);
  font-weight: 300;
  max-width: 320px;
}

.herr-grid-visual {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: repeat(5, 20px);
  gap: 4px;
  opacity: 0.3;
}
.herr-grid-cell {
  background: rgba(255,255,255,0.3);
  border-radius: 2px;
}
.herr-grid-selected {
  background: rgba(196,147,90,0.8) !important;
  opacity: 1;
}

.layouts-visual {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.layout-row {
  display: flex;
  gap: 6px;
  align-items: flex-start;
}

.layout-block {
  border-radius: 4px;
  background: rgba(255,255,255,0.1);
  cursor: pointer;
  transition: background 0.2s ease;
}
.layout-block:hover { background: rgba(255,255,255,0.2); }
.layout-block.accent { background: rgba(196,147,90,0.3); }

.herr-card--wide { grid-column: span 2; }

.ai-text-visual {
  margin-top: 24px;
  background: rgba(0,0,0,0.2);
  border-radius: 8px;
  padding: 16px 20px;
}

.ai-text-line {
  height: 10px;
  border-radius: 6px;
  background: rgba(255,255,255,0.1);
  margin-bottom: 8px;
}
.ai-text-line:nth-child(1) { width: 90%; }
.ai-text-line:nth-child(2) { width: 75%; }
.ai-text-line:nth-child(3) { width: 85%; }
.ai-text-cursor {
  display: inline-block;
  width: 2px; height: 14px;
  background: var(--accent);
  animation: blink 1s step-end infinite;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0; } }

.responsive-visual {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  align-items: flex-end;
}

.resp-desktop, .resp-tablet, .resp-phone {
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}
.resp-desktop { flex: 1; height: 80px; }
.resp-tablet { width: 70px; height: 60px; }
.resp-phone { width: 35px; height: 55px; }

.resp-screen {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  display: flex;
  flex-direction: column;
  padding: 4px;
  gap: 3px;
}
.resp-bar { height: 4px; border-radius: 2px; background: rgba(255,255,255,0.12); }
.resp-bar:nth-child(2) { width: 70%; }

/* ============================================================
   SEO SECTION — BLACK
   ============================================================ */
.s-seo {
  background: #000000;
  padding: 120px 0;
}

.s-seo .s-title { color: var(--txt-light); max-width: 600px; }

.seo-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-l);
  border: 1px solid var(--border-l);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 70px;
}

.seo-col {
  background: #000;
  padding: 44px 36px;
  position: relative;
  transition: background 0.3s ease;
}
.seo-col:hover { background: rgba(255,255,255,0.03); }

.seo-col-icon {
  width: 40px; height: 40px;
  margin-bottom: 24px;
  opacity: 0.6;
}

.seo-col-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--txt-light);
  margin-bottom: 14px;
}

.seo-col-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.4);
  font-weight: 300;
}

/* ============================================================
   CÓMO DISEÑAR — BLACK
   ============================================================ */
.s-como {
  background: #000000;
  padding: 120px 0;
  border-top: 1px solid var(--border-l);
}

.como-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.como-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--txt-light);
}

.como-steps { display: flex; flex-direction: column; }

.como-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border-l);
  opacity: 0.5;
  transition: opacity 0.3s ease;
}
.como-step:last-child { border-bottom: none; }
.como-step:hover { opacity: 1; }

.como-step-num {
  font-family: var(--font-display);
  font-size: 14px;
  color: rgba(255,255,255,0.3);
  padding-top: 2px;
}

.como-step-text {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
}

.como-step-text a {
  text-decoration: underline;
  text-underline-offset: 3px;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s ease;
}
.como-step-text a:hover { color: white; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.s-cta {
  background: var(--bg-warm);
  padding: 120px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.s-cta::before {
  content: '';
  position: absolute;
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,147,90,0.07), transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 80px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--txt-light);
  margin-bottom: 40px;
  position: relative;
}

.cta-title em {
  font-style: italic;
  color: rgba(255,255,255,0.5);
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 48px;
  background: var(--txt-light);
  color: var(--txt-dark);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 4px;
  position: relative;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s ease;
}
.cta-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #0d0b09;
  border-top: 1px solid var(--border-l);
  padding: 80px 0 40px;
}

.footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
}

.footer-top {
  display: grid;
  grid-template-columns: 260px repeat(4, 1fr);
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border-l);
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  margin-top: 16px;
  font-weight: 300;
}

.footer-col-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}

.footer-links li a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  font-weight: 300;
  transition: color 0.2s ease;
}
.footer-links li a:hover { color: rgba(255,255,255,0.85); }
.footer-links li a strong { font-weight: 500; color: rgba(255,255,255,0.65); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

.footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-legal a {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  transition: color 0.2s ease;
}
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

.footer-copy { font-size: 12px; color: rgba(255,255,255,0.25); }

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-smooth), transform 0.7s var(--ease-smooth);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .diseno-grid { grid-template-columns: 1fr 1fr; }
  .diseno-mockup { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: repeat(3, 1fr); }
  .footer-brand { grid-column: span 3; }
  .como-layout { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .templates-grid { grid-template-columns: 1fr; }
  .herr-bento { grid-template-columns: 1fr; }
  .herr-card--wide { grid-column: span 1; }
  .seo-cols { grid-template-columns: 1fr; }
  .diseno-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .s-header { flex-direction: column; }
}
