:root {
  --rose: #c97b8f;
  --rose-dark: #a85f72;
  --rose-light: #f8eef1;
  --rose-soft: #e8c4cd;
  --mauve: #9b7b8a;
  --cream: #faf7f4;
  --cream-dark: #f0ebe6;
  --warm-gray: #5c5558;
  --warm-gray-light: #8a8285;
  --text: #3d3839;
  --text-muted: #6b6567;
  --bg: #ffffff;
  --bg-alt: var(--cream);
  --border: #e8e0dc;
  --shadow: 0 4px 24px rgba(169, 95, 114, 0.1);
  --shadow-lg: 0 12px 40px rgba(169, 95, 114, 0.14);
  --radius: 12px;
  --radius-lg: 20px;
  --header-h: 72px;
  --bottom-bar-h: 54px;
  --bottom-bar-gap: 12px;
  --bottom-bar-inset: max(12px, env(safe-area-inset-bottom, 0px));
  --bottom-bar-space: calc(var(--bottom-bar-h) + var(--bottom-bar-gap) + var(--bottom-bar-inset));
  --whatsapp: #25d366;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  color: var(--text);
  line-height: 1.65;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1080px, 90%);
  margin: 0 auto;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--rose-dark);
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-mark {
  display: block;
  height: 44px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.logo-text {
  line-height: 1.2;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--rose);
}

.nav-whatsapp {
  display: none;
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
  padding: 0;
  text-align: left;
}

.header-cta {
  flex-shrink: 0;
}

.menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--rose-dark);
  padding: 0.25rem;
  line-height: 1;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9375rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
}

.btn-whatsapp:hover {
  background: #1fb855;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.btn-sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

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

.btn-rose {
  background: var(--rose);
  color: #fff;
}

.btn-rose:hover {
  background: var(--rose-dark);
}

/* Hero */
.hero {
  padding: calc(var(--header-h) + 3rem) 0 4rem;
  background: linear-gradient(180deg, var(--rose-light) 0%, var(--cream) 50%, var(--bg) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-media img {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.hero-local {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mauve);
  margin-bottom: 0.75rem;
}

.hero-content h1 {
  font-size: clamp(1.75rem, 4vw, 2.375rem);
  font-weight: 800;
  color: var(--rose-dark);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.tags span {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  background: var(--bg);
  color: var(--rose-dark);
  border-radius: 100px;
  border: 1px solid var(--rose-soft);
}

.hero-texto {
  font-size: 1.0625rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  max-width: 520px;
  line-height: 1.7;
}

/* Sections */
.section {
  padding: 5rem 0;
}

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

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 0.5rem;
}

.section-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.section-intro h2,
.split-content h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--rose-dark);
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.section-intro p,
.split-content p {
  color: var(--text-muted);
  font-size: 1.025rem;
  margin-bottom: 1rem;
}

.subtitulo {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--rose-dark);
  text-align: center;
  margin-bottom: 1.75rem;
}

/* Split layout */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.split-reverse {
  direction: rtl;
}

.split-reverse > * {
  direction: ltr;
}

.split-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.split-content h2 {
  margin-bottom: 1rem;
}

/* Formações */
.formacoes {
  margin-top: 1.75rem;
  padding: 1.5rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  border-left: 4px solid var(--rose);
}

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

.formacoes h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--rose-dark);
  margin-bottom: 0.875rem;
}

.formacoes ul {
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.formacoes li {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
  padding-left: 1.25rem;
  position: relative;
}

.formacoes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: var(--rose);
  border-radius: 50%;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

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

.card:hover {
  border-color: var(--rose-soft);
  box-shadow: var(--shadow);
}

.card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--rose-dark);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Diferenciais */
.diferenciais {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.diferenciais li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: var(--bg);
  padding: 1.125rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--rose-dark);
}

.diferenciais li::before {
  content: "✓";
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 0.1em;
  background: var(--rose-light);
  color: var(--rose);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Contato */
.contato {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--rose-dark) 0%, #8f4f62 100%);
  color: #fff;
}

