﻿/* VYNT vyntbr.com.br, estilo editorial */
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@400;500;600;700&display=swap");

:root {
  --bg: #f5f3ef;
  --bg-warm: #ebe8e2;
  --bg-elevated: #fffcf8;
  --surface: #ffffff;
  --border: rgba(28, 25, 23, 0.09);
  --border-strong: rgba(28, 25, 23, 0.14);
  --text: #1c1917;
  --text-muted: #57534e;
  --accent: #2a2826;
  --accent-soft: #6b645c;
  --gold: #8a7e6e;
  --gold-dim: rgba(138, 126, 110, 0.12);
  --focus: #2563eb;
  --shadow-sm: 0 1px 2px rgba(28, 25, 23, 0.04);
  --shadow-md: 0 12px 40px rgba(28, 25, 23, 0.08);
  --radius: 14px;
  --radius-sm: 10px;
  --font-serif: "Cormorant Garamond", "Georgia", serif;
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto,
    sans-serif;
  --space: clamp(1rem, 4vw, 2rem);
  --max: 1180px;
  --vy-lime: #c8ff3d;
  --vy-lime-soft: rgba(200, 255, 61, 0.22);
  --vy-dark: #0a0d0b;
  --radius-premium: 18px;
  --shadow-premium: 0 4px 28px rgba(28, 25, 23, 0.07);
  --shadow-premium-lg: 0 28px 70px rgba(15, 18, 16, 0.14);
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.03125rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--accent);
  color: var(--surface);
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 var(--radius-sm) 0;
}

.skip-link:focus {
  left: 0;
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}

.container {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--space);
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 252, 248, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.25rem;
  position: relative;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  letter-spacing: 0.04em;
  font-size: 0.95rem;
}

.logo-img {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  background: var(--surface);
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  height: 2px;
  width: 1.25rem;
  margin-inline: auto;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.2s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.site-nav {
  display: flex;
  margin-left: auto;
}

.nav-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.25rem 1.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a:not(.btn) {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  padding: 0.35rem 0;
  letter-spacing: 0.01em;
  border-bottom: 1px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.site-nav a:not(.btn):hover {
  color: var(--text);
  border-bottom-color: var(--gold);
}

.site-nav a:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 4px;
  border-radius: 2px;
}

@media (max-width: 800px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    margin-left: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    padding: 1.25rem var(--space) 1.5rem;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
  }

  .site-nav a:not(.btn) {
    display: block;
    padding: 0.65rem 0;
  }
}

/* Hero */

.hero {
  position: relative;
  padding: clamp(3.25rem, 10vw, 5.5rem) 0 clamp(3.5rem, 8vw, 5rem);
  overflow: hidden;
  background: linear-gradient(
    165deg,
    var(--bg-elevated) 0%,
    var(--bg) 45%,
    #e8e4dc 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 46%);
    gap: 3rem 4rem;
  }
}

.hero-copy {
  min-width: 0;
}

.hero-media {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  aspect-ratio: 4 / 5;
  max-height: min(88vh, 720px);
  background: var(--bg-warm);
}

.hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 899px) {
  .hero-media {
    aspect-ratio: 16 / 10;
    max-height: none;
    order: -1;
    max-width: 100%;
  }

  .hero-grid {
    gap: 1.75rem;
  }
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 90% 55% at 70% -10%,
    var(--gold-dim) 0%,
    transparent 55%
  );
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-title {
  margin: 0 0 1rem;
  font-family: var(--font-serif);
  font-size: clamp(2.65rem, 7vw, 4rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text);
  max-width: 18ch;
}

.hero-title em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
}

.hero-lead {
  margin: 0 0 0.35rem;
  max-width: 38ch;
  color: var(--text-muted);
  font-size: 1.08rem;
  font-weight: 400;
}

.hero-sub {
  margin: 0 0 2rem;
  max-width: 46ch;
  font-size: 0.94rem;
  color: var(--accent-soft);
}

.hero-sub a,
.section-intro a,
.section-text a,
.section-lead-contact a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 3px;
  transition: color 0.15s ease, text-decoration-color 0.15s ease;
}

.hero-sub a:hover,
.section-intro a:hover,
.section-text a:hover,
.section-lead-contact a:hover {
  color: var(--gold);
  text-decoration-color: var(--accent);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.5rem;
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease,
    transform 0.15s ease;
}

.btn:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}

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

.btn-primary:hover {
  background: #1a1918;
  transform: translateY(-1px);
}

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

.btn-ghost:hover {
  background: var(--surface);
  border-color: var(--text-muted);
}

/* Pillars */

.pillars {
  padding: 0 0 clamp(2.5rem, 6vw, 3.5rem);
  background: linear-gradient(
    180deg,
    #e8e4dc 0%,
    var(--bg) 100%
  );
  border-bottom: 1px solid var(--border);
}

.pillars-inner {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 720px) {
  .pillars-inner {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .pillars--two .pillars-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 2.5rem;
  }

  .pillars--two .pillar {
    border-left: none;
    padding: 0;
  }

  .pillars--two .pillar:first-child {
    padding-left: 0;
  }
}

.pillar {
  text-align: left;
  padding: 1.25rem 0;
  border-top: 1px solid var(--border-strong);
}

@media (min-width: 720px) {
  .pillar {
    border-top: none;
    border-left: 1px solid var(--border);
    padding: 0 1.5rem;
  }

  .pillar:first-child {
    border-left: none;
    padding-left: 0;
  }
}

.pillar-title {
  margin: 0 0 0.5rem;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
}

