/* CineGD — design system editorial premium */
:root {
  --primary: #f80095;
  --primary-rgb: 248, 0, 149;
  --primary-soft: rgba(var(--primary-rgb), 0.12);
  --primary-glow: rgba(var(--primary-rgb), 0.35);
  --ink: #0d0d12;
  --ink-muted: #4a4a55;
  --ink-soft: #6b6b78;
  --surface: #ffffff;
  --surface-elevated: #fafafa;
  --border: rgba(13, 13, 18, 0.08);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 1px 2px rgba(13, 13, 18, 0.04);
  --shadow-md: 0 8px 30px rgba(13, 13, 18, 0.08);
  --shadow-lg: 0 24px 60px rgba(13, 13, 18, 0.12);
  --font-sans: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --header-h: 72px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --transition: 0.35s var(--ease-out);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
  color: #d1007f;
}

:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Orbs de fundo */
.bg-orbs {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.bg-orbs::before,
.bg-orbs::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.45;
  animation: orb-float 18s ease-in-out infinite;
}

.bg-orbs::before {
  width: min(55vw, 520px);
  height: min(55vw, 520px);
  background: radial-gradient(
    circle,
    rgba(var(--primary-rgb), 0.35) 0%,
    transparent 70%
  );
  top: -8%;
  right: -10%;
}

.bg-orbs::after {
  width: min(40vw, 380px);
  height: min(40vw, 380px);
  background: radial-gradient(
    circle,
    rgba(var(--primary-rgb), 0.18) 0%,
    transparent 70%
  );
  bottom: 10%;
  left: -5%;
  animation-delay: -7s;
}

@keyframes orb-float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(2%, 3%) scale(1.05);
  }
}

.page-wrap {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--transition), border-color var(--transition);
}

.site-header.is-scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.logo-link img {
  height: 40px;
  width: auto;
}

.nav-primary {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-primary > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav-primary a {
  display: block;
  padding: 0.5rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-muted);
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}

.nav-primary a:hover,
.nav-primary a.is-active {
  color: var(--primary);
  background: var(--primary-soft);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > button {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.85rem;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-muted);
  background: transparent;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.nav-dropdown > button:hover,
.nav-dropdown.is-open > button {
  color: var(--primary);
  background: var(--primary-soft);
}

.nav-dropdown > button svg {
  width: 14px;
  height: 14px;
  transition: transform 0.25s var(--ease-out);
}

.nav-dropdown.is-open > button svg {
  transform: rotate(180deg);
}

.nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 0;
  min-width: 220px;
  padding: 0.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.25s var(--ease-out), transform 0.25s var(--ease-out),
    visibility 0.25s;
}

.nav-dropdown.is-open .nav-dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-panel a {
  padding: 0.55rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink-muted);
  border-radius: var(--radius-sm);
}

.nav-dropdown-panel a:hover {
  background: var(--surface-elevated);
  color: var(--primary);
}

.nav-dropdown-panel a.is-active {
  color: var(--primary);
  background: var(--primary-soft);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.menu-toggle:hover {
  border-color: rgba(var(--primary-rgb), 0.35);
  box-shadow: 0 0 0 3px var(--primary-soft);
}

.menu-toggle svg {
  width: 22px;
  height: 22px;
}

/* Mobile nav */
@media (max-width: 1024px) {
  .menu-toggle {
    display: flex;
  }

  .nav-primary {
    position: fixed;
    inset: var(--header-h) 0 0 0;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    padding: 1.25rem 1.25rem 2rem;
    flex-direction: column;
    align-items: stretch;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-out);
    border-top: 1px solid var(--border);
  }

  body.nav-open {
    overflow: hidden;
  }

  body.nav-open .nav-primary {
    transform: translateX(0);
  }

  .nav-primary > ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
  }

  .nav-primary a {
    padding: 0.85rem 1rem;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown > button {
    width: 100%;
    justify-content: space-between;
  }

  .nav-dropdown-panel {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0 0 0.5rem 0.5rem;
    display: none;
  }

  .nav-dropdown.is-open .nav-dropdown-panel {
    display: block;
  }
}

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out),
    background 0.25s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #ff1aad 100%);
  color: #fff;
  box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
  color: #fff;
  box-shadow: 0 8px 28px var(--primary-glow);
  transform: translateY(-1px);
}

