/* ─── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  --gold: #c9a87c;
  --gold-light: #e2ccaa;
  --gold-dark: #a0804f;
  --sand: #f5f0e8;
  --sand-deep: #ede4d3;
  --ink: #1a1510;
  --ink-soft: #4a3f30;
  --white: #fdfaf5;
  --border: rgba(201, 168, 124, 0.25);

  --ff-display: "Cormorant Garamond", Georgia, serif;
  --ff-body: "DM Sans", system-ui, sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --radius: 2px;
}

/* ─── RESET ─────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--white);
  color: var(--ink);
  font-family: var(--ff-body);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
h1 {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

/* ─── UTILITIES ──────────────────────────────────────────────── */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
.container--wide {
  max-width: 1440px;
}

/* ─── HEADER ─────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 250, 245, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.header-logo img {
  height: 36px;
  width: auto;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.header-nav a {
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color 0.2s;
}
.header-nav a:hover {
  color: var(--gold-dark);
}
.header-nav .nav-cta {
  padding: 8px 20px;
  border: 1px solid var(--gold);
  color: var(--gold-dark);
  transition:
    background 0.2s,
    color 0.2s;
}
.header-nav .nav-cta:hover {
  background: var(--gold);
  color: var(--white);
}
.header-social {
  display: flex;
  gap: 16px;
}
.header-social a {
  color: var(--ink-soft);
  font-size: 14px;
  transition: color 0.2s;
}
.header-social a:hover {
  color: var(--gold-dark);
}

/* Mobile toggle */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition:
    transform 0.3s,
    opacity 0.3s;
}
.burger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.burger.open span:nth-child(2) {
  opacity: 0;
}
.burger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0;
  padding: 0 24px 24px;
  border-top: 1px solid var(--border);
  background: rgba(253, 250, 245, 0.98);
}
.mobile-nav.open {
  display: flex;
}
.mobile-nav a {
  padding: 14px 0;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--border);
}
.mobile-nav a:last-child {
  border-bottom: none;
}

/* ─── HERO SLIDER (3 cards visíveis) ────────────────────────── */
.hero-slider {
  background: var(--ink);
  padding: 40px 0 52px;
}
.hero-slider-wrap {
  overflow: hidden;
}
.hero-track {
  display: flex;
  gap: 2px;
  transition: transform 0.65s var(--ease-out);
  will-change: transform;
}
/* Cada card = 1/3 do container */
.hero-slide {
  flex: 0 0 calc((100% - 4px) / 3);
  min-width: 0;
  position: relative;
  background: var(--ink);
  overflow: hidden;
}
.hero-slide a {
  display: block;
}
.hero-slide img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  opacity: 0.85;
  transition:
    opacity 0.35s,
    transform 0.55s var(--ease-out);
}
.hero-slide:hover img {
  opacity: 1;
  transform: scale(1.03);
}
/* Gradiente sobre cada imagem */
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26, 21, 16, 0.86) 0%,
    rgba(26, 21, 16, 0.04) 52%,
    transparent 100%
  );
  pointer-events: none;
}
.hero-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 18px 20px 16px;
}
.hero-caption h2 {
  font-family: var(--ff-display);
  font-size: clamp(15px, 1.5vw, 22px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 10px;
}
.hero-caption-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.hero-date {
  font-size: 10px;
  letter-spacing: 0.07em;
  color: rgba(253, 250, 245, 0.5);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  border-bottom: 1px solid rgba(226, 204, 170, 0.35);
  padding-bottom: 1px;
  transition:
    border-color 0.2s,
    color 0.2s;
  white-space: nowrap;
}
.btn-ghost:hover {
  color: var(--white);
  border-color: rgba(253, 250, 245, 0.6);
}
.btn-ghost i {
  font-size: 8px;
}

/* Controles abaixo do carrossel, centralizados */
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}
.slider-btn {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(253, 250, 245, 0.2);
  background: transparent;
  color: rgba(253, 250, 245, 0.55);
  cursor: pointer;
  font-size: 11px;
  transition:
    background 0.2s,
    border-color 0.2s,
    color 0.2s;
}
.slider-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
.slider-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}
.slider-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(253, 250, 245, 0.22);
  border: none;
  cursor: pointer;
  transition:
    background 0.3s,
    transform 0.3s;
}
.slider-dot.active {
  background: var(--gold-light);
  transform: scale(1.4);
}

