/* hubsauto — paleta da marca (logo: #1a1a1a, #c29c64, #ffffff) */
:root {
  --brand-dark: #1a1a1a;
  --brand-gold: #c29c64;
  --brand-gold-light: #d4b07a;
  --brand-gold-dark: #a68452;
  --brand-bronze: #8b6f47;
  --color-bg: #f4f1eb;
  --color-bg-2: #ebe6dc;
  --color-surface: rgba(255, 255, 255, 0.82);
  --color-surface-solid: #ffffff;
  --color-ink: #1a1a1a;
  --color-muted: #5c5648;
  --color-accent: #c29c64;
  --color-accent-2: #a68452;
  --color-violet: #8b6f47;
  --color-hero-overlay: rgba(26, 26, 26, 0.82);
  --shadow-sm: 0 1px 2px rgba(26, 26, 26, 0.06);
  --shadow-md: 0 18px 50px rgba(26, 26, 26, 0.1);
  --shadow-glow: 0 0 0 1px rgba(255, 255, 255, 0.55) inset, 0 20px 50px rgba(194, 156, 100, 0.14);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --header-h: 84px;
  --font: "Montserrat", system-ui, -apple-system, sans-serif;
  --max: 1140px;
  --blur-nav: 20px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }

  .nav-link--cta,
  .cta-shell,
  .hero-deco {
    animation: none !important;
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-ink);
  background-color: var(--color-bg);
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 120% 80% at 0% -20%, rgba(194, 156, 100, 0.16), transparent 55%),
    radial-gradient(ellipse 90% 60% at 100% 0%, rgba(139, 111, 74, 0.12), transparent 50%),
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(194, 156, 100, 0.08), transparent 45%),
    linear-gradient(180deg, #f4f1eb 0%, #ebe6dc 100%);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #8a6f45;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.2s var(--ease-out);
}

a:hover {
  color: var(--brand-gold-dark);
}

.container {
  width: min(100% - 1.5rem, var(--max));
  margin-inline: auto;
}

@media (min-width: 480px) {
  .container {
    width: min(100% - 2rem, var(--max));
  }
}

/* ——— Header (topo preto) ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #1e1e1e;
  /* Sem backdrop-filter no topo: evita novo bloco de contenção e quebra de position:fixed do menu mobile */
  border-bottom: 1px solid rgba(194, 156, 100, 0.28);
  transition: box-shadow 0.35s var(--ease-out), background 0.35s var(--ease-out);
}

.site-header.is-scrolled {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  background: #1e1e1e;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: #fafaf9;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.12rem;
  letter-spacing: -0.03em;
}

.brand:hover {
  color: #fafaf9;
}

.brand-logo {
  flex-shrink: 0;
  display: block;
  width: auto;
  object-fit: contain;
}

.site-header .brand-logo {
  height: 60px;
  max-width: min(300px, 70vw);
  filter: none !important;
  -webkit-filter: none !important;
  box-shadow: none !important;
  text-shadow: none;
}

.brand-logo--footer {
  height: 52px;
  max-width: min(260px, 70vw);
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.35));
}

.brand-text {
  text-transform: lowercase;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fafaf9;
}

.nav-toggle {
  position: relative;
  z-index: 250;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  box-shadow: none;
  transition: transform 0.2s var(--ease-out), background 0.2s, border-color 0.2s;
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(194, 156, 100, 0.35);
}

.nav-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  margin-inline: auto;
  background: linear-gradient(90deg, #fafaf9, #d4d4d4);
  border-radius: 2px;
}

.site-nav {
  position: fixed;
  left: 0;
  right: 0;
  top: var(--header-h-measured, var(--header-h));
  bottom: 0;
  z-index: 200;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
  background: rgba(18, 18, 18, 0.98);
  padding: 1.25rem 1.5rem 2rem;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease-out), visibility 0.35s step-end;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  border-top: 1px solid rgba(194, 156, 100, 0.22);
  visibility: hidden;
  pointer-events: none;
}

.site-nav.is-open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
  transition: transform 0.35s var(--ease-out), visibility 0s step-start;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.nav-link {
  display: block;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  color: rgba(250, 250, 249, 0.92);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.nav-link:hover {
  background: rgba(194, 156, 100, 0.18);
  color: #fff;
}

.nav-link.is-active {
  background: rgba(194, 156, 100, 0.22);
  color: #fff;
}

.nav-link--cta {
  margin-top: 0.65rem;
  text-align: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-gold-light) 0%, var(--brand-gold) 45%, var(--brand-gold-dark) 100%);
  background-size: 200% 200%;
  color: #1a1a1a !important;
  font-weight: 700;
  box-shadow: 0 12px 32px rgba(194, 156, 100, 0.38);
  animation: gradient-shift 8s ease infinite;
}