.pillar-text {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Sections */

.section {
  padding: clamp(3rem, 8vw, 5.25rem) 0;
}

.section-kicker {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.section-kicker.centered {
  text-align: center;
}

.section-about {
  background: var(--surface);
  border-block: 1px solid var(--border);
}

.section-title {
  margin: 0 0 1rem;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.65rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.section-title.centered {
  text-align: center;
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
}

.section-intro {
  margin: 0 auto 2.75rem;
  max-width: 52ch;
  color: var(--text-muted);
  text-align: center;
  font-size: 1rem;
}

.section-text {
  margin: 0 0 1rem;
  color: var(--text-muted);
}

.section-text:last-child {
  margin-bottom: 0;
}

.section-text strong,
.highlight-text strong {
  color: var(--text);
  font-weight: 600;
}

.grid-2 {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }
}

.about-aside {
  min-width: 0;
}

.about-figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  background: var(--bg-warm);
}

.about-figure img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

/* Brands */

.section-brands {
  background: var(--bg-warm);
  border-block: 1px solid var(--border);
}

.brand-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

@media (min-width: 800px) {
  .brand-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

.brand-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.brand-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.brand-card-visual {
  position: relative;
  height: 0;
  padding-bottom: 52%;
  background: var(--bg-warm);
  overflow: hidden;
}

.brand-card-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-card-visual--placeholder {
  padding-bottom: 36%;
  min-height: 120px;
  background: linear-gradient(
    135deg,
    var(--bg-warm) 0%,
    rgba(138, 126, 110, 0.18) 48%,
    var(--bg-warm) 100%
  );
}

.brand-card-title--text {
  margin-top: 0.35rem;
}

.brand-card-badge {
  display: inline-block;
  margin: 1.25rem 1.5rem 0;
  padding: 0.35rem 0.65rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--surface);
  background: var(--accent);
  border-radius: 4px;
}

.brand-card-body {
  padding: 0 1.5rem 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.brand-card-logo {
  display: block;
  margin: 0.85rem 0 0;
  max-height: 46px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  object-position: left center;
}

.brand-card-logo--penz {
  max-height: 64px;
  max-width: 300px;
}

.brand-card-title {
  margin: 0.5rem 0 0.65rem;
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 600;
}

.brand-card-text {
  margin: 0 0 1.25rem;
  font-size: 0.94rem;
  color: var(--text-muted);
  flex: 1;
}

.link-arrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  align-self: flex-start;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.link-arrow:hover {
  color: var(--gold);
  border-bottom-color: transparent;
}

.brand-card-text a:not(.link-arrow) {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  transition: color 0.15s ease, border-color 0.15s ease;
}

.brand-card-text a:not(.link-arrow):hover {
  color: var(--gold);
  border-bottom-color: transparent;
}

.brand-card-body .link-arrow + .link-arrow {
  margin-top: 0.65rem;
}

/* Cards */

.section-cards {
  background: var(--bg);
}

.cards {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .cards:not(.cards-6) {
    grid-template-columns: repeat(3, 1fr);
  }
}

.cards-6 {
  grid-template-columns: 1fr;
}

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

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

.card {
  padding: 1.65rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-md);
}

.card-title {
  margin: 0 0 0.55rem;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
}

.card-text {
  margin: 0;
  font-size: 0.94rem;
  color: var(--text-muted);
}

/* AplicaÃ§Ãµes & highlights */

.section-aplicacoes {
  background: var(--surface);
  border-block: 1px solid var(--border);
}

.section-text-wide {
  max-width: 65ch;
}

/* Galeria mosaico */

.section-mosaic {
  background: var(--bg-warm);
  border-block: 1px solid var(--border);
}

.mosaic-grid {
  display: grid;
  gap: 0.85rem;
  margin-top: 0.5rem;
}

@media (min-width: 700px) {
  .mosaic-grid {
    grid-template-columns: 1.4fr 1fr;
    grid-template-rows: auto auto;
    gap: 1rem;
  }

  .mosaic-item--wide {
    grid-row: span 2;
  }
}

.mosaic-item {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  background: var(--surface);
}

.mosaic-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  transition: transform 0.5s ease;
}

.mosaic-item--wide img {
  aspect-ratio: 3 / 4;
  min-height: 280px;
}