/* ─── SECTION LABEL ──────────────────────────────────────────── */
.section-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}
.section-label span {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.section-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ─── FEATURED POSTS (3-col) ─────────────────────────────────── */
.featured-section {
  padding: 80px 0 64px;
}
.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.feat-card {
  position: relative;
  overflow: hidden;
  background: var(--ink);
}
.feat-card:first-child {
  grid-column: span 2;
}
.feat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
  transition:
    transform 0.6s var(--ease-out),
    opacity 0.4s;
  opacity: 0.9;
}
.feat-card:first-child img {
  aspect-ratio: 16/9;
}
.feat-card:hover img {
  transform: scale(1.04);
  opacity: 1;
}
.feat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26, 21, 16, 0.85) 0%,
    transparent 55%
  );
  pointer-events: none;
}
.feat-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 24px;
}
.feat-tag {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 8px;
  display: block;
}
.feat-title {
  font-family: var(--ff-display);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
}
.feat-card:first-child .feat-title {
  font-size: clamp(20px, 2.5vw, 32px);
}
.feat-card:not(:first-child) .feat-title {
  font-size: clamp(16px, 1.6vw, 22px);
}
.feat-date {
  font-size: 10px;
  color: rgba(253, 250, 245, 0.5);
  letter-spacing: 0.08em;
  margin-top: 8px;
  display: block;
}

/* ─── MAIN CONTENT GRID ──────────────────────────────────────── */
.content-section {
  padding: 72px 0 96px;
  background: var(--sand);
}
.content-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 64px;
  align-items: start;
}

/* Posts list */
.post-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.post-item {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: var(--ink);
}
.post-item:first-child {
  padding-top: 0;
}
.post-thumb {
  position: relative;
  overflow: hidden;
  background: var(--sand-deep);
  aspect-ratio: 4/3;
}
.post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}
.post-item:hover .post-thumb img {
  transform: scale(1.05);
}
.post-thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(201, 168, 124, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.post-thumb-overlay i {
  color: var(--white);
  font-size: 20px;
  opacity: 0;
  transition: opacity 0.3s;
}
.post-item:hover .post-thumb-overlay {
  background: rgba(26, 21, 16, 0.25);
}
.post-item:hover .post-thumb-overlay i {
  opacity: 1;
}
.post-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.post-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
.post-cat {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.post-date-tag {
  font-size: 10px;
  color: var(--ink-soft);
  opacity: 0.6;
}
.post-title {
  font-family: var(--ff-display);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 12px;
  color: var(--ink);
  transition: color 0.2s;
}
.post-item:hover .post-title {
  color: var(--gold-dark);
}
.post-excerpt {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.btn-read {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dark);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition:
    color 0.2s,
    border-color 0.2s;
  width: fit-content;
}
.btn-read i {
  font-size: 8px;
}
.post-item:hover .btn-read {
  color: var(--gold);
  border-color: var(--gold-dark);
}

/* ─── SIDEBAR ─────────────────────────────────────────────────── */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.widget-title {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
}

/* About widget */
.widget-about img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  transition: opacity 0.3s;
}
.widget-about a:hover img {
  opacity: 0.9;
}

/* Social widget */
.social-links {
  display: flex;
  gap: 12px;
}
.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  color: var(--ink-soft);
  font-size: 14px;
  transition:
    background 0.2s,
    border-color 0.2s,
    color 0.2s;
}
.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

/* Recent posts widget */
.recent-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.recent-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.recent-item:last-child {
  border-bottom: none;
}
.recent-thumb {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  overflow: hidden;
  background: var(--sand-deep);
}
.recent-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.recent-item:hover .recent-thumb img {
  transform: scale(1.08);
}
.recent-body {
}
.recent-title {
  font-family: var(--ff-display);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--ink);
  transition: color 0.2s;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.recent-item:hover .recent-title {
  color: var(--gold-dark);
}
.recent-date {
  font-size: 10px;
  color: var(--ink-soft);
  opacity: 0.55;
}
.recent-item {
  text-decoration: none;
}