@keyframes gradient-shift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.nav-link--cta:hover {
  filter: brightness(1.06);
  color: #1a1a1a !important;
  transform: translateY(-1px);
}

.nav-link--cta.is-active {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.45), 0 12px 32px rgba(194, 156, 100, 0.42);
}

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

  .site-nav {
    position: static;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    z-index: auto;
    width: auto;
    max-width: none;
    padding: 0;
    transform: none;
    background: transparent;
    overflow: visible;
    border-top: 0;
    visibility: visible;
    pointer-events: auto;
    transition: none;
  }

  .nav-list {
    flex-direction: row;
    align-items: center;
    gap: 0.2rem;
    padding: 0.25rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-link {
    padding: 0.55rem 1rem;
    border-radius: 999px;
    font-size: 0.88rem;
    color: rgba(250, 250, 249, 0.88);
  }

  .nav-link:hover,
  .nav-link.is-active {
    color: #fff;
  }

  .nav-link--cta {
    margin-top: 0;
    margin-left: 0.15rem;
    padding-inline: 1.25rem;
    animation: none;
    background: linear-gradient(135deg, var(--brand-gold), var(--brand-gold-dark));
  }
}

/* Main */
main {
  min-height: 50vh;
}

/* ——— Hero ——— */
.hero {
  position: relative;
  color: #fff;
  padding: clamp(2.5rem, 7vw, 4rem) 0 clamp(3rem, 10vw, 5rem);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 100% 80% at 10% 20%, rgba(194, 156, 100, 0.35), transparent 50%),
    radial-gradient(ellipse 80% 60% at 90% 80%, rgba(139, 111, 74, 0.3), transparent 45%),
    linear-gradient(125deg, var(--color-hero-overlay) 0%, rgba(26, 26, 26, 0.55) 45%, rgba(26, 26, 26, 0.82) 100%),
    url("https://images.unsplash.com/photo-1558002038-1055907df827?auto=format&fit=crop&w=1800&q=78") center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.4;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cpath d='M0 40h40M40 0v40' fill='none' stroke='white' stroke-width='0.35' opacity='0.25'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-deco {
  position: absolute;
  width: min(520px, 90vw);
  height: min(520px, 90vw);
  top: -18%;
  right: -12%;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(194, 156, 100, 0.45), transparent 55%);
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
  animation: float-blob 14s ease-in-out infinite;
}

@keyframes float-blob {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-4%, 6%) scale(1.05);
  }
}

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

.hero-glass {
  max-width: 640px;
  padding: clamp(1.5rem, 4vw, 2.25rem);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  animation: hero-in 0.9s var(--ease-out) both;
}

@keyframes hero-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.9rem 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 0 24px rgba(194, 156, 100, 0.2);
}

.hero-pill::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-gold-light), var(--brand-gold));
  box-shadow: 0 0 12px rgba(194, 156, 100, 0.85);
}

.hero-eyebrow {
  margin: 0 0 1rem;
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 5vw, 3.1rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.045em;
  max-width: 16ch;
  text-wrap: balance;
}

.hero-lead {
  margin: 0 0 1.85rem;
  font-size: 1.06rem;
  max-width: 38ch;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 500;
}

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

/* ——— Buttons ——— */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.94rem;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.2s var(--ease-out), box-shadow 0.25s, filter 0.2s;
}

.btn:active {
  transform: translateY(1px) scale(0.99);
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-gold-light) 0%, var(--brand-gold) 40%, var(--brand-gold-dark) 100%);
  background-size: 200% auto;
  color: #1a1a1a;
  box-shadow: 0 14px 40px rgba(194, 156, 100, 0.45);
}

.btn-primary span {
  position: relative;
  z-index: 1;
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.25) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.6s var(--ease-out);
}

.btn-primary:hover {
  filter: brightness(1.04);
  color: #1a1a1a;
  box-shadow: 0 18px 48px rgba(194, 156, 100, 0.5);
}

.btn-primary:hover::after {
  transform: translateX(100%);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

/* ——— Sections ——— */
.section {
  padding: clamp(2.75rem, 7vw, 5rem) 0;
  position: relative;
}

.section--tight {
  padding-top: 2rem;
}

.section-title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.65rem, 3.2vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.15;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  display: block;
  margin-top: 0.5rem;
  width: 56px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-2));
  box-shadow: 0 2px 12px rgba(194, 156, 100, 0.45);
}

