/* ============================================================
   DIZAGA — Estudio de productos digitales
   ============================================================ */

:root {
  --bg: #ffffff;
  --bg-alt: #f6f6f3;
  --bg-card: #ffffff;
  --ink: #0a0a0a;
  --ink-soft: #57574f;
  --ink-faint: #8c8c82;
  --line: #e6e6e0;
  --line-strong: #d6d6ce;

  --accent: #ff5a36;
  --accent-ink: #ffffff;
  --accent-soft: #fff1ec;

  --dark: #0a0a0a;
  --dark-alt: #161613;
  --dark-line: #2c2c27;
  --on-dark: #f4f4ef;
  --on-dark-soft: #a9a99e;

  --c-invitacion: #e8577a;
  --c-invitacion-soft: #fdeef1;
  --c-qr: #7a5cff;
  --c-qr-soft: #f1eeff;
  --c-linkbio: #12b3a6;
  --c-linkbio-soft: #e9fbf8;
  --c-politica: #e0ab3c;

  --font-display: "Space Grotesk", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  --container: 1220px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0;
}

p {
  margin: 0;
}

button {
  font-family: inherit;
  cursor: pointer;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 900px) {
  .container {
    padding: 0 40px;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

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

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  margin-bottom: 18px;
}

.section-head p {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

section {
  position: relative;
  padding: 88px 0;
}

@media (min-width: 900px) {
  section {
    padding: 128px 0;
  }
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  border: 1.5px solid transparent;
  transition: transform 0.35s var(--ease), background-color 0.25s var(--ease),
    border-color 0.25s var(--ease), color 0.25s var(--ease);
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: var(--ink);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent);
}

.btn-accent {
  background: var(--accent);
  color: #fff;
}

.btn-accent:hover {
  background: var(--ink);
}

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

.btn-ghost:hover {
  border-color: var(--ink);
}

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

.btn-ghost-light:hover {
  border-color: var(--on-dark);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.88rem;
}

.btn-disabled,
.btn[aria-disabled="true"] {
  opacity: 0.45;
  pointer-events: none;
}

.btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s var(--ease);
}

.btn:hover svg {
  transform: translateX(3px);
}

/* ---------- Reveal on scroll ---------- */

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

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-group .reveal:nth-child(2) {
  transition-delay: 0.08s;
}
.reveal-group .reveal:nth-child(3) {
  transition-delay: 0.16s;
}
.reveal-group .reveal:nth-child(4) {
  transition-delay: 0.24s;
}

/* ============================================================
   HEADER
   ============================================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background-color 0.35s var(--ease), border-color 0.35s var(--ease),
    padding 0.35s var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  padding: 12px 0;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  color: var(--ink);
}

.logo svg {
  height: 22px;
  width: auto;
}

.main-nav {
  display: none;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 34px;
}

.main-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
  transition: color 0.25s var(--ease);
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--ink);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s var(--ease);
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-actions .btn {
  display: none;
}

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--line-strong);
  background: transparent;
  position: relative;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.nav-toggle span::before {
  position: absolute;
  transform: translateY(-5px);
}

.nav-toggle span::after {
  position: absolute;
  transform: translateY(5px);
}

.nav-toggle[aria-expanded="true"] span {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] span::before {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span::after {
  transform: rotate(-45deg);
}

@media (min-width: 900px) {
  .main-nav {
    display: block;
  }
  .header-actions .btn {
    display: inline-flex;
  }
  .nav-toggle {
    display: none;
  }
}

/* Mobile nav panel */

.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 90;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
}