/* ─── DIVIDER ─────────────────────────────────────────────────── */
.gold-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 0;
}

/* ─── FOOTER ──────────────────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  color: rgba(253, 250, 245, 0.6);
  font-size: 12px;
}
.footer-top {
  padding: 64px 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand img {
  height: 32px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}
.footer-brand p {
  line-height: 1.8;
  opacity: 0.7;
  max-width: 220px;
  font-size: 12px;
}
.footer-brand .footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.footer-brand .footer-social a {
  color: rgba(253, 250, 245, 0.5);
  font-size: 14px;
  transition: color 0.2s;
}
.footer-brand .footer-social a:hover {
  color: var(--gold-light);
}
.footer-col-title {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(253, 250, 245, 0.4);
  margin-bottom: 20px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  color: rgba(253, 250, 245, 0.6);
  font-size: 12px;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--gold-light);
}
.footer-contact p {
  margin-bottom: 8px;
}
.footer-contact a {
  color: rgba(253, 250, 245, 0.6);
  transition: color 0.2s;
}
.footer-contact a:hover {
  color: var(--gold-light);
}
.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(253, 250, 245, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-size: 11px;
  opacity: 0.45;
}
.footer-bottom a {
  color: var(--gold-light);
}

/* ─── SCROLL ANIMATIONS ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s var(--ease-out),
    transform 0.6s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .content-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .sidebar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .header-nav,
  .header-social {
    display: none;
  }
  .burger {
    display: flex;
  }
  .featured-grid {
    grid-template-columns: 1fr;
    gap: 2px;
  }
  .feat-card:first-child {
    grid-column: span 1;
  }
  .feat-card:first-child img,
  .feat-card img {
    aspect-ratio: 16/9;
  }
  /* Slider: 1 card visível no mobile */
  .hero-slide {
    flex: 0 0 100%;
  }
  .post-item {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .post-thumb {
    aspect-ratio: 16/9;
  }
  .featured-section {
    padding: 48px 0 40px;
  }
  .content-section {
    padding: 48px 0 64px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .sidebar {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-slide {
    flex: 0 0 100%;
  }
  .slider-controls {
    gap: 8px;
  }
}

/* ==========
    SOBRE
========== */

/* Hero full-bleed */
.sobre-hero {
  position: relative;
  height: 70vh;
  min-height: 480px;
  overflow: hidden;
  background: var(--ink);
}

.sobre-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.72;
  display: block;
}

.sobre-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 30%,
    rgba(26, 21, 16, 0.75) 100%
  );
}

.sobre-hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 0 0 56px;
}

.sobre-hero-eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.sobre-hero-eyebrow::before {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.sobre-hero h1 {
  /* Override the visually-hidden from main CSS */
  position: static !important;
  width: auto !important;
  height: auto !important;
  overflow: visible !important;
  clip: auto !important;
  font-family: var(--ff-display);
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.sobre-hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

/* ─── INTRO SECTION ─── */
.sobre-intro {
  padding: 96px 0 80px;
  background: var(--white);
}

.sobre-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.sobre-intro-text .section-label {
  margin-bottom: 32px;
}

.sobre-lead {
  font-family: var(--ff-display);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 400;
  line-height: 1.35;
  color: var(--ink);
  margin-bottom: 32px;
}

.sobre-body p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--ink-soft);
  margin-bottom: 20px;
}

.sobre-body p:last-child {
  margin-bottom: 0;
}

.sobre-body strong {
  color: var(--ink);
  font-weight: 500;
}

.sobre-intro-visual {
  position: sticky;
  top: 96px;
}

.sobre-intro-image {
  position: relative;
}

.sobre-intro-image img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}

.sobre-intro-image-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--ink);
  color: var(--gold-light);
  padding: 24px;
  width: 140px;
  height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 4px;
}

.sobre-intro-image-badge .badge-year {
  font-family: var(--ff-display);
  font-size: 36px;
  font-weight: 300;
  line-height: 1;
  color: var(--gold-light);
}

.sobre-intro-image-badge .badge-label {
  font-size: 8px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(226, 204, 170, 0.6);
}