@media (min-width: 700px) {
  .mosaic-item--wide img {
    min-height: 100%;
    aspect-ratio: auto;
    height: 100%;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .mosaic-item:hover img {
    transform: scale(1.02);
  }
}

.section-highlights {
  background: var(--bg);
}

.highlights {
  display: grid;
  gap: 1.25rem;
}

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

.highlight {
  margin: 0;
  padding: 1.65rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.highlight-title {
  margin: 0 0 0.6rem;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
}

.highlight-text {
  margin: 0;
  font-size: 0.94rem;
  color: var(--text-muted);
}

.section-lead-contact {
  max-width: 48ch;
  margin-bottom: 1.75rem;
}

.contact-panel {
  padding: clamp(1.75rem, 4vw, 2.75rem);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.contact-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.address-title {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.address-text {
  margin: 0;
  color: var(--text);
  line-height: 1.65;
}

/* Contact */

.section-contact {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-warm) 100%);
}

.contact-actions {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-link {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 1rem 1.15rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.15s ease, background 0.15s ease;
}

.contact-link:hover {
  border-color: var(--gold);
  background: var(--gold-dim);
}

.contact-link:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}

.contact-link-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact-link-value {
  font-weight: 600;
  word-break: break-word;
}

.contact-departments {
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border);
}

.contact-channels-title {
  margin: 0 0 0.5rem;
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
}

.contact-departments-lead {
  margin: 0 0 1.15rem;
  max-width: 52ch;
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.contact-channels {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.contact-channels li {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.5rem;
  padding: 0.85rem 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  line-height: 1.5;
}

.contact-channel-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

.contact-channels a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(12, 16, 16, 0.2);
  word-break: break-word;
}

.contact-channels a:hover {
  border-bottom-color: transparent;
}

.contact-channels--inline li {
  background: transparent;
  border: none;
  padding: 0.35rem 0;
}

.contact-channels--inline {
  margin-bottom: 1.5rem;
}

/* Footer */

.site-footer {
  padding: 2.5rem 0 2rem;
  background: var(--accent);
  color: rgba(255, 252, 248, 0.88);
  border-top: none;
}

.site-footer a {
  color: rgba(255, 252, 248, 0.9);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 252, 248, 0.35);
}

.site-footer a:hover {
  border-bottom-color: transparent;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem 2.5rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.footer-col--contacts {
  min-width: min(100%, 18rem);
}

.footer-contacts-title {
  margin: 0 0 0.15rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 252, 248, 0.55);
}

.footer-channels {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.footer-channels li {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.25rem 0.4rem;
  font-size: 0.82rem;
  line-height: 1.45;
  color: rgba(255, 252, 248, 0.72);
}

.footer-channels span {
  color: rgba(255, 252, 248, 0.72);
}

.footer-channels a {
  font-size: 0.82rem;
  word-break: break-word;
}

.footer-phone {
  margin: 0.55rem 0 0;
  font-size: 0.82rem;
  color: rgba(255, 252, 248, 0.65);
}

.footer-phone a {
  border-bottom-color: rgba(255, 252, 248, 0.25);
}

.footer-tagline {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 500;
  color: rgba(255, 252, 248, 0.95);
}

.footer-brand {
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: rgba(255, 252, 248, 0.75);
}

.footer-brand strong {
  color: rgba(255, 252, 248, 0.95);
}

.footer-partners {
  margin: 0.85rem 0 0;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 252, 248, 0.15);
  font-size: 0.8rem;
  line-height: 1.55;
  color: rgba(255, 252, 248, 0.65);
  max-width: 52ch;
}

.footer-domain {
  font-weight: 500;
}

.footer-legal {
  margin: 0;
  font-size: 0.78rem;
  color: rgba(255, 252, 248, 0.55);
}

.footer-legal a {
  border-bottom-color: rgba(255, 252, 248, 0.25);
}

.footer-note {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(255, 252, 248, 0.55);
  flex: 1 0 100%;
}

/* PÃ¡gina de produtos */

.page-products {
  padding-top: 0;
}

.prod-page-hero {
  padding: clamp(2.5rem, 8vw, 4rem) 0 clamp(2rem, 5vw, 3rem);
  background: linear-gradient(
    165deg,
    var(--bg-elevated) 0%,
    var(--bg) 55%,
    var(--bg-warm) 100%
  );
  border-bottom: 1px solid var(--border);
}

.prod-page-title {
  margin: 0 0 1rem;
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 3.75rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.prod-page-lead {
  margin: 0 0 1.75rem;
  max-width: 60ch;
}

.prod-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
}

.prod-jump-link {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1.1rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  transition: border-color 0.15s ease, background 0.15s ease;
}

.prod-jump-link:hover {
  border-color: var(--gold);
  background: var(--gold-dim);
}

/* Categorias na página de produtos */

.prod-category {
  border-bottom: 1px solid var(--border);
}

.prod-category--light {
  background: var(--surface);
}

.prod-category--warm {
  background: var(--bg-warm);
}

.prod-category-title {
  margin: 0 0 0.75rem;
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  max-width: 20ch;
}

.prod-category-intro {
  margin: 0 0 0.25rem;
  max-width: 62ch;
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.prod-category .vitrine-section-title:first-of-type {
  margin-top: 1.75rem;
}

.vitrine-card-brand {
  display: block;
  margin: 0 0 0.4rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.vitrine-card-media--vynt {
  background: linear-gradient(
    145deg,
    #2a2826 0%,
    #44403c 42%,
    #78716c 100%
  );
}

.prod-category--light .vitrine-card {
  background: var(--bg-elevated);
}

.prod-category--warm .vitrine-card {
  background: var(--surface);
}

/* Vitrine de produtos (imagens hospedadas nos sites das marcas) */

.vitrine-brand {
  border-bottom: 1px solid var(--border);
  padding-bottom: clamp(2.5rem, 6vw, 4rem);
}

.vitrine-brand--hd {
  background: var(--surface);
}

.vitrine-brand--penz {
  background: var(--bg-warm);
}

.vitrine-brand-head {
  max-width: 720px;
  margin-bottom: 2rem;
}

.vitrine-brand-logo {
  display: block;
  max-height: 52px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 1rem;
}

.vitrine-brand-logo--penz {
  max-height: 58px;
  max-width: 300px;
}

.vitrine-brand-title {
  margin: 0 0 0.75rem;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

.vitrine-brand-lead {
  margin: 0;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 62ch;
}

.vitrine-section-title {
  margin: 2.5rem 0 1.25rem;
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--text);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.vitrine-brand .vitrine-section-title:first-of-type {
  margin-top: 0;
}

.vitrine-section-note {
  margin: -0.5rem 0 1.25rem;
  max-width: 60ch;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.vitrine-hero-penz {
  margin: 0 0 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  background: var(--surface);
}

.vitrine-hero-penz img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: cover;
}

.vitrine-grid {
  display: grid;
  gap: 1.35rem;
  grid-template-columns: 1fr;
}

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

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

  .vitrine-grid--compact {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.vitrine-card {
  margin: 0;
  display: flex;
  flex-direction: column;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.vitrine-brand--hd .vitrine-card {
  background: var(--bg);
}

.vitrine-brand--penz .vitrine-card {
  background: var(--surface);
}

@media (prefers-reduced-motion: no-preference) {
  .vitrine-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--border-strong);
    transform: translateY(-2px);
  }
}

.vitrine-card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--bg-warm);
  overflow: hidden;
}

.vitrine-card-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vitrine-card-body {
  padding: 1.15rem 1.25rem 1.35rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.vitrine-card-title {
  margin: 0 0 0.45rem;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
}

.vitrine-card-text {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
  flex: 1;
}

.prod-cta-section {
  text-align: left;
}

.prod-cta-section .hero-actions {
  margin-top: 0.5rem;
}

.site-nav a[aria-current="page"] {
  color: var(--text);
  font-weight: 600;
  border-bottom-color: var(--gold);
}

/* --------------------------------------------------------------------------
   Header premium: overlay na home + barra escura nas demais páginas
   -------------------------------------------------------------------------- */

.hero-shell {
  position: relative;
}

.logo--wordmark {
  text-decoration: none;
}

.logo-wordmark {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: inherit;
}

.logo-letter-y {
  position: relative;
  display: inline-block;
}

.logo-letter-y::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  top: 0.1em;
  right: -0.12em;
  background: var(--vy-lime);
  border-radius: 50%;
}

.site-header--overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: transparent;
  backdrop-filter: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.site-header--overlay .logo--wordmark {
  color: #fff;
}

.site-header--overlay .site-nav a:not(.btn) {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid transparent;
  padding: 0.5rem 0 0.35rem;
}

.site-header--overlay .site-nav a:not(.btn):hover {
  color: #fff;
  border-bottom-color: var(--vy-lime);
}

.site-header--overlay .site-nav a[aria-current="page"] {
  color: #fff;
  font-weight: 600;
  border-bottom-color: var(--vy-lime);
  position: relative;
}

.site-header--overlay .site-nav a[aria-current="page"]::before {
  content: "";
  position: absolute;
  top: 0.15rem;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: var(--vy-lime);
  border-radius: 50%;
}

.site-header--overlay .nav-toggle {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(0, 0, 0, 0.25);
}

.site-header--overlay .nav-toggle-bar {
  background: #fff;
}

@media (max-width: 800px) {
  .site-header--overlay .site-nav {
    background: rgba(10, 13, 11, 0.97);
    border-bottom: 1px solid rgba(200, 255, 61, 0.15);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  }

  .site-header--overlay .site-nav a:not(.btn) {
    color: rgba(255, 255, 255, 0.92);
  }
}

.site-header--dark {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--vy-dark);
  backdrop-filter: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.site-header--dark .logo--wordmark {
  color: #fff;
}

.site-header--dark .site-nav a:not(.btn) {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid transparent;
  padding: 0.5rem 0 0.35rem;
}

.site-header--dark .site-nav a:not(.btn):hover {
  color: #fff;
  border-bottom-color: var(--vy-lime);
}

.site-header--dark .site-nav a[aria-current="page"] {
  color: #fff;
  font-weight: 600;
  border-bottom-color: var(--vy-lime);
  position: relative;
}

.site-header--dark .site-nav a[aria-current="page"]::before {
  content: "";
  position: absolute;
  top: 0.15rem;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: var(--vy-lime);
  border-radius: 50%;
}

.site-header--dark .nav-toggle {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
}

.site-header--dark .nav-toggle-bar {
  background: #fff;
}

@media (max-width: 800px) {
  .site-header--dark .site-nav {
    background: rgba(10, 13, 11, 0.98);
    border-bottom: 1px solid rgba(200, 255, 61, 0.12);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  }

  .site-header--dark .site-nav a:not(.btn) {
    color: rgba(255, 255, 255, 0.92);
  }
}

.page-home .hero--overlay {
  position: relative;
  isolation: isolate;
  min-height: min(92vh, 900px);
  padding: clamp(6.75rem, 15vw, 9.5rem) 0 clamp(3.5rem, 8vw, 5rem);
  overflow: hidden;
  background: var(--vy-dark);
}

.page-home .hero--overlay .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("../images/casa%20moderna%20header%20site.png");
  background-size: cover;
  background-position: center;
}

.page-home .hero--overlay .hero-gradient--overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    115deg,
    rgba(8, 12, 10, 0.9) 0%,
    rgba(8, 12, 10, 0.62) 45%,
    rgba(8, 12, 10, 0.38) 100%
  );
  pointer-events: none;
}