.mobile-nav.is-open {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav a {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  padding: 10px 0;
  display: inline-block;
}

.mobile-nav .btn {
  margin-top: 28px;
  align-self: flex-start;
}

@media (min-width: 900px) {
  .mobile-nav {
    display: none;
  }
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  padding: 150px 0 90px;
  overflow: hidden;
}

@media (min-width: 900px) {
  .hero {
    padding: 190px 0 120px;
  }
}

.hero .container {
  display: grid;
  gap: 56px;
}

@media (min-width: 1050px) {
  .hero .container {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 24px;
  }
}

.hero-copy .eyebrow {
  margin-bottom: 22px;
}

.hero-wordmark {
  font-size: clamp(3rem, 11vw, 6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.95;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  font-weight: 500;
  color: var(--ink-soft);
  margin-top: 14px;
}

.hero-copy p.hero-desc {
  margin-top: 26px;
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 480px;
}

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

/* Hero visual: abstract stacked product mockups */

.hero-visual {
  position: relative;
  height: 380px;
}

@media (min-width: 640px) {
  .hero-visual {
    height: 440px;
  }
}

.mock-card {
  position: absolute;
  width: 180px;
  border-radius: var(--radius-md);
  padding: 18px;
  box-shadow: 0 30px 60px -20px rgba(10, 10, 10, 0.25);
  animation: float 7s ease-in-out infinite;
}

.mock-card .mock-dot-row {
  display: flex;
  gap: 5px;
  margin-bottom: 14px;
}

.mock-card .mock-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.35;
}

.mock-card .mock-line {
  height: 8px;
  border-radius: 5px;
  background: currentColor;
  opacity: 0.14;
  margin-bottom: 8px;
}

.mock-card .mock-line.w-60 {
  width: 60%;
}
.mock-card .mock-line.w-80 {
  width: 80%;
}
.mock-card .mock-line.w-40 {
  width: 40%;
}

.mock-card .mock-chip {
  margin-top: 14px;
  display: inline-flex;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.mock-1 {
  top: 6%;
  left: 2%;
  background: var(--c-invitacion-soft);
  color: var(--c-invitacion);
  transform: rotate(-7deg);
  animation-delay: 0s;
}

.mock-1 .mock-chip {
  background: var(--c-invitacion);
  color: #fff;
}

.mock-2 {
  top: 30%;
  right: 0;
  background: var(--c-qr-soft);
  color: var(--c-qr);
  transform: rotate(5deg);
  width: 168px;
  animation-delay: 1.4s;
}

.mock-2 .mock-chip {
  background: var(--c-qr);
  color: #fff;
}

.mock-3 {
  bottom: 2%;
  left: 20%;
  background: var(--c-linkbio-soft);
  color: var(--c-linkbio);
  transform: rotate(-3deg);
  animation-delay: 2.8s;
}

.mock-3 .mock-chip {
  background: var(--c-linkbio);
  color: #fff;
}

.hero-visual .qr-shape {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: currentColor;
  opacity: 0.9;
  margin-bottom: 12px;
  position: relative;
}

.hero-visual .qr-shape::before {
  content: "";
  position: absolute;
  inset: 9px;
  background: var(--c-qr-soft);
  border-radius: 3px;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(var(--r, 0deg));
  }
  50% {
    transform: translateY(-14px) rotate(var(--r, 0deg));
  }
}

.mock-1 {
  --r: -7deg;
}
.mock-2 {
  --r: 5deg;
}
.mock-3 {
  --r: -3deg;
}

/* ============================================================
   QUÉ HACEMOS — categorías
   ============================================================ */

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

@media (min-width: 640px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .category-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.category-card {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), background 0.4s var(--ease);
}

.category-card:hover {
  transform: translateY(-6px);
  background: #fff;
  border-color: var(--line-strong);
}

.category-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--ink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.category-icon svg {
  width: 20px;
  height: 20px;
}

.category-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.category-card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.category-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.category-tags span {
  font-size: 0.75rem;
  color: var(--ink-faint);
  background: #fff;
  border: 1px solid var(--line);
  padding: 4px 10px;
  border-radius: 999px;
}

/* ============================================================
   PRODUCTOS
   ============================================================ */

.products {
  background: var(--bg-alt);
}

.product-list {
  display: grid;
  gap: 24px;
}

.product-card {
  --p-color: var(--accent);
  --p-soft: var(--accent-soft);
  display: grid;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 40px 70px -35px rgba(10, 10, 10, 0.28);
}

@media (min-width: 900px) {
  .product-card {
    grid-template-columns: 1fr 1fr;
  }
  .product-card.reverse {
    grid-template-columns: 1fr 1fr;
  }
  .product-card.reverse .product-visual {
    order: 2;
  }
}

.product-visual {
  background: var(--p-soft);
  padding: 48px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  position: relative;
}

.product-body {
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 900px) {
  .product-body {
    padding: 56px 48px;
  }
}

.product-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  width: fit-content;
  margin-bottom: 18px;
}