/* ─── VALORES / PILLARS ─── */
.sobre-pillars {
  padding: 80px 0;
  background: var(--sand);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 48px;
}

.pillar-card {
  background: var(--white);
  padding: 40px 32px;
  transition: background 0.3s;
}

.pillar-card:hover {
  background: var(--ink);
}

.pillar-number {
  font-family: var(--ff-display);
  font-size: 56px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 20px;
  display: block;
  transition: color 0.3s;
}

.pillar-card:hover .pillar-number {
  color: var(--gold-light);
}

.pillar-title {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 12px;
  transition: color 0.3s;
}

.pillar-card:hover .pillar-title {
  color: var(--white);
}

.pillar-desc {
  font-size: 13px;
  line-height: 1.75;
  color: var(--ink-soft);
  transition: color 0.3s;
}

.pillar-card:hover .pillar-desc {
  color: rgba(226, 204, 170, 0.7);
}

/* ─── BLOCKQUOTE SECTION ─── */
.sobre-quote-section {
  padding: 100px 0;
  background: var(--ink);
}

.sobre-quote {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.sobre-quote::before {
  content: "\201C";
  font-family: var(--ff-display);
  font-size: 120px;
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.35;
  display: block;
  margin-bottom: 24px;
}

.sobre-quote p {
  font-family: var(--ff-display);
  font-size: clamp(20px, 2.8vw, 34px);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
}

.sobre-quote-divider {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 32px auto 24px;
}

.sobre-quote-author {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* ─── FUNDADORA ─── */
.sobre-founder {
  padding: 96px 0;
  background: var(--white);
}

.sobre-founder-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 72px;
  align-items: center;
}

.founder-image-wrap {
  position: relative;
}

.founder-image-wrap img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}

.founder-image-line {
  position: absolute;
  top: 20px;
  left: -20px;
  bottom: -20px;
  right: 20px;
  border: 1px solid var(--gold);
  pointer-events: none;
  z-index: -1;
}

.founder-text .section-label {
  margin-bottom: 28px;
}

.founder-name {
  font-family: var(--ff-display);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 8px;
}

.founder-role {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 32px;
  display: block;
}

.founder-bio p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--ink-soft);
  margin-bottom: 20px;
}

.founder-bio p:last-child {
  margin-bottom: 0;
}

.founder-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  padding: 10px 20px;
  border: 1px solid var(--border);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.founder-tag i {
  color: var(--gold);
  font-size: 12px;
}

/* ─── GALLERY ─── */
.sobre-gallery {
  padding: 0 0 96px;
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  background: var(--sand-deep);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
  transition:
    transform 0.6s var(--ease-out),
    opacity 0.4s;
  opacity: 0.9;
}

.gallery-item:hover img {
  transform: scale(1.06);
  opacity: 1;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(26, 21, 16, 0);
  transition: background 0.3s;
}

.gallery-item:hover::after {
  background: rgba(26, 21, 16, 0.15);
}

/* ─── CTA ─── */
.sobre-cta {
  padding: 80px 0;
  background: var(--sand);
  text-align: center;
}

.sobre-cta .section-label {
  justify-content: center;
}

.sobre-cta .section-label::after {
  display: none;
}

.sobre-cta-title {
  font-family: var(--ff-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 300;
  color: var(--ink);
  margin: 24px 0 16px;
  line-height: 1.2;
}

.sobre-cta-title em {
  font-style: italic;
  color: var(--gold-dark);
}

.sobre-cta-sub {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--ink);
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition:
    background 0.2s,
    color 0.2s;
  text-decoration: none;
}

.btn-cta-primary:hover {
  background: var(--gold-dark);
  color: var(--white);
}

.btn-cta-primary i {
  font-size: 10px;
}

.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border: 1px solid var(--gold);
  color: var(--gold-dark);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition:
    background 0.2s,
    color 0.2s;
  text-decoration: none;
  margin-left: 12px;
}

.btn-cta-secondary:hover {
  background: var(--gold);
  color: var(--white);
}