.page-home .hero-inner--overlay {
  position: relative;
  z-index: 2;
  max-width: 46rem;
}

.page-home .hero-title--overlay {
  margin: 0 0 1rem;
  font-family: var(--font-sans);
  font-size: clamp(2rem, 5.2vw, 3.15rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #fff;
  max-width: 22ch;
}

.page-home .hero-title-accent {
  color: var(--vy-lime);
}

.page-home .hero-eyebrow {
  color: rgba(255, 255, 255, 0.5);
}

.page-home .hero-lead--overlay {
  margin: 0 0 1.25rem;
  max-width: 40ch;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.6;
}

.page-home .hero-pills {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem 1rem;
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}

@media (min-width: 720px) {
  .page-home .hero-pills {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.page-home .hero-pill {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.25;
}

.page-home .hero-pill-icon {
  display: flex;
  color: rgba(255, 255, 255, 0.9);
}

.page-home .hero-pill-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.page-home .hero-sub--overlay {
  margin: 0 0 1.75rem;
  max-width: 44ch;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.62);
}

.page-home .hero-sub--overlay a {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: underline;
  text-decoration-color: var(--vy-lime-soft);
  text-underline-offset: 3px;
}

.page-home .hero-sub--overlay a:hover {
  color: var(--vy-lime);
  text-decoration-color: var(--vy-lime);
}

.page-home .hero--overlay .hero-actions {
  gap: 0.75rem 1rem;
}

.btn--lime-outline {
  background: transparent;
  color: var(--vy-lime);
  border: 1px solid var(--vy-lime);
}

.btn--lime-outline:hover {
  background: var(--vy-lime-soft);
  color: #f4ffe8;
  transform: translateY(-1px);
}

.btn--overlay-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn--overlay-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}

/* --------------------------------------------------------------------------
   Acabamento premium — restante da home e página de produtos
   -------------------------------------------------------------------------- */

.page-home #conteudo > .pillars {
  padding: clamp(3rem, 8vw, 4.75rem) 0;
  background: linear-gradient(
    180deg,
    #d8e0da 0%,
    #e8ebe9 28%,
    var(--bg) 72%,
    var(--bg) 100%
  );
  border-bottom: 1px solid rgba(28, 25, 23, 0.06);
}

.page-home #conteudo .pillars--two .pillar {
  padding: 1.65rem 1.5rem;
  background: var(--surface);
  border: 1px solid rgba(28, 25, 23, 0.07);
  border-radius: var(--radius-premium);
  box-shadow: var(--shadow-premium);
  border-top: none;
}

@media (min-width: 720px) {
  .page-home #conteudo .pillars--two .pillar {
    border-left: none;
    padding: 1.85rem 1.75rem;
  }
}