.btn-ghost {
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.btn-ghost:hover {
  border-color: rgba(var(--primary-rgb), 0.45);
  color: var(--primary);
  box-shadow: 0 4px 20px rgba(var(--primary-rgb), 0.1);
}

.btn-sm {
  padding: 0.55rem 1.1rem;
  font-size: 0.85rem;
}

/* Hero */
.hero {
  position: relative;
  padding: clamp(3rem, 8vw, 5.5rem) 0 clamp(4rem, 10vw, 6rem);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-copy h1 {
  margin: 0 0 1.25rem;
  font-size: clamp(2.25rem, 4.5vw, 3.35rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.hero-copy h1 span {
  background: linear-gradient(135deg, var(--primary) 0%, #ff4db8 55%, #ff8ad4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  margin: 0 0 2rem;
  font-size: 1.125rem;
  color: var(--ink-muted);
  max-width: 34rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* Hero — arte abstrata (desktop: direita | mobile: abaixo do texto) */
.hero-visual {
  position: relative;
  width: 100%;
  max-width: min(100%, 440px);
  aspect-ratio: 1;
  margin-inline: auto;
  isolation: isolate;
}

.hero-art {
  position: absolute;
  inset: 0;
  overflow: visible;
  border-radius: 50%;
}

.hero-art__blob {
  position: absolute;
  filter: blur(36px);
  opacity: 0.75;
  pointer-events: none;
  will-change: transform, border-radius;
}

.hero-art__blob--1 {
  width: 78%;
  height: 78%;
  left: 6%;
  top: 10%;
  background: radial-gradient(
    ellipse 80% 70% at 40% 35%,
    rgba(var(--primary-rgb), 0.55) 0%,
    rgba(255, 120, 200, 0.15) 55%,
    transparent 72%
  );
  border-radius: 63% 37% 41% 59% / 48% 42% 58% 52%;
  animation: hero-blob-morph-a 14s ease-in-out infinite;
}

.hero-art__blob--2 {
  width: 62%;
  height: 68%;
  right: 4%;
  bottom: 8%;
  background: radial-gradient(
    ellipse 70% 80% at 60% 55%,
    rgba(255, 100, 190, 0.4) 0%,
    rgba(var(--primary-rgb), 0.12) 50%,
    transparent 68%
  );
  border-radius: 38% 62% 58% 42% / 55% 48% 52% 45%;
  animation: hero-blob-morph-b 18s ease-in-out infinite;
  animation-delay: -4s;
}

.hero-art__blob--3 {
  width: 52%;
  height: 52%;
  left: 28%;
  bottom: 18%;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(var(--primary-rgb), 0.22) 0%,
    transparent 65%
  );
  border-radius: 52% 48% 51% 49% / 47% 53% 47% 53%;
  animation: hero-blob-morph-c 11s ease-in-out infinite;
  animation-delay: -2s;
  opacity: 0.55;
}

.hero-art__svg {
  position: absolute;
  inset: 6%;
  width: calc(100% - 12%);
  height: calc(100% - 12%);
  overflow: visible;
}

.hero-art__path--a,
.hero-art__path--b,
.hero-art__path--c {
  fill: none;
}

.hero-art__path--a {
  stroke-dasharray: 520;
  stroke-dashoffset: 520;
  animation: hero-path-flow 5s ease-in-out infinite;
}

.hero-art__path--b {
  stroke-dasharray: 340;
  stroke-dashoffset: 340;
  animation-name: hero-path-flow-b;
  animation-duration: 6.5s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-delay: -1.5s;
}

.hero-art__path--c {
  stroke-dasharray: 260;
  stroke-dashoffset: 260;
  animation-name: hero-path-flow-c;
  animation-duration: 7.5s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-delay: -3s;
}

.hero-art__node {
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.2), 0 0 20px rgba(var(--primary-rgb), 0.35);
  left: 18%;
  top: 52%;
  animation: hero-node-glow 2.8s ease-in-out infinite;
  pointer-events: none;
}

.hero-art__node--b {
  left: auto;
  right: 22%;
  top: 38%;
  width: 8px;
  height: 8px;
  animation-delay: -0.9s;
  opacity: 0.9;
}

.hero-art__node--c {
  left: 52%;
  top: 22%;
  width: 7px;
  height: 7px;
  animation-delay: -1.8s;
  opacity: 0.75;
}

@keyframes hero-blob-morph-a {
  0%,
  100% {
    border-radius: 63% 37% 41% 59% / 48% 42% 58% 52%;
    transform: rotate(0deg) scale(1) translate(0, 0);
  }
  33% {
    border-radius: 42% 58% 62% 38% / 54% 46% 44% 56%;
    transform: rotate(-8deg) scale(1.04) translate(2%, -1%);
  }
  66% {
    border-radius: 55% 45% 35% 65% / 42% 58% 52% 48%;
    transform: rotate(6deg) scale(0.98) translate(-1%, 2%);
  }
}

@keyframes hero-blob-morph-b {
  0%,
  100% {
    border-radius: 38% 62% 58% 42% / 55% 48% 52% 45%;
    transform: rotate(0deg) scale(1);
  }
  50% {
    border-radius: 58% 42% 40% 60% / 44% 56% 48% 52%;
    transform: rotate(12deg) scale(1.06) translate(-3%, 2%);
  }
}

@keyframes hero-blob-morph-c {
  0%,
  100% {
    transform: scale(1) translate(0, 0);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.12) translate(4%, -3%);
    opacity: 0.65;
  }
}

@keyframes hero-path-flow {
  0% {
    stroke-dashoffset: 520;
    opacity: 0.35;
  }
  40% {
    opacity: 0.85;
  }
  55% {
    stroke-dashoffset: 0;
    opacity: 0.9;
  }
  100% {
    stroke-dashoffset: -520;
    opacity: 0.35;
  }
}

@keyframes hero-path-flow-b {
  0% {
    stroke-dashoffset: 340;
    opacity: 0.3;
  }
  45% {
    opacity: 0.75;
  }
  55% {
    stroke-dashoffset: 0;
    opacity: 0.85;
  }
  100% {
    stroke-dashoffset: -340;
    opacity: 0.3;
  }
}

@keyframes hero-path-flow-c {
  0% {
    stroke-dashoffset: 260;
    opacity: 0.25;
  }
  50% {
    opacity: 0.55;
  }
  55% {
    stroke-dashoffset: 0;
    opacity: 0.6;
  }
  100% {
    stroke-dashoffset: -260;
    opacity: 0.25;
  }
}

@keyframes hero-node-glow {
  0%,
  100% {
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.2), 0 0 18px rgba(var(--primary-rgb), 0.3);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(var(--primary-rgb), 0.08), 0 0 28px rgba(var(--primary-rgb), 0.45);
    transform: scale(1.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-art__blob,
  .hero-art__path--a,
  .hero-art__path--b,
  .hero-art__path--c,
  .hero-art__node {
    animation: none !important;
  }

  .hero-art__path--a,
  .hero-art__path--b,
  .hero-art__path--c {
    stroke-dashoffset: 0;
    opacity: 0.65;
  }
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  /* Texto e CTAs primeiro; animação depois (fluxo natural do HTML) */
  .hero-copy {
    order: 0;
  }

  .hero-visual {
    order: 1;
    max-width: min(320px, 88vw);
    aspect-ratio: 4 / 3;
    margin-top: clamp(1.75rem, 5vw, 2.5rem);
    margin-bottom: 0;
    margin-inline: auto;
  }

  .hero-art {
    border-radius: 40%;
  }

  .hero {
    padding-top: clamp(2rem, 6vw, 3rem);
    padding-bottom: clamp(2.5rem, 7vw, 4rem);
  }
}

/* Seções genéricas */
.section {
  padding: clamp(3.5rem, 7vw, 5rem) 0;
}

.section-header {
  max-width: 640px;
  margin-bottom: 2.5rem;
}

.section-eyebrow {
  display: inline-block;
  margin-bottom: 0.65rem;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary);
}

.section-title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.section-desc {
  margin: 0;
  color: var(--ink-muted);
  font-size: 1.05rem;
}

.section-header--row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem;
  max-width: none;
}

.section-header--row .section-desc {
  max-width: 480px;
}

/* Blog grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.blog-grid--loading {
  min-height: 8rem;
}

.blog-grid__status {
  grid-column: 1 / -1;
  margin: 0;
  padding: 2rem 1rem;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink-soft);
}

@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 901px) and (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.article-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out),
    border-color 0.35s ease;
}

.article-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(var(--primary-rgb), 0.2);
}

.article-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.article-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.article-card:hover .article-card__media img {
  transform: scale(1.06);
}

.article-card__body {
  padding: 1.35rem 1.35rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.article-card__cat {
  align-self: flex-start;
  margin-bottom: 0.65rem;
  padding: 0.25rem 0.65rem;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary);
  background: var(--primary-soft);
  border-radius: 999px;
}

.article-card__title {
  margin: 0 0 0.65rem;
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.article-card__title a {
  color: inherit;
}

.article-card__title a:hover {
  color: var(--primary);
}

.article-card__excerpt {
  margin: 0 0 1.25rem;
  font-size: 0.9rem;
  color: var(--ink-muted);
  flex: 1;
}

.article-card__link {
  align-self: flex-start;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.article-card__link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.25s var(--ease-out);
}

.article-card:hover .article-card__link svg {
  transform: translateX(4px);
}

/* Categorias */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

@media (max-width: 1024px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .categories-grid {
    grid-template-columns: 1fr;
  }
}

.cat-card {
  position: relative;
  padding: 1.75rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out),
    border-color 0.35s ease;
  overflow: hidden;
}

.cat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), #ff6ec7);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease-out);
}