/* ─── REVEAL ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s var(--ease-out),
    transform 0.6s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .sobre-intro-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .sobre-intro-visual {
    position: static;
  }

  .sobre-intro-image img {
    aspect-ratio: 16/9;
  }

  .sobre-founder-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .founder-image-wrap img {
    aspect-ratio: 16/9;
  }

  .founder-image-line {
    display: none;
  }
}

@media (max-width: 768px) {
  .sobre-hero {
    height: 55vh;
    min-height: 360px;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .btn-cta-secondary {
    margin-left: 0;
    margin-top: 12px;
  }

  .sobre-cta .cta-btns {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .sobre-intro-image-badge {
    right: 0;
    width: 110px;
    height: 110px;
    padding: 16px;
  }

  .sobre-intro-image-badge .badge-year {
    font-size: 28px;
  }
}

/* ─── POSTS PAGE ─────────────────────────────────────────── */

/* Page header */
.posts-header {
  padding: 72px 0 56px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.posts-header-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.posts-header h1 {
  /* Override visually-hidden */
  position: static !important;
  width: auto !important;
  height: auto !important;
  overflow: visible !important;
  clip: auto !important;
  font-family: var(--ff-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.1;
}

.posts-header h1 em {
  font-style: italic;
  color: var(--gold-dark);
}

.posts-header-meta {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0.55;
  white-space: nowrap;
}

/* Posts section */
.posts-section {
  padding: 64px 0 96px;
  background: var(--sand);
}

/* Grid */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

/* Card */
.post-card {
  background: var(--white);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--ink);
  transition: background 0.2s;
}

.post-card:hover {
  color: var(--ink);
}

/* Thumb */
.post-card-thumb {
  position: relative;
  overflow: hidden;
  background: var(--sand-deep);
  aspect-ratio: 4 / 3;
  flex-shrink: 0;
}

.post-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition:
    transform 0.55s var(--ease-out),
    opacity 0.35s;
  opacity: 0.92;
}

.post-card:hover .post-card-thumb img {
  transform: scale(1.05);
  opacity: 1;
}

.post-card-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(26, 21, 16, 0);
  transition: background 0.3s;
  pointer-events: none;
}

.post-card:hover .post-card-thumb::after {
  background: rgba(26, 21, 16, 0.12);
}

/* Body */
.post-card-body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
  border-top: 1px solid var(--border);
}

.post-card-date {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 12px;
  display: block;
}

.post-card-title {
  font-family: var(--ff-display);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 400;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 12px;
  transition: color 0.2s;
}

.post-card:hover .post-card-title {
  color: var(--gold-dark);
}

.post-card-excerpt {
  font-size: 13px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 24px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dark);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  width: fit-content;
  transition:
    color 0.2s,
    border-color 0.2s;
}

.post-card-link i {
  font-size: 9px;
  transition: transform 0.2s;
}

.post-card:hover .post-card-link {
  color: var(--gold);
  border-color: var(--gold-dark);
}

.post-card:hover .post-card-link i {
  transform: translateX(3px);
}

/* Empty state */
.posts-empty {
  grid-column: 1 / -1;
  padding: 80px 40px;
  text-align: center;
  color: var(--ink-soft);
}

.posts-empty p {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 300;
  margin-bottom: 8px;
}

.posts-empty span {
  font-size: 13px;
  opacity: 0.5;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.55s var(--ease-out),
    transform 0.55s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 {
  transition-delay: 0.07s;
}

.reveal-delay-2 {
  transition-delay: 0.14s;
}

.reveal-delay-3 {
  transition-delay: 0.21s;
}

/* Responsive */
@media (max-width: 1024px) {
  .posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .posts-grid {
    grid-template-columns: 1fr;
  }

  .posts-header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .posts-header {
    padding: 48px 0 40px;
  }
}

/* ─── POST PAGE ──────────────────────────────────────────── */

/* Hero imagem */
.post-hero {
  width: 100%;
  max-height: 560px;
  overflow: hidden;
  background: var(--ink);
}

.post-hero img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  object-position: center 35%;
  display: block;
  opacity: 0.9;
}

/* Layout principal */
.post-page {
  padding: 72px 0 96px;
  background: var(--white);
}

.post-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 72px;
  align-items: start;
}

/* ─── ARTIGO ─── */
.post-article {
}

.post-article-header {
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.post-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0.5;
  margin-bottom: 20px;
}