.page-home #conteudo .pillar-title {
  font-size: clamp(1.35rem, 2.2vw, 1.6rem);
  letter-spacing: -0.02em;
}

.page-home #conteudo .pillar-text {
  font-size: 0.95rem;
  line-height: 1.65;
}

.page-home #conteudo .section-about {
  background: linear-gradient(180deg, var(--surface) 0%, #faf9f7 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.page-home #conteudo .about-figure {
  border-radius: var(--radius-premium);
  border: 1px solid rgba(28, 25, 23, 0.08);
  box-shadow: var(--shadow-premium-lg);
}

.page-home #conteudo .section-kicker:not(.hero-eyebrow) {
  color: #5c645e;
  letter-spacing: 0.18em;
}

.page-home #conteudo .section-brands {
  background: linear-gradient(180deg, #e4e9e5 0%, var(--bg-warm) 100%);
  border-block-color: rgba(28, 25, 23, 0.06);
}

.page-home #conteudo .brand-card {
  border-radius: var(--radius-premium);
  border-color: rgba(28, 25, 23, 0.08);
  box-shadow: var(--shadow-premium);
}

@media (prefers-reduced-motion: no-preference) {
  .page-home #conteudo .brand-card:hover {
    border-color: rgba(200, 255, 61, 0.35);
    box-shadow: var(--shadow-premium-lg);
  }
}

.page-home #conteudo .section-cards .card {
  border-radius: var(--radius-premium);
  border-color: rgba(28, 25, 23, 0.08);
  box-shadow: var(--shadow-premium);
  padding: 1.85rem 1.65rem;
}

@media (prefers-reduced-motion: no-preference) {
  .page-home #conteudo .section-cards .card:hover {
    border-color: rgba(200, 255, 61, 0.28);
    box-shadow: var(--shadow-md);
  }
}

.page-home #conteudo .contact-link {
  border-radius: var(--radius-sm);
  border-color: rgba(28, 25, 23, 0.1);
  box-shadow: var(--shadow-sm);
}

.page-home #conteudo .contact-link:hover {
  border-color: rgba(200, 255, 61, 0.45);
  background: rgba(200, 255, 61, 0.08);
}

.page-home #conteudo .contact-channels li {
  border-color: rgba(28, 25, 23, 0.1);
  box-shadow: var(--shadow-sm);
}

.page-home #conteudo .contact-channels a {
  color: var(--accent);
}