.contato-box {
  text-align: center;
  max-width: 100%;
}

.contato-box > h2,
.contato-box > p,
.contato-box > .btn {
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.contato-box h2 {
  font-size: clamp(1.375rem, 3vw, 1.875rem);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.contato-box > p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.0625rem;
  margin-bottom: 2rem;
  line-height: 1.65;
}

.contato-detalhes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 1.75rem 2.5rem;
  max-width: fit-content;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: left;
}

.contato-item--local {
  min-width: 0;
}

.contato-item strong {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 0.35rem;
}

.contato-item span,
.contato-item a,
.endereco-btn {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.5;
}

.contato-item a:hover {
  text-decoration: underline;
}

.endereco-btn {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  text-align: left;
  cursor: pointer;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.35);
  text-underline-offset: 3px;
}

.endereco-btn:hover {
  text-decoration-color: #fff;
}

.endereco-linha {
  display: inline;
}

@media (max-width: 960px) {
  .endereco-linha {
    display: block;
  }
}

@media (min-width: 961px) {
  .endereco-btn {
    white-space: nowrap;
  }

  .endereco-linha--cidade::before {
    content: " ";
  }
}

/* Modal endereço */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(61, 56, 57, 0.5);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.modal-overlay[hidden] {
  display: none;
}

.modal-endereco-box {
  background: var(--bg);
  color: var(--text);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  width: min(400px, 100%);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.modal-copiado {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--rose);
  margin-bottom: 0.75rem;
}

.modal-endereco-box h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--rose-dark);
  margin-bottom: 0.5rem;
}

.modal-endereco-texto {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.modal-nav-btns {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.btn-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.25rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9375rem;
  color: #fff;
  transition: opacity 0.2s;
}

.btn-nav:hover {
  opacity: 0.9;
}

.btn-waze {
  background: #33ccff;
}

.btn-uber {
  background: #000;
}

.modal-fechar {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0.5rem;
}

/* Footer */
.footer {
  background: #3d2f34;
  color: rgba(255, 255, 255, 0.75);
  padding: 2rem 0;
  text-align: center;
  font-size: 0.875rem;
}

.footer p + p {
  margin-top: 0.35rem;
}

.footer strong {
  color: #fff;
}

/* Barra flutuante inferior — somente mobile */
.bottom-bar {
  display: none;
}

.bottom-bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  padding: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
  text-decoration: none;
}

.bottom-bar-item:hover,
.bottom-bar-item:focus-visible {
  color: var(--rose-dark);
  background: var(--rose-light);
}

.bottom-bar-item svg {
  width: 22px;
  height: 22px;
}

.bottom-bar-item--whatsapp {
  color: var(--whatsapp);
}

.bottom-bar-item--whatsapp:hover {
  color: #1fb855;
  background: rgba(37, 211, 102, 0.08);
}

.bottom-bar-item--instagram:hover {
  color: #c13584;
  background: rgba(193, 53, 132, 0.06);
}

/* Painel WhatsApp */
.wa-backdrop {
  position: fixed;
  inset: 0;
  z-index: 250;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.wa-backdrop.aberto {
  opacity: 1;
  visibility: visible;
}

.wa-panel {
  position: fixed;
  z-index: 260;
  background: #fff;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  transform: translate3d(0, 100%, 0);
  transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
  bottom: 0;
  left: 0;
  right: 0;
  max-height: min(480px, 70vh);
}

.wa-panel.aberto {
  transform: translate3d(0, 0, 0);
}

.wa-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: var(--whatsapp);
  color: #fff;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.wa-panel-header-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.wa-panel-logo {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.wa-panel-header-info strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
}

.wa-panel-header-sub {
  font-size: 0.75rem;
  opacity: 0.9;
}

