/* ============================================================
   DESIGN SYSTEM — Danielle Nora
   Estética: Cinematic Editorial Luxury
   ============================================================ */
:root {
  --ink:         #07050a;
  --surface:     #0f0b0c;
  --surface-2:   #171014;
  --border:      #281b1e;
  --border-soft: #1c1315;
  --text:        #e8ddd8;
  --text-muted:  #a09088;
  --text-dim:    #5e4a4c;

  /* Paleta da marca — referência de identidade visual */
  --wine-deep:   #6e1a24;
  --wine:        #6e1a24;
  --crimson:     #8e1a1a;
  --chocolate:   #5c2a1e;
  --taupe:       #8b6358;
  --cream:       #c4b0a8;

  /* Aliases para manter compatibilidade com tokens existentes */
  --gold:        #ffffff;
  --gold-light:  #ffffff;
  --gold-pale:   #c4b0a8;

  --green:       #25d366;
  --green-dark:  #1ea855;

  --serif: 'Josefin Sans', 'Helvetica Neue', Arial, sans-serif;
  --sans:  'Outfit', 'DM Sans', system-ui, sans-serif;

  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:  cubic-bezier(0.45, 0, 0.55, 1);

  --max-w:        1140px;
  --radius:       8px;
  --radius-lg:    14px;
  --radius-xl:    22px;
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--ink);
  color: var(--text);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* Grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 9998;
}

/* ============================================================
   ACESSIBILIDADE
   ============================================================ */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--gold);
  color: #000;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-weight: 600;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* ============================================================
   TIPOGRAFIA
   ============================================================ */
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.15;
  color: var(--cream);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

h1 { font-size: clamp(2rem, 6vw, 3.8rem); font-weight: 700; line-height: 1.08; letter-spacing: 0.08em; }
h2 { font-size: clamp(1.6rem, 4vw, 2.6rem); letter-spacing: 0.07em; }
h3 { font-size: clamp(1rem, 1.8vw, 1.15rem); letter-spacing: 0.04em; text-transform: none; }

p {
  color: var(--text-muted);
  margin-bottom: var(--space-sm, 1rem);
}
p:last-child { margin-bottom: 0; }

em { font-style: italic; color: var(--cream); }