.cat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(var(--primary-rgb), 0.25);
}

.cat-card:hover::before {
  transform: scaleX(1);
}

.cat-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border-radius: var(--radius-md);
  background: var(--primary-soft);
  color: var(--primary);
}

.cat-card__icon svg {
  width: 24px;
  height: 24px;
}

.cat-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.cat-card p {
  margin: 0 0 1.25rem;
  font-size: 0.875rem;
  color: var(--ink-muted);
  line-height: 1.55;
}

.cat-card .btn {
  width: 100%;
}

/* Valor / features */
.features-section {
  background: linear-gradient(
    180deg,
    var(--surface-elevated) 0%,
    var(--surface) 100%
  );
  border-block: 1px solid var(--border);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.feature-tile {
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.feature-tile:hover {
  border-color: rgba(var(--primary-rgb), 0.2);
  box-shadow: var(--shadow-md);
}

.feature-tile h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  font-weight: 800;
}

.feature-tile p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--ink-muted);
}

.feature-num {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

/* CTA band */
.cta-band {
  position: relative;
  padding: clamp(2.5rem, 5vw, 3.5rem);
  border-radius: var(--radius-lg);
  background: linear-gradient(
    120deg,
    rgba(var(--primary-rgb), 0.08) 0%,
    rgba(255, 255, 255, 0.95) 50%,
    rgba(var(--primary-rgb), 0.06) 100%
  );
  border: 1px solid rgba(var(--primary-rgb), 0.15);
  text-align: center;
  overflow: hidden;
}

.cta-band::after {
  content: "";
  position: absolute;
  inset: -50%;
  background: radial-gradient(
    circle at 30% 50%,
    rgba(var(--primary-rgb), 0.07) 0%,
    transparent 45%
  );
  pointer-events: none;
}

.cta-band .container {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.cta-band p {
  margin: 0 auto 1.5rem;
  max-width: 520px;
  color: var(--ink-muted);
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 40px rgba(13, 13, 18, 0.08);
  transform: translateY(110%);
  transition: transform 0.45s var(--ease-out);
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-inner {
  width: min(1120px, 100%);
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-text {
  flex: 1;
  min-width: min(100%, 280px);
  margin: 0;
  font-size: 0.875rem;
  color: var(--ink-muted);
  line-height: 1.55;
}

.cookie-text a {
  font-weight: 700;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
}

/* Footer — claro com gradiente rosa suave */
.site-footer {
  position: relative;
  margin-top: auto;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #fffbfd 35%,
    #fff8fc 65%,
    #fff0f8 100%
  );
  color: var(--ink-muted);
  padding: clamp(2.75rem, 6vw, 4.25rem) 0 1.75rem;
  overflow: hidden;
  border-top: 1px solid rgba(var(--primary-rgb), 0.08);
  box-shadow: 0 -1px 0 rgba(255, 255, 255, 0.9) inset;
}

.footer-glow-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(var(--primary-rgb), 0.25) 18%,
    var(--primary) 50%,
    rgba(var(--primary-rgb), 0.25) 82%,
    transparent 100%
  );
  opacity: 0.65;
  pointer-events: none;
}

.site-footer a {
  color: var(--primary);
}

.site-footer a:hover {
  color: #c4007a;
}

.site-footer a.footer-link {
  color: var(--ink);
}

.site-footer a.footer-link:hover {
  color: var(--primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 2.25rem) clamp(1.25rem, 3vw, 2.5rem);
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(var(--primary-rgb), 0.1);
  }
}

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand-link {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.25rem;
  transition: opacity 0.2s ease;
}