.wa-panel-fechar {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wa-panel-fechar-chevron {
  display: none;
  width: 20px;
  height: 20px;
}

.wa-panel-body {
  flex: 1;
  padding: 1.25rem;
  overflow-y: auto;
  background: #e5ddd5;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4cdc4' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.wa-bubble {
  background: #fff;
  padding: 0.625rem 0.875rem 0.375rem;
  border-radius: 0 12px 12px 12px;
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.55;
  max-width: 85%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

.wa-bubble-time {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.6875rem;
  color: var(--text-muted);
  text-align: right;
}

.wa-panel-footer {
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--border);
  background: #fff;
}

.wa-panel-footer--desktop {
  display: none;
}

.wa-panel-footer--mobile .btn {
  width: 100%;
}

.wa-input {
  flex: 1;
  min-width: 0;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.75rem 1rem;
  font: inherit;
  font-size: 0.875rem;
  color: var(--text);
  background: #fff;
}

.wa-input:focus {
  outline: 2px solid rgba(37, 211, 102, 0.35);
  border-color: var(--whatsapp);
}

.wa-send {
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: #34b7f1;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s;
}

.wa-send svg {
  width: 20px;
  height: 20px;
}

.wa-send:hover {
  background: #2aa3d9;
}

/* FAB desktop */
.fab-desktop {
  display: none;
}

/* Desktop */
@media (min-width: 721px) {
  .wa-backdrop {
    display: none;
  }

  .wa-panel {
    left: auto;
    right: 5.5rem;
    bottom: 1.5rem;
    width: 360px;
    max-height: 480px;
    border-radius: var(--radius-lg);
    transform: translateY(16px) scale(0.96);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.18);
  }

  .wa-panel.aberto {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .wa-panel-header {
    padding: 0.875rem 1rem;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }

  .wa-panel-fechar-x {
    display: none;
  }

  .wa-panel-fechar-chevron {
    display: block;
  }

  .wa-panel-footer--mobile {
    display: none;
  }

  .wa-panel-footer--desktop {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.875rem 1rem;
  }

  .fab-desktop {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.75rem;
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 200;
  }

  .fab-desktop-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.75rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    pointer-events: none;
    transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
  }

  .fab-desktop-actions.aberto {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .fab-action {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    color: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .fab-action svg {
    width: 24px;
    height: 24px;
  }

  .fab-action:hover {
    transform: scale(1.06);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.22);
  }

  .fab-action--whatsapp {
    background: var(--whatsapp);
  }

  .fab-action--phone {
    background: #7ed4a0;
  }

  .fab-action--instagram {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  }

  .fab-action--close {
    background: var(--rose);
    position: relative;
  }

  .fab-close-label {
    position: absolute;
    right: calc(100% + 0.625rem);
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    color: var(--text-muted);
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.375rem 0.75rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    pointer-events: none;
  }

  .fab-close-label::after {
    content: "";
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: #fff;
  }

  .fab-desktop-toggle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    background: var(--rose);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(169, 95, 114, 0.35);
    transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
  }

  .fab-desktop-toggle:hover {
    background: var(--rose-dark);
    transform: scale(1.04);
  }

  .fab-desktop-toggle.aberto {
    background: var(--rose-dark);
  }

  .fab-icon-chat {
    width: 26px;
    height: 26px;
  }
}