.product-status.status-live {
  background: #e6f7ec;
  color: #1c8a4a;
}

.product-status.status-soon {
  background: #f1f1ec;
  color: var(--ink-soft);
}

.product-status.status-live::before,
.product-status.status-soon::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.product-name {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 6px;
}

.product-name span {
  color: var(--p-color);
}

.product-tagline {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin-bottom: 18px;
}

.product-desc {
  color: var(--ink-soft);
  margin-bottom: 22px;
}

.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.product-features span {
  font-size: 0.8rem;
  color: var(--ink);
  background: var(--bg-alt);
  border: 1px solid var(--line);
  padding: 5px 12px;
  border-radius: 999px;
}

.product-card .btn-accent {
  background: var(--p-color);
}

.product-card .btn-accent:hover {
  background: var(--ink);
}

/* Product visual mockups */

.pv-frame {
  width: 100%;
  max-width: 260px;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: 0 24px 48px -24px rgba(10, 10, 10, 0.35);
}

.pv-frame .pv-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.pv-frame .pv-badge {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: var(--p-color);
}

.pv-frame .pv-line {
  height: 9px;
  border-radius: 5px;
  background: var(--bg-alt);
  margin-bottom: 9px;
}

.pv-frame .pv-line.w-70 {
  width: 70%;
}
.pv-frame .pv-line.w-50 {
  width: 50%;
}
.pv-frame .pv-line.w-90 {
  width: 90%;
}

.pv-frame .pv-card {
  margin-top: 16px;
  border-radius: 12px;
  background: var(--p-soft);
  padding: 16px;
  border: 1px solid var(--line);
}

.pv-frame .pv-btn {
  margin-top: 16px;
  height: 34px;
  border-radius: 999px;
  background: var(--p-color);
  opacity: 0.92;
}

/* QR visual specific */

.pv-qr {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  width: 100px;
  margin: 0 auto 18px;
}

.pv-qr span {
  aspect-ratio: 1;
  background: var(--p-color);
  border-radius: 2px;
}

.pv-qr span.off {
  background: transparent;
}

/* Link en bio visual */

.pv-links .pv-link-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  margin-bottom: 10px;
}

.pv-links .pv-link-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--p-color);
  flex-shrink: 0;
}

.pv-links .pv-link-row .pv-line {
  margin: 0;
  flex: 1;
}

/* ============================================================
   POLÍTICA
   ============================================================ */

.politica {
  background: var(--dark);
  color: var(--on-dark);
}

.politica .eyebrow {
  color: var(--c-politica);
}

.politica .section-head p {
  color: var(--on-dark-soft);
}

.politica-grid {
  display: grid;
  gap: 40px;
  align-items: center;
}

@media (min-width: 950px) {
  .politica-grid {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
}

.politica-copy p {
  color: var(--on-dark-soft);
  margin-bottom: 24px;
  font-size: 1.05rem;
}

.politica-features {
  display: grid;
  gap: 14px;
  margin-bottom: 32px;
}

.politica-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--on-dark);
  font-size: 0.98rem;
}

.politica-features svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--c-politica);
}

.politica-visual {
  background: var(--dark-alt);
  border: 1px solid var(--dark-line);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.pv-sim-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.pv-sim-header span:first-child {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--on-dark);
  font-size: 0.9rem;
}

.pv-sim-header span:last-child {
  font-size: 0.72rem;
  color: var(--c-politica);
  border: 1px solid rgba(224, 171, 60, 0.4);
  padding: 4px 10px;
  border-radius: 999px;
}

.pv-bars {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  height: 130px;
}

.pv-bars .bar {
  flex: 1;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, var(--c-politica), rgba(224, 171, 60, 0.35));
}

.pv-sim-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 18px;
}

.pv-sim-footer .pv-line {
  background: var(--dark-line);
  width: 40px;
}

/* ============================================================
   CONTENIDO DIGITAL
   ============================================================ */

.contenido .section-head {
  margin-bottom: 36px;
}