.footer-brand-link:hover {
  opacity: 0.9;
}

.footer-brand-text {
  margin: 0.85rem 0 0;
  font-size: 0.92rem;
  line-height: 1.65;
  max-width: 22rem;
  color: var(--ink-soft);
}

.footer-brand img {
  height: 38px;
  width: auto;
  opacity: 0.98;
}

.footer-col-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1.1rem;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
}

.footer-title-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(var(--primary-rgb), 0.12);
  color: var(--primary);
  flex-shrink: 0;
}

.footer-title-icon svg {
  display: block;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.footer-link {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.45rem 0.55rem;
  margin: 0 -0.55rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  transition: background 0.2s ease, color 0.2s ease;
}

.footer-link:hover {
  background: rgba(var(--primary-rgb), 0.08);
  color: var(--primary);
}

.footer-link-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-top: 1px;
  border-radius: 8px;
  background: rgba(var(--primary-rgb), 0.08);
  color: var(--primary);
}

.footer-link-icon svg {
  display: block;
}

.footer-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer-contact-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(
    145deg,
    rgba(var(--primary-rgb), 0.14) 0%,
    rgba(var(--primary-rgb), 0.05) 100%
  );
  border: 1px solid rgba(var(--primary-rgb), 0.18);
  color: var(--primary);
}