/* Tablet */
@media (max-width: 960px) {
  .hero-grid,
  .split,
  .split-reverse {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .split-reverse {
    direction: ltr;
  }

  .hero-media {
    order: -1;
  }

  .hero-media img {
    max-width: 320px;
  }

  .hero-content {
    text-align: center;
  }

  .hero-texto {
    margin-left: auto;
    margin-right: auto;
  }

  .tags {
    justify-content: center;
  }

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

  .contato-detalhes {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }

  .endereco-btn {
    text-align: center;
    width: 100%;
  }
}

/* Mobile */
@media (max-width: 720px) {
  :root {
    --header-h: 64px;
  }

  .logo {
    font-size: 0.9375rem;
    gap: 0.5rem;
  }

  .logo-mark {
    height: 38px;
  }

  body {
    padding-bottom: var(--bottom-bar-space);
  }

  body.wa-open .bottom-bar {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .bottom-bar {
    display: flex;
    align-items: stretch;
    position: fixed;
    bottom: var(--bottom-bar-inset);
    left: 50%;
    transform: translateX(-50%);
    width: min(360px, calc(100% - 1.5rem));
    height: var(--bottom-bar-h);
    z-index: 150;
    background: #fff;
    border-radius: 999px;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12), 0 2px 6px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: opacity 0.2s, visibility 0.2s;
  }

  .bottom-bar-item {
    flex: 1;
    min-width: 0;
    color: var(--text);
    font-size: 0.625rem;
    font-weight: 600;
    gap: 0.15rem;
    padding: 0.45rem 0.25rem;
    border-radius: 0;
  }

  .bottom-bar-item + .bottom-bar-item {
    border-left: 1px solid rgba(0, 0, 0, 0.08);
  }

  .bottom-bar-item:hover,
  .bottom-bar-item:focus-visible {
    color: var(--text);
    background: rgba(0, 0, 0, 0.03);
  }

  .bottom-bar-item svg {
    width: 20px;
    height: 20px;
  }

  .bottom-bar-item--whatsapp {
    color: var(--text);
  }

  .bottom-bar-item--whatsapp svg {
    color: var(--whatsapp);
  }

  .bottom-bar-item--endereco svg {
    color: #2db5a4;
    stroke: #2db5a4;
  }

  .bottom-bar-item--instagram svg {
    color: var(--text);
    stroke: var(--text);
  }

  .wa-panel {
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }

  .footer {
    padding-bottom: calc(2rem + var(--bottom-bar-gap));
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem 0;
  }

  .nav.aberto {
    display: flex;
  }

  .nav a {
    padding: 0.875rem 1.25rem;
    border-bottom: 1px solid var(--border);
  }

  .nav-whatsapp {
    display: block;
    color: var(--whatsapp) !important;
    font-weight: 700;
    padding: 0.875rem 1.25rem;
    border-bottom: 1px solid var(--border);
    width: 100%;
  }

  .header-cta {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .header-inner {
    position: relative;
  }

  .hero {
    padding-top: calc(var(--header-h) + 2rem);
    padding-bottom: 3rem;
  }

  .section {
    padding: 3.5rem 0;
  }

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

  .diferenciais {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
    max-width: 360px;
  }

  .hero-content .btn {
    margin: 0 auto;
  }

  .contato-box .btn-lg {
    width: 100%;
    max-width: none;
  }
}

@media (max-width: 380px) {
  .logo {
    font-size: 0.8125rem;
  }

  .logo-mark {
    height: 34px;
  }

  .tags span {
    font-size: 0.6875rem;
    padding: 0.3rem 0.6rem;
  }
}

/* Página de confirmação (Google Ads / formulário) */
.obrigado-page {
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-h) + 3rem) 0 4rem;
  background: linear-gradient(180deg, var(--cream) 0%, var(--bg) 100%);
}

.obrigado-box {
  max-width: 520px;
  text-align: center;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-lg);
}

.obrigado-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: var(--rose-light);
  color: var(--rose-dark);
  font-size: 1.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.obrigado-box h1 {
  font-size: clamp(1.5rem, 4vw, 1.875rem);
  font-weight: 800;
  color: var(--rose-dark);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.obrigado-lead {
  font-size: 1.0625rem;
  color: var(--text);
  margin-bottom: 0.75rem;
  line-height: 1.65;
}

.obrigado-texto {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.obrigado-acoes {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.875rem;
}

.btn-outline {
  background: transparent;
  color: var(--rose-dark);
  border: 2px solid var(--rose-soft);
}

.btn-outline:hover {
  background: var(--rose-light);
  transform: translateY(-1px);
}

@media (max-width: 720px) {
  .obrigado-box {
    padding: 2rem 1.5rem;
  }

  .obrigado-acoes .btn {
    width: 100%;
    max-width: 320px;
  }
}