.section-intro {
  margin: 0 0 2rem;
  color: var(--color-muted);
  max-width: 58ch;
  font-size: 1.02rem;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.65s var(--ease-out),
    transform 0.65s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ——— Cards ——— */
.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.35rem;
}

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

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

.card {
  position: relative;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.45rem;
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: hidden;
  transition:
    transform 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease-out),
    border-color 0.25s;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-violet), var(--color-accent-2));
  opacity: 0;
  transition: opacity 0.35s;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md), 0 24px 60px rgba(194, 156, 100, 0.12);
  border-color: rgba(194, 156, 100, 0.25);
}

.card:hover::before {
  opacity: 1;
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  margin-bottom: 1.1rem;
  background: linear-gradient(145deg, rgba(194, 156, 100, 0.18), rgba(139, 111, 74, 0.12));
  border: 1px solid rgba(194, 156, 100, 0.2);
  box-shadow: 0 8px 24px rgba(194, 156, 100, 0.12);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}

.card:hover .card-icon {
  transform: scale(1.06) rotate(-3deg);
  box-shadow: 0 12px 28px rgba(194, 156, 100, 0.22);
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

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

/* ——— Benefits ——— */
.benefits {
  position: relative;
  background: linear-gradient(165deg, #0d0d0d 0%, var(--brand-dark) 45%, #141414 100%);
  color: #e7e5e4;
  overflow: hidden;
}

.benefits::before {
  content: "";
  position: absolute;
  inset: -20% -10%;
  background:
    radial-gradient(circle at 20% 30%, rgba(194, 156, 100, 0.15), transparent 40%),
    radial-gradient(circle at 85% 70%, rgba(139, 111, 74, 0.18), transparent 42%);
  pointer-events: none;
}

.benefits .container {
  position: relative;
  z-index: 1;
}

.benefits .section-title {
  color: #fff;
}

.benefits .section-title::after {
  box-shadow: 0 2px 18px rgba(194, 156, 100, 0.45);
}

.benefits .section-intro {
  color: #a8a29e;
}

.benefit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
}

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

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

.benefit {
  padding: 1.35rem 1.2rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(148, 163, 184, 0.18);
  backdrop-filter: blur(10px);
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
}

.benefit:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(194, 156, 100, 0.35);
  transform: translateY(-2px);
}

.benefit strong {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 0.45rem;
  font-weight: 700;
}

.benefit strong::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-2));
  box-shadow: 0 0 12px rgba(194, 156, 100, 0.6);
}

.benefit span {
  font-size: 0.9rem;
  color: #a8a29e;
  line-height: 1.55;
}

/* ——— CTA ——— */
.cta-strip {
  padding: clamp(1.5rem, 5vw, 3rem) 0;
}

.cta-shell {
  padding: 2px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--color-accent), var(--color-violet), var(--color-accent-2));
  background-size: 200% 200%;
  animation: gradient-shift 10s ease infinite;
  box-shadow: 0 20px 50px rgba(139, 111, 74, 0.2);
}

.cta-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
  padding: clamp(1.75rem, 4vw, 2.25rem);
  border-radius: calc(var(--radius-xl) - 2px);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
}

@media (min-width: 720px) {
  .cta-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.cta-copy {
  flex: 1;
  min-width: 0;
}

.cta-copy h2 {
  margin: 0;
  font-size: clamp(1.25rem, 2.5vw, 1.55rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.cta-copy p {
  margin: 0.5rem 0 0;
  color: var(--color-muted);
  max-width: 50ch;
  font-size: 1rem;
}

/* ——— Page hero (internas) ——— */
.page-hero {
  position: relative;
  padding: clamp(2.75rem, 6vw, 4rem) 0 2.25rem;
  overflow: hidden;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(238, 242, 249, 0.5) 100%);
}

.page-hero--mesh::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 100% 0%, rgba(194, 156, 100, 0.12), transparent 50%),
    radial-gradient(ellipse 50% 50% at 0% 100%, rgba(139, 111, 74, 0.1), transparent 45%);
  pointer-events: none;
}

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

.page-hero-eyebrow {
  margin: 0 0 0.6rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-gold-dark);
}

.page-hero h1 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.85rem, 3.8vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.page-hero p {
  margin: 0;
  color: var(--color-muted);
  max-width: 56ch;
  font-size: 1.05rem;
}