/* ============================================================
   BOTÕES
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.875rem;
  border-radius: 8px;
  font-family: var(--serif);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  border: 1.5px solid transparent;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-green {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
  box-shadow: 0 0 0 0 rgba(37,211,102,0);
}
.btn-green:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  box-shadow: 0 8px 28px rgba(37,211,102,0.28);
}

@keyframes pulse-cream {
  0%, 100% { box-shadow: 0 0 0 0 rgba(196,176,168,0); }
  55%       { box-shadow: 0 0 0 9px rgba(196,176,168,0.15); }
}
@keyframes pulse-wine {
  0%, 100% { box-shadow: 0 0 0 0 rgba(110,26,36,0); }
  55%       { box-shadow: 0 0 0 9px rgba(110,26,36,0.28); }
}

.btn-cream {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
  animation: pulse-cream 2.8s ease-in-out infinite;
}
.btn-cream:hover {
  animation: none;
  background: #d4c2ba;
  border-color: #d4c2ba;
  box-shadow: 0 8px 28px rgba(196,176,168,0.28);
}

.btn-wine {
  background: var(--wine-deep);
  color: #fff;
  border-color: var(--wine-deep);
  animation: pulse-wine 2.8s ease-in-out infinite;
}
.btn-wine:hover {
  animation: none;
  background: #5a1520;
  border-color: #5a1520;
  box-shadow: 0 8px 28px rgba(110,26,36,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: rgba(255,255,255,0.18);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.btn-ghost-gold {
  background: transparent;
  color: var(--gold-light);
  border-color: rgba(255,255,255,0.25);
}
.btn-ghost-gold:hover {
  background: rgba(255,255,255,0.07);
  border-color: var(--gold);
}

.btn-lg { padding: 1rem 2.25rem; font-size: 0.82rem; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 1.5rem;
}
.container-narrow { max-width: 720px; }
.section { padding-block: 5rem; }
.section-alt { background: var(--surface); }

/* ============================================================
   SECTION HEADER
   ============================================================ */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1rem;
}
.section-tag::before,
.section-tag::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--cream);
  opacity: 0.6;
}
.section-title { margin-bottom: 0.85rem; }
.section-desc {
  color: var(--text-muted);
  max-width: 520px;
  margin-inline: auto;
  font-size: 1.05rem;
  line-height: 1.75;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(8, 7, 10, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-color: var(--border-soft);
  box-shadow: 0 2px 30px rgba(0,0,0,0.5);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: var(--max-w);
  margin-inline: auto;
  padding: 1.25rem 1.5rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  color: var(--cream);
  text-decoration: none;
}
.brand-monogram {
  height: 64px;
  width: auto;
  flex-shrink: 0;
}
.brand-divider {
  display: block;
  width: 1px;
  height: 48px;
  background: currentColor;
  opacity: 0.3;
  flex-shrink: 0;
  margin-inline: 11px;
}
.brand-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.brand-name {
  display: block;
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1;
}
.brand-sub {
  display: block;
  font-family: var(--serif);
  font-size: 0.52rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1;
}

/* Hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius);
}
.nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s var(--ease-out), opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav dropdown */
.nav-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(8,7,10,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 1.5rem 1.75rem;
}
.nav-menu.open { display: block; }
.nav-menu ul { display: flex; flex-direction: column; gap: 0.1rem; }
.nav-menu a {
  display: block;
  padding: 0.7rem 0.5rem;
  font-size: 1rem;
  color: var(--text-muted);
  border-radius: var(--radius);
  transition: color 0.15s;
}
.nav-menu a:hover { color: var(--gold-light); }

.nav-plantao {
  display: inline-flex !important;
  align-items: center;
  margin-top: 0.75rem;
  padding: 0.75rem 1.5rem !important;
  background: transparent !important;
  color: var(--cream) !important;
  border: 1px solid rgba(196,176,168,0.3) !important;
  border-radius: 3px !important;
  font-family: var(--serif) !important;
  font-weight: 600 !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  width: fit-content;
}
.nav-plantao:hover { border-color: var(--cream) !important; color: #fff !important; }

.nav-cta {
  display: inline-flex !important;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.5rem;
  padding: 0.75rem 1.5rem !important;
  background: var(--wine-deep) !important;
  color: #fff !important;
  border-radius: 3px !important;
  font-family: var(--serif) !important;
  font-weight: 600 !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  width: fit-content;
}
.nav-cta:hover { background: #5a1520 !important; color: #fff !important; }

/* ============================================================
   HERO — Typography-first, centered, no photo
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  overflow: hidden;
  background: var(--ink);
}

.hero-bg { display: none; }
.hero-overlay { display: none; }

.hero-split {
  display: flex;
  flex: 1;
  align-items: center;
  width: 100%;
  max-width: 1300px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.hero-photo {
  display: none;
}

/* Portrait inline — estático, entre o título e o texto */
.hero-portrait {
  width: 100%;
  max-height: 52svh;
  pointer-events: none;
  display: flex;
  justify-content: center;
  overflow: hidden;
  margin: 0.75rem 0 1.5rem;
}
.hero-portrait__img {
  display: block;
  max-height: 52svh;
  width: auto;
  object-fit: contain;
  object-position: center bottom;
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 6%,
    black 82%,
    rgba(0,0,0,0.8) 92%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 6%,
    black 82%,
    rgba(0,0,0,0.8) 92%,
    transparent 100%
  );
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(196,176,168,0.3), transparent);
  z-index: 3;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 6rem 0 2rem;
  width: 100%;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  padding: 0.45rem 1.1rem;
  border: 1px solid rgba(196,176,168,0.28);
  border-radius: 2px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.85;
  margin-bottom: 2rem;
}

.hero-title {
  margin-bottom: 1rem;
}

.ht-line1 {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 4.5vw, 3.2rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.1;
  white-space: nowrap;
}

.ht-line2 {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 3.8vw, 2.55rem);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.01em;
  color: var(--cream);
  line-height: 1.2;
}
.ht-line2 strong {
  font-weight: 700;
  font-style: normal;
}