.footer-contact-icon svg {
  display: block;
}

.footer-contact-item a {
  word-break: break-word;
  font-weight: 600;
  padding-top: 0.35rem;
}

.footer-contact-text {
  color: var(--ink-muted);
  padding-top: 0.35rem;
  font-weight: 500;
}

.footer-bottom {
  padding-top: 1.75rem;
  border-top: 1px solid rgba(var(--primary-rgb), 0.12);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.35rem 0.5rem;
  margin: 0;
  max-width: 42rem;
  margin-inline: auto;
  text-align: center;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

.footer-legal strong {
  color: var(--ink);
  font-weight: 700;
}

.footer-legal-sep {
  color: rgba(var(--primary-rgb), 0.45);
  font-weight: 300;
  user-select: none;
}

.site-footer .footer-legal a {
  color: var(--primary);
  font-weight: 600;
}

.site-footer .footer-legal a:hover {
  color: #c4007a;
}

/* Páginas internas */
.page-hero {
  padding: clamp(2.5rem, 5vw, 3.5rem) 0 2rem;
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.page-hero .lead {
  margin: 0;
  font-size: 1.1rem;
  color: var(--ink-muted);
  max-width: 640px;
}

.prose {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3rem) 0 clamp(4rem, 8vw, 5rem);
}

.prose h2 {
  margin: 2.25rem 0 0.75rem;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  margin: 1.75rem 0 0.5rem;
  font-size: 1.1rem;
  font-weight: 800;
}

.prose p,
.prose li {
  color: var(--ink-muted);
  font-size: 1rem;
}

.prose ul,
.prose ol {
  padding-left: 1.25rem;
}

.prose li {
  margin-bottom: 0.5rem;
}

.prose a {
  font-weight: 600;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2.5rem;
  max-width: 960px;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3rem) 0 clamp(4rem, 8vw, 5rem);
}

@media (max-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

.contact-card {
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  height: fit-content;
}

.contact-card h2 {
  margin: 0 0 1rem;
  font-size: 1.2rem;
  font-weight: 800;
}

.contact-card p,
.contact-card li {
  font-size: 0.95rem;
  color: var(--ink-muted);
}

.contact-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-card li {
  margin-bottom: 0.85rem;
  padding-left: 1.5rem;
  position: relative;
}

.contact-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

.form-panel {
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 1.15rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: rgba(var(--primary-rgb), 0.5);
  box-shadow: 0 0 0 3px var(--primary-soft);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-hint {
  margin: 0.75rem 0 0;
  font-size: 0.8rem;
  color: var(--ink-soft);
}