/* ——— Prose ——— */
.prose {
  max-width: 68ch;
}

.prose h2 {
  margin: 2.25rem 0 0.85rem;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.prose p {
  margin: 0 0 1.1rem;
  color: var(--color-muted);
}

.prose ul {
  margin: 0 0 1.1rem 1.15rem;
  color: var(--color-muted);
}

/* ——— Contato ——— */
.contact-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: start;
  }
}

.form-card {
  background: var(--color-surface);
  padding: clamp(1.5rem, 4vw, 2rem);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(14px);
}

.form-row {
  margin-bottom: 1.1rem;
}

.form-row label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--color-ink);
  letter-spacing: 0.02em;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 0.82rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  font-family: inherit;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.95);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(194, 156, 100, 0.15);
}

.form-row textarea {
  min-height: 150px;
  resize: vertical;
}

.form-error {
  color: #dc2626;
  font-size: 0.82rem;
  margin-top: 0.35rem;
  font-weight: 500;
}

.alert {
  padding: 1rem 1.15rem;
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
  font-weight: 500;
}

.alert--success {
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: #065f46;
}

.alert--error {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #991b1b;
}

.contact-aside {
  color: var(--color-muted);
}

.contact-aside h2 {
  margin: 0 0 0.85rem;
  font-size: 1.12rem;
  color: var(--color-ink);
  font-weight: 800;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.contact-list li {
  margin-bottom: 0.55rem;
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow-md);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 220px;
}

/* ——— Footer ——— */
.site-footer {
  position: relative;
  background: linear-gradient(180deg, #121212 0%, var(--brand-dark) 100%);
  color: #d1d5db;
  margin-top: 0;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(194, 156, 100, 0.55), rgba(212, 176, 122, 0.35), transparent);
}

.footer-grid {
  display: grid;
  gap: 2rem;
  padding: 3rem 0 2rem;
}

@media (min-width: 720px) {
  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    align-items: start;
  }
}

.brand--footer {
  color: #fff;
}

.brand--footer:hover {
  color: #fff;
}

.footer-tagline {
  margin: 0.85rem 0 0;
  font-size: 0.9rem;
  color: #94a3b8;
  max-width: 34ch;
  line-height: 1.55;
}

.footer-heading {
  margin: 0 0 0.85rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #94a3b8;
}

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

.footer-list li {
  margin-bottom: 0.5rem;
}

.footer-list a {
  color: #e2e8f0;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.footer-list a:hover {
  color: var(--brand-gold-light);
}

.social-buttons {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(148, 163, 184, 0.15);
  color: #fff;
  font-weight: 800;
  font-size: 0.82rem;
  text-decoration: none;
  transition: transform 0.2s, background 0.2s, border-color 0.2s;
}

.social-btn:hover {
  background: rgba(194, 156, 100, 0.25);
  border-color: rgba(194, 156, 100, 0.4);
  color: #fff;
  transform: translateY(-2px);
}

.footer-note {
  margin: 0.85rem 0 0;
  font-size: 0.72rem;
  color: #64748b;
  max-width: 30ch;
  line-height: 1.45;
}

.footer-map-wrap {
  border-top: 1px solid rgba(51, 65, 85, 0.5);
  padding: 2rem 0 1rem;
}

.footer-heading--map {
  margin-bottom: 0.85rem;
}

.footer-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(71, 85, 105, 0.5);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.footer-map iframe {
  display: block;
  width: 100%;
  height: 220px;
}

.footer-bottom {
  border-top: 1px solid rgba(51, 65, 85, 0.45);
  padding: 1.35rem 0;
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: #64748b;
}

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

.footer-bottom p {
  margin: 0;
}

.footer-domain {
  opacity: 0.9;
  font-variant-numeric: tabular-nums;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Overlay de envio de formulário (bloqueia a página até o carregamento da resposta) */
.form-loading-overlay {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(26, 26, 26, 0.62);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s var(--ease-out), visibility 0.22s;
}

.form-loading-overlay.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.form-loading-active {
  overflow: hidden;
}

.form-loading-inner {
  text-align: center;
  max-width: 20rem;
}

.form-loading-spinner {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1rem;
  border: 3px solid rgba(255, 255, 255, 0.25);
  border-top-color: var(--brand-gold);
  border-radius: 50%;
  animation: form-loading-spin 0.75s linear infinite;
}

.form-loading-text {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.02em;
}

@keyframes form-loading-spin {
  to {
    transform: rotate(360deg);
  }
}