.page-home .site-footer {
  background: linear-gradient(180deg, #121816 0%, var(--vy-dark) 100%);
  border-top: 1px solid rgba(200, 255, 61, 0.12);
}

.page-home .footer-partners {
  border-top-color: rgba(255, 255, 255, 0.1);
}

/* Página produtos — hero escuro alinhado ao header + cards refinados */

main.page-products .prod-page-hero {
  padding: clamp(3rem, 9vw, 5rem) 0 clamp(2.25rem, 5vw, 3.25rem);
  background: linear-gradient(
    155deg,
    #070a09 0%,
    #121916 38%,
    #1a2320 100%
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
}

main.page-products .prod-page-hero .section-kicker {
  color: var(--vy-lime);
  letter-spacing: 0.2em;
}

main.page-products .prod-page-hero .prod-page-title {
  color: #fff;
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: -0.03em;
}

main.page-products .prod-page-hero .prod-page-lead {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
  line-height: 1.65;
}

main.page-products .prod-page-hero .prod-page-lead strong {
  color: #fff;
}

main.page-products .prod-page-hero .prod-jump-link {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

main.page-products .prod-page-hero .prod-jump-link:hover {
  border-color: var(--vy-lime);
  background: rgba(200, 255, 61, 0.1);
  color: #fff;
}

main.page-products .prod-category-title {
  letter-spacing: -0.03em;
}

main.page-products .vitrine-card {
  border-radius: var(--radius-premium);
  border-color: rgba(28, 25, 23, 0.09);
  box-shadow: var(--shadow-premium);
}

main.page-products .vitrine-card-media {
  border-bottom: 1px solid rgba(28, 25, 23, 0.06);
}

main.page-products .vitrine-card-body {
  padding: 1.35rem 1.35rem 1.5rem;
}

main.page-products .vitrine-card-title {
  font-size: 1.28rem;
}

@media (prefers-reduced-motion: no-preference) {
  main.page-products .vitrine-card:hover {
    box-shadow: var(--shadow-premium-lg);
    border-color: rgba(200, 255, 61, 0.22);
    transform: translateY(-4px);
  }
}

main.page-products .vitrine-section-title {
  border-bottom-color: rgba(28, 25, 23, 0.12);
  padding-bottom: 0.65rem;
}

main.page-products .prod-category--light {
  background: linear-gradient(180deg, #fafaf8 0%, var(--surface) 100%);
}

main.page-products .prod-category--warm {
  background: linear-gradient(180deg, var(--bg-warm) 0%, #e5e8e4 100%);
}

main.page-products .vitrine-brand--hd {
  background: linear-gradient(180deg, #fafaf8 0%, var(--surface) 100%);
}

main.page-products .vitrine-brand--penz {
  background: linear-gradient(180deg, #eef1ee 0%, var(--bg-warm) 100%);
}

/* Notícias e matérias */

.page-news,
.page-article {
  padding-top: 0;
}

.news-page-hero,
.article-hero {
  padding: clamp(3rem, 9vw, 5rem) 0 clamp(2.25rem, 5vw, 3.25rem);
  background: linear-gradient(155deg, #070a09 0%, #121916 38%, #1a2320 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
}

.news-page-hero .section-kicker,
.article-hero .section-kicker {
  color: var(--vy-lime);
  letter-spacing: 0.2em;
}

.news-page-title {
  margin: 0 0 1rem;
  font-family: var(--font-sans);
  font-size: clamp(2.5rem, 6vw, 3.75rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #fff;
}

.news-page-lead {
  margin: 0;
  max-width: 60ch;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
  line-height: 1.65;
}

.article-title {
  margin: 0 0 1.25rem;
  max-width: 28ch;
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 5.5vw, 3.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: #fff;
}

.article-deck {
  margin: 0 0 1.5rem;
  max-width: 52ch;
  font-size: 1.1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
}

.article-meta {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.article-meta-sep {
  margin-inline: 0.5rem;
}

.news-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 700px) {
  .news-grid {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  }
}

.news-card {
  border-radius: var(--radius-premium);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-premium);
  overflow: hidden;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.news-card:hover {
  border-color: rgba(200, 255, 61, 0.28);
  box-shadow: var(--shadow-premium-lg);
  transform: translateY(-3px);
}

.news-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.news-card-media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--bg-warm);
}

.news-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.news-card:hover .news-card-media img {
  transform: scale(1.03);
}

.news-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.35rem 1.5rem 1.6rem;
}

.news-card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
  margin: 0 0 0.85rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.news-card-tag {
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: var(--gold-dim);
  color: var(--gold);
}

.news-card-title {
  margin: 0 0 0.75rem;
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
}

.news-card-excerpt {
  margin: 0 0 1.25rem;
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.news-card-body .link-arrow {
  margin-top: auto;
}

.article-layout {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 960px) {
  .article-layout {
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 3.5rem;
  }
}

.article-main {
  min-width: 0;
}

.article-figure {
  margin: 0 0 2rem;
  border-radius: var(--radius-premium);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  background: var(--bg-warm);
}

.article-figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.article-caption {
  padding: 0.85rem 1.1rem;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--text-muted);
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
}

.article-lead {
  margin: 0 0 1.25rem;
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text);
}

.article-main p {
  margin: 0 0 1.15rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.article-main p strong {
  color: var(--text);
  font-weight: 600;
}

.article-main a {
  color: var(--text);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 0.15em;
}

.article-main a:hover {
  color: var(--gold);
}

.article-heading {
  margin: 2rem 0 0.85rem;
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--text);
}

.article-list {
  margin: 0 0 1.25rem;
  padding-left: 1.25rem;
  color: var(--text-muted);
}

.article-list li {
  margin-bottom: 0.65rem;
  line-height: 1.65;
}

.article-list strong {
  color: var(--text);
}

.article-quote {
  margin: 2rem 0;
  padding: 1.5rem 1.75rem;
  border-left: 3px solid var(--gold);
  background: var(--gold-dim);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.article-quote p {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.55;
  color: var(--text);
}

.article-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2.25rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.page-article .article-actions .btn--lime-outline {
  background: var(--vy-dark);
  color: var(--vy-lime);
  border-color: var(--vy-lime);
}

.page-article .article-actions .btn--lime-outline:hover {
  background: rgba(200, 255, 61, 0.12);
}

.page-article .article-actions .btn--overlay-ghost {
  color: var(--text);
  border-color: var(--border-strong);
}

.page-article .article-actions .btn--overlay-ghost:hover {
  border-color: var(--gold);
  background: var(--gold-dim);
}

.article-aside {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.article-aside-block {
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-elevated);
}

.article-aside-title {
  margin: 0 0 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.article-facts {
  margin: 0;
}

.article-facts div {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0.5rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

.article-facts div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.article-facts dt {
  margin: 0;
  font-weight: 500;
  color: var(--text-muted);
}

.article-facts dd {
  margin: 0;
  font-weight: 600;
  color: var(--text);
  text-align: right;
}

.article-related {
  margin: 0;
  padding: 0;
  list-style: none;
}

.article-related li + li {
  margin-top: 0.55rem;
}

.article-related a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.article-related a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.article-back {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--text-muted);
}

.article-back:hover {
  color: var(--text);
}

.section-news-featured {
  background: var(--surface);
  border-block: 1px solid var(--border);
}

.news-featured-card {
  display: grid;
  gap: 0;
  margin-top: 2rem;
  border-radius: var(--radius-premium);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  box-shadow: var(--shadow-premium);
  overflow: hidden;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

@media (min-width: 768px) {
  .news-featured-card {
    grid-template-columns: 1.1fr 1fr;
  }
}

.news-featured-card:hover {
  border-color: rgba(200, 255, 61, 0.28);
  box-shadow: var(--shadow-premium-lg);
}

.news-featured-link {
  display: contents;
  text-decoration: none;
  color: inherit;
}

.news-featured-media {
  min-height: 220px;
  background: var(--bg-warm);
}

.news-featured-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.news-featured-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.5rem, 4vw, 2.25rem);
}

.news-featured-body .news-card-meta {
  margin-bottom: 1rem;
}

.news-featured-body .news-card-title {
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  margin-bottom: 0.85rem;
}

.news-featured-body .link-arrow {
  margin-top: 0.5rem;
}

.news-featured-more {
  margin-top: 1.75rem;
  margin-bottom: 0;
}

.article-brands {
  display: grid;
  gap: 1.25rem;
  margin: 0 0 0.5rem;
}

@media (min-width: 700px) {
  .article-brands {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

.article-brand {
  padding: 1.35rem 1.4rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-elevated);
}

.article-brand-name {
  margin: 0 0 0.75rem;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
}

.article-brand-sub {
  font-family: var(--font-sans);
  font-size: 0.85em;
  font-weight: 500;
  color: var(--text-muted);
}

.article-brand p {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.article-brand .link-arrow {
  margin: 0;
}

.article-figure--promo img {
  aspect-ratio: auto;
  object-fit: contain;
  background: #0a0d0b;
}

.article-gallery {
  display: grid;
  gap: 1.25rem;
  margin: 0 0 2rem;
}

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

  .article-gallery-item--featured {
    grid-column: 1 / -1;
  }
}

.article-gallery-item {
  margin: 0;
  border-radius: var(--radius-premium);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  background: var(--bg-warm);
}

.article-gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.article-gallery-item--featured img {
  aspect-ratio: auto;
  max-height: min(85vh, 920px);
  object-fit: contain;
  background: #0a0d0b;
}

.news-card-media--promo {
  aspect-ratio: 4 / 5;
}

.news-card-media--promo img,
.news-featured-media--promo img {
  object-fit: cover;
  object-position: center top;
}

.news-featured-media--promo {
  min-height: 280px;
}

.brand-card-visual img {
  object-position: center top;
}

/* Homepage simplificada */

.page-home--simple .hero-copy--simple {
  max-width: 38rem;
}

.page-home--simple .hero-lead--overlay {
  max-width: 34ch;
}

.section-solution {
  background: var(--bg-elevated);
  padding-block: clamp(3rem, 8vw, 5rem);
}

.solution-steps {
  list-style: none;
  margin: 2.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .solution-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.solution-step {
  margin: 0;
  padding: 1.75rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.solution-step-num {
  display: block;
  margin-bottom: 0.85rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold);
}

.solution-step-title {
  margin: 0 0 0.55rem;
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.2;
}

.solution-step-text {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.section-brands-simple {
  padding-block: clamp(3rem, 8vw, 4.5rem);
}

.brands-row {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}

@media (min-width: 700px) {
  .brands-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

.brand-tile {
  margin: 0;
  padding: 2rem 1.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.brand-tile-logo {
  display: block;
  max-width: 200px;
  max-height: 52px;
  width: auto;
  height: auto;
  object-fit: contain;
  margin-bottom: 1.25rem;
}

.brand-tile-name {
  margin: 0 0 1rem;
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text);
}

.brand-tile-logo--roca {
  max-width: 140px;
  max-height: 72px;
  border-radius: var(--radius-sm);
}

.brand-tile-text {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.brands-cta {
  margin: 1.75rem 0 0;
  text-align: center;
}

.brands-cta--center {
  margin-top: 1.5rem;
}

.section-proof {
  padding-block: 0 clamp(3rem, 8vw, 4rem);
  background: var(--bg);
}

.proof-figure {
  margin: 0;
  border-radius: var(--radius-premium);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.proof-figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.proof-caption {
  margin: 0;
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.section-grupo {
  padding-block: clamp(3rem, 8vw, 4.5rem);
  background: var(--bg-warm);
  border-block: 1px solid var(--border);
}

.grupo-highlight {
  display: grid;
  gap: 1rem;
  margin: 2.25rem 0 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 700px) {
  .grupo-highlight {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.grupo-stat {
  padding: 1.5rem 1.35rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.grupo-stat-value {
  display: block;
  margin-bottom: 0.45rem;
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 4vw, 2.35rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
}

.grupo-stat-label {
  display: block;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--text-muted);
}

.grupo-cta {
  margin: 1.75rem 0 0;
  text-align: center;
}

.section-clients {
  padding-block: clamp(3rem, 8vw, 4.5rem);
  background: var(--bg-elevated);
}

.clients-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin: 2.25rem 0 0;
  padding: 0;
  list-style: none;
}

.client-chip {
  margin: 0;
  padding: 0.55rem 1rem;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

.clients-grid--logos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: 2.25rem;
  padding: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-premium);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

@media (min-width: 640px) {
  .clients-grid--logos {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .clients-grid--logos {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.client-logo-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 5.5rem;
  padding: 1.1rem 1rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
  transition: background 0.25s ease;
}

.client-logo-cell:hover {
  background: var(--bg-warm);
}

.client-logo-cell img {
  max-width: 78%;
  max-height: 2.75rem;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.35);
  opacity: 0.92;
  transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.client-logo-cell:hover img {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
  transform: scale(1.04);
}

.clients-grid--logos .client-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 5.5rem;
  border-radius: 0;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  box-shadow: none;
}

.section-obras {
  padding-block: clamp(3rem, 8vw, 4.5rem);
  background: var(--bg);
}

.obras-carousel {
  position: relative;
  margin-top: 2.25rem;
}

.obras-carousel-track {
  position: relative;
  border-radius: var(--radius-premium);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  max-height: 34rem;
  background: #0c1010;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.obras-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 0.55s ease, transform 0.55s ease;
  pointer-events: none;
}

.obras-slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  z-index: 1;
}

.obras-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}

.obras-slide.is-active img {
  transform: scale(1.05);
}

.obras-slide-caption {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: 2;
  padding: clamp(3rem, 8vw, 5rem) 1.5rem 1.35rem;
  background: linear-gradient(to top, rgba(12, 16, 16, 0.92) 0%, rgba(12, 16, 16, 0.45) 55%, transparent 100%);
  color: #fff;
}

.obras-slide-caption h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  font-weight: 600;
}

.obras-slide-caption p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
}

.obras-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 2.75rem;
  height: 2.75rem;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.2s ease, transform 0.2s ease;
}

.obras-nav:hover {
  background: var(--vy-lime);
  color: var(--text);
  transform: translateY(-50%) scale(1.06);
}

.obras-nav--prev {
  left: 0.85rem;
}

.obras-nav--next {
  right: 0.85rem;
}

.obras-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1rem;
}

.obras-dot {
  width: 0.5rem;
  height: 0.5rem;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(12, 16, 16, 0.2);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.obras-dot.is-active {
  width: 1.6rem;
  background: var(--vy-lime);
}

/* Página de produtos — catálogos */

.catalog-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}

@media (min-width: 900px) {
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

.catalog-card {
  margin: 0;
  padding: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
}

.catalog-cover-link {
  display: block;
  line-height: 0;
  border-bottom: 1px solid var(--border);
}

.catalog-cover-link:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: -2px;
}

.catalog-cover {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4.2;
  object-fit: cover;
  object-position: center top;
}

.catalog-card .catalog-card-head,
.catalog-card .catalog-facts,
.catalog-card .catalog-download {
  margin-inline: 1.5rem;
}

.catalog-card .catalog-card-head {
  margin-top: 1.5rem;
}

.catalog-card .catalog-download {
  margin-bottom: 1.5rem;
}

.catalog-specs {
  margin-top: 2.75rem;
}

.spec-table-wrap {
  margin-top: 1.25rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.spec-table {
  width: 100%;
  min-width: 42rem;
  border-collapse: collapse;
  font-size: 0.875rem;
  line-height: 1.45;
}

.spec-table th,
.spec-table td {
  padding: 0.65rem 0.85rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--border);
}

.spec-table th {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--bg-warm);
  white-space: nowrap;
}

.spec-table tbody tr:last-child td {
  border-bottom: none;
}

.spec-table tbody tr:hover {
  background: var(--gold-dim);
}

.spec-table code {
  font-family: ui-monospace, "Cascadia Code", "Consolas", monospace;
  font-size: 0.8rem;
  color: var(--accent);
  word-break: break-all;
}

.catalog-note--table {
  margin-top: 1rem;
}

.catalog-card-title {
  margin: 0 0 0.35rem;
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 600;
}

.catalog-card-lead {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.catalog-facts {
  margin: 0;
  padding-left: 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.catalog-facts strong {
  color: var(--text);
}

.catalog-facts--inline {
  margin-top: 1.75rem;
  padding-left: 1.15rem;
}

.catalog-download {
  margin-top: auto;
  align-self: flex-start;
}

.catalog-collections {
  margin-top: 2.75rem;
}

.collection-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}

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

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

  .collection-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.collection-item {
  margin: 0;
  padding: 1.15rem 1.1rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.collection-name {
  margin: 0 0 0.4rem;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
}

.collection-text {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.catalog-note {
  margin: 1.75rem 0 0;
  font-size: 0.92rem;
  color: var(--text-muted);
  max-width: 58ch;
}

.catalog-note a {
  color: var(--accent);
  font-weight: 500;
}

/* Páginas institucionais e legais */

.page-legal {
  padding-top: 0;
}

.legal-hero {
  padding: clamp(3rem, 9vw, 5rem) 0 clamp(2.25rem, 5vw, 3.25rem);
  background: linear-gradient(155deg, #070a09 0%, #121916 38%, #1a2320 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
}

.legal-hero .section-kicker {
  color: var(--vy-lime);
  letter-spacing: 0.2em;
}

.legal-title {
  margin: 0 0 1rem;
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 5.5vw, 3.25rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: #fff;
}

.legal-lead {
  margin: 0;
  max-width: 58ch;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.75);
}

.legal-meta {
  margin: 1rem 0 0;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.legal-body {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-warm) 100%);
}

.legal-layout {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 960px) {
  .legal-layout {
    grid-template-columns: minmax(0, 1fr) 16rem;
  }
}

.legal-content h2 {
  margin: 2rem 0 0.75rem;
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.legal-content p {
  margin: 0 0 1rem;
}

.legal-content ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}

.legal-content li + li {
  margin-top: 0.35rem;
}

.legal-content a {
  color: var(--accent);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(12, 16, 16, 0.2);
}

.legal-content a:hover {
  border-bottom-color: transparent;
}

.legal-doc-links,
.legal-channel-list {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
}

.legal-doc-links li + li,
.legal-channel-list li + li {
  margin-top: 0.45rem;
}

.legal-aside {
  display: grid;
  gap: 1rem;
}

.legal-aside-block {
  padding: 1.15rem 1.2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.legal-aside-title {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.legal-aside-block p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.legal-aside-block a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(12, 16, 16, 0.2);
}

.legal-aside-block a:hover {
  border-bottom-color: transparent;
}

.legal-aside-note {
  margin-top: 0.5rem !important;
  font-size: 0.82rem !important;
}

.legal-aside-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.legal-aside-links li + li {
  margin-top: 0.4rem;
}

.legal-aside-links a {
  font-size: 0.9rem;
}

/* Páginas SEO — layout limpo, editorial */

.page-seo {
  padding-top: 0;
}

.seo-body {
  background: var(--bg);
}

.seo-content {
  max-width: 42rem;
}

.seo-link-list {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
}

.seo-link-list li + li {
  margin-top: 0.5rem;
}

.seo-link-list a {
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(12, 16, 16, 0.15);
}

.seo-link-list a:hover {
  border-bottom-color: transparent;
}

.seo-related-inline {
  margin: 2rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  font-size: 0.92rem;
  color: var(--text-muted);
}

.seo-related-inline a {
  color: var(--accent);
  font-weight: 500;
  text-decoration: none;
}

.seo-related-inline a:hover {
  text-decoration: underline;
}

.seo-contact {
  margin: 2rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  font-size: 0.92rem;
  color: var(--text-muted);
}

.seo-contact a {
  color: var(--accent);
  font-weight: 500;
  text-decoration: none;
}

.seo-contact a:hover {
  text-decoration: underline;
}

.breadcrumb {
  margin-bottom: 1rem;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.breadcrumb li:not(:last-child)::after {
  content: "›";
  margin-left: 0.5rem;
  opacity: 0.5;
}

.breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--accent);
}

.faq-list {
  display: grid;
  gap: 0.5rem;
  max-width: 42rem;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.faq-question {
  padding: 0.9rem 1rem;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  list-style: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-answer {
  padding: 0 1rem 0.9rem;
}

.faq-answer p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.download-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 14rem), 1fr));
  max-width: 36rem;
}

.download-card {
  margin: 0;
}

.download-card-cover {
  width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  margin-bottom: 0.75rem;
}

.download-card-title {
  margin: 0 0 0.35rem;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
}

.download-card-desc {
  margin: 0 0 0.85rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.download-gate {
  max-width: 24rem;
  padding: 0;
  border: none;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
}

.download-gate::backdrop {
  background: rgba(10, 13, 11, 0.45);
}

.download-gate-form {
  padding: 1.25rem;
}

.download-gate-title {
  margin: 0 0 0.4rem;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
}

.download-gate-lead {
  margin: 0 0 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.form-field {
  display: block;
  margin-bottom: 0.75rem;
}

.form-label {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-field input[type="text"],
.form-field input[type="email"] {
  width: 100%;
  padding: 0.6rem 0.7rem;
  font: inherit;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  background: var(--bg-elevated);
}

.form-field--checkbox {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.form-field--checkbox input {
  margin-top: 0.15rem;
}

.download-gate-actions {
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
  margin-top: 0.85rem;
}