.post-breadcrumb a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s;
}

.post-breadcrumb a:hover {
  opacity: 1;
}

.post-breadcrumb i {
  font-size: 8px;
}

.post-article-title {
  font-family: var(--ff-display);
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 300;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 20px;
}

.post-article-meta {
  display: flex;
  align-items: center;
  gap: 20px;
}

.post-article-date {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.post-article-author {
  font-size: 11px;
  color: var(--ink-soft);
  opacity: 0.5;
}

.post-article-share {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.post-article-share span {
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0.4;
}

.share-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  color: var(--ink-soft);
  font-size: 13px;
  text-decoration: none;
  transition:
    background 0.2s,
    border-color 0.2s,
    color 0.2s;
}

.share-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

/* Conteúdo do post vindo da API */
.post-content {
  font-size: 15px;
  line-height: 1.9;
  color: var(--ink-soft);
}

.post-content h2 {
  font-family: var(--ff-display);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 400;
  color: var(--ink);
  margin: 48px 0 16px;
  line-height: 1.25;
}

.post-content h3 {
  font-family: var(--ff-display);
  font-size: clamp(17px, 1.6vw, 22px);
  font-weight: 400;
  color: var(--ink);
  margin: 32px 0 12px;
}

.post-content p {
  margin-bottom: 20px;
}

.post-content p:last-child {
  margin-bottom: 0;
}

.post-content strong {
  color: var(--ink);
  font-weight: 500;
}

.post-content em {
  font-style: italic;
}

.post-content a {
  color: var(--gold-dark);
  border-bottom: 1px solid var(--gold);
  transition: color 0.2s;
}

.post-content a:hover {
  color: var(--gold);
}

.post-content img {
  width: 100%;
  height: auto;
  display: block;
  margin: 32px 0;
}

.post-content blockquote {
  margin: 36px 0;
  padding: 24px 32px;
  border-left: 2px solid var(--gold);
  background: var(--sand);
  font-family: var(--ff-display);
  font-size: clamp(17px, 1.6vw, 22px);
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  line-height: 1.5;
}

.post-content ul,
.post-content ol {
  padding-left: 20px;
  margin-bottom: 20px;
}

.post-content ul li,
.post-content ol li {
  margin-bottom: 8px;
}

/* Links de produto (classe existente no conteúdo) */
.post-content .product-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 4px 0 24px;
  padding: 10px 22px;
  background: var(--gold);
  color: var(--white) !important;
  text-decoration: none !important;
  border: none !important;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background 0.2s;
}

.post-content .product-link:hover {
  background: var(--gold-dark);
  color: var(--white) !important;
}

/* Post footer */
.post-article-footer {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.post-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.2s;
}

.post-back i {
  font-size: 9px;
  transition: transform 0.2s;
}

.post-back:hover {
  color: var(--gold-dark);
}

.post-back:hover i {
  transform: translateX(-3px);
}

.post-author-tag {
  font-size: 11px;
  color: var(--ink-soft);
  opacity: 0.45;
  text-align: right;
}

/* ─── SIDEBAR ─── */
.post-sidebar {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.sidebar-widget {
}

.sidebar-widget-title {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
}

/* Social widget */
.sidebar-social {
  display: flex;
  gap: 8px;
}

.sidebar-social-link {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 8px;
  border: 1px solid var(--border);
  color: var(--ink-soft);
  font-size: 13px;
  text-decoration: none;
  transition:
    background 0.2s,
    border-color 0.2s,
    color 0.2s;
}

.sidebar-social-link span {
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sidebar-social-link:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--gold-light);
}

/* Recent posts widget */
.sidebar-recent-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sidebar-recent-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  align-items: flex-start;
}

.sidebar-recent-item:first-child {
  padding-top: 0;
}

.sidebar-recent-item:last-child {
  border-bottom: none;
}

.sidebar-recent-thumb {
  flex: 0 0 60px;
  width: 60px;
  height: 60px;
  overflow: hidden;
  background: var(--sand-deep);
}

.sidebar-recent-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.sidebar-recent-item:hover .sidebar-recent-thumb img {
  transform: scale(1.1);
}

.sidebar-recent-body {
}