.hero-sub {
  font-family: var(--serif);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.25rem;
  margin-top: 0.25rem;
}

.hero-location {
  margin-top: 2.5rem;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.55;
}

.hero-desc {
  font-size: 0.93rem;
  color: rgba(196,176,168,0.8);
  margin-bottom: 2rem;
  max-width: 480px;
  margin-inline: auto;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}
.hero-actions .btn {
  width: 100%;
}
@media (min-width: 560px) {
  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .hero-actions .btn {
    width: auto;
  }
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  right: 1.5rem;
  z-index: 2;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.45;
}
.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--cream), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line {
  0%, 100% { transform: scaleY(1); transform-origin: top; }
  50% { transform: scaleY(0.4); transform-origin: top; }
}

/* ============================================================
   ÁREAS DE ATUAÇÃO
   ============================================================ */
.areas-grid-grouped {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.area-group {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.area-group:hover {
  border-color: rgba(196,176,168,0.15);
  box-shadow: inset 3px 0 0 var(--gold), 0 10px 36px rgba(0,0,0,0.22);
  transform: translateY(-3px);
}

.area-group-title {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-align: left;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  position: relative;
}
.area-group-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, var(--gold) 0%, rgba(196,176,168,0.12) 55%, transparent 100%);
}

.area-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  list-style: none;
}
.area-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.93rem;
  color: rgba(255,255,255,0.76);
  line-height: 1.5;
}
.area-list li::before {
  content: '';
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  margin-top: 0.48em;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.85;
}

/* ============================================================
   SOBRE
   ============================================================ */
.sobre-layout {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.sobre-photo-wrap {
  position: relative;
  align-self: flex-start;
}
.sobre-photo-wrap::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: 10px;
  bottom: 10px;
  border: 1px solid var(--gold);
  border-radius: var(--radius-lg);
  opacity: 0.25;
  z-index: 0;
}
.sobre-photo {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-height: 440px;
}
.sobre-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.sobre-content { display: flex; flex-direction: column; }
.sobre-oab {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.sobre-content h2 { margin-bottom: 0.25rem; }
.sobre-divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin: 1.5rem 0;
}
.sobre-content p {
  font-size: 0.97rem;
  line-height: 1.82;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.sobre-hook {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}
.sobre-content .btn { margin-top: 0.75rem; align-self: center; }

/* ============================================================
   DIFERENCIAIS
   ============================================================ */
.diferenciais-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.diferencial {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 1.25rem;
  align-items: start;
}
.diferencial-num {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.2;
  line-height: 0.85;
  padding-top: 0.2rem;
}
.diferencial-body {}
.diferencial-body h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.diferencial-body p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.75;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { display: flex; flex-direction: column; gap: 0; }

.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 0;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--cream);
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: color 0.15s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--gold-light); }

.faq-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--gold);
  transition: transform 0.3s var(--ease-out), background 0.2s, border-color 0.2s;
  font-family: var(--sans);
}
.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  background: rgba(255,255,255,0.06);
  border-color: var(--gold);
}

.faq-item p {
  padding-bottom: 1.5rem;
  font-size: 0.97rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: 0;
  line-height: 1.78;
}

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-final {
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 100%, rgba(255,255,255,0.03) 0%, transparent 70%);
}
.cta-box {
  position: relative;
  z-index: 1;
  text-align: center;
}
.cta-box h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 1.25rem;
}
.cta-box > p:not(.cta-note) {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 460px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}
.cta-note {
  margin-top: 1.25rem;
  font-size: 0.72rem;
  color: rgba(196,176,168,0.6);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ============================================================
   FOOTER
   ============================================================ */
/* ── Footer ─────────────────────────────────────── */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
}

/* Main block: logo + tagline + social + badge */
.footer-main {
  padding-block: 2.5rem 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  color: var(--cream);
  margin-bottom: 1rem;
}
.footer-brand .brand-monogram { height: 68px; }
.footer-brand .brand-divider  { height: 46px; }
.footer-brand .brand-name     { font-size: 1rem; }
.footer-brand .brand-sub      { font-size: 0.52rem; color: rgba(255,255,255,0.7); }