.content-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 700px) {
  .content-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.content-tile {
  aspect-ratio: 3/4;
  border-radius: var(--radius-sm);
  background: var(--bg-alt);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 14px;
  transition: transform 0.4s var(--ease);
}

.content-tile:hover {
  transform: translateY(-4px);
}

.content-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--tile-grad);
  opacity: 0.9;
}

.content-tile .play {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
}

.content-tile .play svg {
  width: 10px;
  height: 10px;
  color: var(--ink);
}

.content-tile span.label {
  position: relative;
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  font-family: var(--font-display);
}

.tile-1 {
  --tile-grad: linear-gradient(160deg, #ff5a36, #c23a1f);
}
.tile-2 {
  --tile-grad: linear-gradient(160deg, #7a5cff, #4025b0);
}
.tile-3 {
  --tile-grad: linear-gradient(160deg, #12b3a6, #0a6e66);
}
.tile-4 {
  --tile-grad: linear-gradient(160deg, #e0ab3c, #a9761c);
}

/* ============================================================
   PROYECTOS
   ============================================================ */

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

@media (min-width: 640px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1050px) {
  .projects-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.project-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  display: flex;
  flex-direction: column;
}

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

.project-thumb {
  aspect-ratio: 4/3;
  background: var(--thumb-grad, var(--bg-alt));
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-thumb span.mono {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: -0.02em;
}

.pt-1 {
  --thumb-grad: linear-gradient(150deg, #ffd9cb, #ff5a36);
}
.pt-2 {
  --thumb-grad: linear-gradient(150deg, #f3e0ad, #e0ab3c);
}
.pt-3 {
  --thumb-grad: linear-gradient(150deg, #e3ddff, #7a5cff);
}
.pt-4 {
  --thumb-grad: linear-gradient(150deg, #c9f3ee, #12b3a6);
}
.pt-5 {
  --thumb-grad: linear-gradient(150deg, #f1c9d6, #e8577a);
}

.project-thumb .pt-1-label,
.project-thumb span.mono {
  color: #fff;
}

.project-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.project-category {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.project-body h3 {
  font-size: 1.15rem;
}

.project-body p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  flex: 1;
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 4px;
}

.project-link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s var(--ease);
}

.project-link:hover svg {
  transform: translateX(3px);
}

.project-link.is-muted {
  color: var(--ink-faint);
  pointer-events: none;
}

/* ============================================================
   SOBRE DIZAGA
   ============================================================ */

.about .container {
  display: grid;
  gap: 40px;
}

@media (min-width: 950px) {
  .about .container {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
  }
}

.about h2 {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
}

.about-copy p {
  font-size: 1.15rem;
  color: var(--ink-soft);
  margin-bottom: 22px;
}

.about-copy p:first-child {
  font-size: 1.3rem;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 500;
}

/* ============================================================
   CTA FINAL
   ============================================================ */

.cta-final {
  background: var(--dark);
  color: var(--on-dark);
  text-align: center;
}

.cta-final h2 {
  font-size: clamp(2rem, 6vw, 3.4rem);
  max-width: 780px;
  margin: 0 auto 22px;
}

.cta-final p {
  color: var(--on-dark-soft);
  font-size: 1.1rem;
  max-width: 480px;
  margin: 0 auto 40px;
}

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

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: var(--dark);
  color: var(--on-dark);
  border-top: 1px solid var(--dark-line);
  padding: 64px 0 32px;
}

.footer-top {
  display: grid;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--dark-line);
  margin-bottom: 28px;
}

@media (min-width: 800px) {
  .footer-top {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
}

.footer-brand .logo {
  color: var(--on-dark);
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--on-dark-soft);
  max-width: 320px;
  margin-bottom: 20px;
}

.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--on-dark);
  border-bottom: 1px solid var(--dark-line);
  padding-bottom: 4px;
}

.footer-contact-link:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.footer-col h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--on-dark-soft);
  margin-bottom: 18px;
  font-weight: 600;
}

.footer-col ul {
  display: grid;
  gap: 12px;
}

.footer-col a {
  color: var(--on-dark-soft);
  font-size: 0.95rem;
  transition: color 0.25s var(--ease);
}

.footer-col a:hover {
  color: var(--on-dark);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--on-dark-soft);
}

@media (min-width: 700px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  color: var(--on-dark-soft);
}

.footer-social a:hover {
  color: var(--on-dark);
}