.sidebar-recent-title {
  font-family: var(--ff-display);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s;
}

.sidebar-recent-item:hover .sidebar-recent-title {
  color: var(--gold-dark);
}

.sidebar-recent-date {
  font-size: 10px;
  color: var(--ink-soft);
  opacity: 0.5;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .post-layout {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .post-sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 640px) {
  .post-hero img {
    max-height: 320px;
  }

  .post-page {
    padding: 48px 0 72px;
  }

  .post-article-meta {
    flex-wrap: wrap;
    gap: 12px;
  }

  .post-article-share {
    margin-left: 0;
    width: 100%;
  }

  .post-sidebar {
    grid-template-columns: 1fr;
  }
}

/* ─── CONTATO PAGE ───────────────────────────────────────── */

.contato-page {
  padding: 80px 0 104px;
  background: var(--white);
}

.contato-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 80px;
  align-items: start;
}

/* ─── FORM SIDE ─── */
.contato-form-side .section-label {
  margin-bottom: 32px;
}

.contato-lead {
  font-family: var(--ff-display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 8px;
}

.contato-lead em {
  font-style: italic;
  color: var(--gold-dark);
}

.contato-sub {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 48px;
  line-height: 1.7;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
  margin-top: 2px;
}

.form-field {
  display: flex;
  flex-direction: column;
}

.form-field label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0.55;
  margin-bottom: 8px;
}

.form-field input,
.form-field textarea {
  background: var(--sand);
  border: 1px solid transparent;
  border-bottom-color: var(--border);
  padding: 14px 16px;
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--ink);
  outline: none;
  transition:
    border-color 0.2s,
    background 0.2s;
  resize: none;
  -webkit-appearance: none;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--ink-soft);
  opacity: 0.35;
}

.form-field input:focus,
.form-field textarea:focus {
  background: var(--sand-deep);
  border-color: var(--gold);
}

.form-field textarea {
  min-height: 160px;
}

/* Submit */
.form-submit {
  margin-top: 2px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  background: var(--ink);
  color: var(--gold-light);
  font-family: var(--ff-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s;
}

.btn-submit i {
  font-size: 10px;
  transition: transform 0.2s;
}

.btn-submit:hover {
  background: var(--gold-dark);
  color: var(--white);
}

.btn-submit:hover i {
  transform: translateX(3px);
}

.form-notice {
  font-size: 11px;
  color: var(--ink-soft);
  opacity: 0.4;
}

/* Feedback states */
.form-feedback {
  display: none;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 14px 20px;
  font-size: 13px;
}

.form-feedback.success {
  background: #f0f7f0;
  color: #2d6a2d;
  border-left: 2px solid #4caf50;
}

.form-feedback.error {
  background: #fdf0f0;
  color: #7a2020;
  border-left: 2px solid #e57373;
}

.form-feedback.visible {
  display: flex;
}

/* ─── INFO SIDE ─── */
.contato-info-side {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.info-widget-title {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
}

/* Info items */
.info-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: var(--ink);
  transition: color 0.2s;
}

.info-item:first-child {
  padding-top: 0;
}

.info-item:last-child {
  border-bottom: none;
}

.info-item-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  color: var(--gold-dark);
  font-size: 13px;
  transition:
    background 0.2s,
    border-color 0.2s,
    color 0.2s;
}

a.info-item:hover .info-item-icon {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.info-item-body {
}

.info-item-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0.45;
  margin-bottom: 4px;
  display: block;
}

.info-item-value {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
}

a.info-item:hover .info-item-value {
  color: var(--gold-dark);
}

/* Social */
.info-social {
  display: flex;
  gap: 8px;
}

.info-social-link {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 6px;
  border: 1px solid var(--border);
  color: var(--ink-soft);
  font-size: 14px;
  text-decoration: none;
  transition:
    background 0.2s,
    border-color 0.2s,
    color 0.2s;
}

.info-social-link span {
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.info-social-link:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--gold-light);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .contato-layout {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .contato-info-side {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .contato-info-side {
    grid-template-columns: 1fr;
  }

  .contato-page {
    padding: 56px 0 80px;
  }

  .form-submit {
    flex-direction: column;
    align-items: flex-start;
  }
}