.footer-tagline {
  font-size: 0.88rem;
  color: rgba(196,176,168,0.75);
  line-height: 1.55;
  margin-bottom: 1.25rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.footer-social__link {
  color: var(--cream);
  opacity: 0.7;
  transition: opacity 0.15s;
}
.footer-social__link:hover { opacity: 1; }

.footer-badge {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1.6;
}

/* Bottom copyright bar */
.footer-bar {
  border-top: 1px solid var(--border);
  padding-block: 0.9rem;
}
.footer-bar .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 0.55rem;
}
.footer-copy {
  flex: 1 1 auto;
  font-size: 0.72rem;
  color: rgba(196,176,168,0.5);
  letter-spacing: 0.02em;
}
.footer-bar-sep {
  font-size: 0.72rem;
  color: rgba(196,176,168,0.3);
}
.footer-privacy {
  font-size: 0.72rem;
  color: rgba(196,176,168,0.5);
  transition: color 0.15s;
}
.footer-privacy:hover { color: var(--cream); }

/* ============================================================
   BANNER URGÊNCIA
   ============================================================ */
.urgencia-band {
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-block: 2.5rem;
  text-align: center;
}
.urgencia-title {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 3.5vw, 1.5rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.45;
  margin-bottom: 1.5rem;
}
.btn-urgencia {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.25rem;
  border: 1.5px solid var(--wine-deep);
  border-radius: 8px;
  background: var(--wine-deep);
  font-family: var(--serif);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}
.btn-urgencia:hover {
  background: #5a1520;
  border-color: #5a1520;
  box-shadow: 0 8px 28px rgba(110,26,36,0.4);
  transform: translateY(-2px);
}

/* ============================================================
   WHATSAPP FLUTUANTE
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 200;
  width: 58px;
  height: 58px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35), 0 2px 8px rgba(0,0,0,0.3);
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s ease;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,0.5), 0 2px 8px rgba(0,0,0,0.3);
}

/* ============================================================
   TABLET — 640px+
   ============================================================ */
@media (min-width: 640px) {
  .areas-grid-grouped { grid-template-columns: repeat(2, 1fr); }
  .diferenciais-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   DESKTOP — 900px+
   ============================================================ */
@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .nav-menu {
    display: flex !important;
    position: static;
    background: none;
    border: none;
    padding: 0;
  }
  .nav-menu ul { flex-direction: row; align-items: center; gap: 0; }
  .nav-menu a { padding: 0.5rem 0.8rem; font-size: 0.88rem; color: rgba(237,232,224,0.72); }
  .nav-menu a:hover { color: var(--gold-light); }
  .nav-cta { margin-top: 0 !important; margin-left: 0.5rem !important; }

  .hero-split {
    flex-direction: row;
    align-items: stretch;
    gap: 0;
    padding-inline: 4rem;
    min-height: 100svh;
  }

  .hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 3rem 2rem 0;
    text-align: left;
    max-width: 580px;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .hero-photo {
    display: flex;
    flex: 0 0 460px;
    align-self: stretch;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
  }

  .hero-photo img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center bottom;
    -webkit-mask-image: linear-gradient(
      to right,
      transparent 0%,
      rgba(0,0,0,0.6) 10%,
      black 22%
    );
    mask-image: linear-gradient(
      to right,
      transparent 0%,
      rgba(0,0,0,0.6) 10%,
      black 22%
    );
  }

  /* Desktop: portrait inline oculto — hero-photo cuida do lado direito */
  .hero-portrait {
    display: none;
  }

  .hero-scroll { display: none; }

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

  .sobre-layout { flex-direction: row; align-items: flex-start; gap: 5rem; }
  .sobre-photo-wrap { flex: 0 0 360px; }
  .sobre-photo { max-height: none; height: 500px; }
  .sobre-content { flex: 1; padding-top: 0.5rem; }
  .sobre-content .btn { align-self: flex-start; }

  .hero-desc { margin-inline: 0; }
}

/* ============================================================
   LARGE — 1100px+
   ============================================================ */
@media (min-width: 1100px) {
  .sobre-photo-wrap { flex-basis: 420px; }
}
