/* ─────────────────────────────────────
   RESET E BASE
───────────────────────────────────── */
* { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }
body { font-family: system-ui, -apple-system, sans-serif; background: #F6F7F5; color: #1C1917; }
a { text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
::-webkit-scrollbar { display: none; }

/* ═══════════════════════════════════════
   BANNER HERO COM TEXTO ANIMADO
   ═══════════════════════════════════════ */
.hero-banner {
  position: relative;
  width: 100%;
  aspect-ratio: 2093 / 813;
  overflow: hidden;
  background: #0a0a0a;
}

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

.hero-banner__content {
  position: absolute;
  top: 50%;
  left: 5.5%;
  transform: translateY(-50%);
  max-width: 45%;
  pointer-events: none;
}

.hero-banner__logo {
  display: flex;
  align-items: flex-start;
  gap: 2px;
  font-size: clamp(2.6rem, 8vw, 5.46rem);
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.hero-banner__logo .safra {
  color: #ffffff;
}

.hero-banner__logo .voo {
  color: #16A34A;
}

.hero-banner__logo .leaf {
  width: 0.35em;
  height: 0.35em;
  margin-top: -0.15em;
  display: inline-block;
  flex-shrink: 0;
}

.hero-banner__underline {
  width: 90px;
  height: 4px;
  background: #16A34A;
  margin: 18px 0 22px 4px;
  border-radius: 2px;
}

.hero-banner__subtitle {
  color: #f2f2f2;
  font-size: clamp(0.85rem, 1.6vw, 1.35rem);
  line-height: 1.45;
  font-weight: 400;
  margin: 0 0 0 4px;
}

/* Animações */
.fade-in-up {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeInUp 0.9s ease-out forwards;
}

.hero-banner__logo      { animation-delay: 0.15s; }
.hero-banner__underline { animation-delay: 0.45s; }
.hero-banner__subtitle  { animation-delay: 0.65s; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .fade-in-up {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* Responsividade do banner */
@media (max-width: 768px) {
  .hero-banner__content {
    left: 4%;
    max-width: 55%;
  }

  .hero-banner__logo {
    font-size: clamp(1.8rem, 5.5vw, 3.2rem);
    gap: 1px;
  }

  .hero-banner__underline {
    width: 60px;
    margin: 12px 0 14px 4px;
  }

  .hero-banner__subtitle {
    font-size: clamp(0.7rem, 1.8vw, 1rem);
  }
}

@media (max-width: 480px) {
  .hero-banner__content {
    left: 3%;
    max-width: 65%;
  }

  .hero-banner__logo {
    font-size: clamp(1.4rem, 5vw, 2.4rem);
    gap: 1px;
  }

  .hero-banner__underline {
    width: 40px;
    height: 3px;
    margin: 8px 0 10px 4px;
  }

  .hero-banner__subtitle {
    font-size: clamp(0.55rem, 1.6vw, 0.75rem);
    line-height: 1.3;
  }
}

/* ─────────────────────────────────────
   HEADER
───────────────────────────────────── */
.header { background: #fff; padding: 16px 10px 0; border-bottom: 1px solid #0F2D22; position: sticky; top: 0; z-index: 50; }
.header-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 01px; }
.container-imagem {
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
    padding: 10px;
    border: 1px solid #ddd;
}
.imagem-responsiva {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 01px;
}

/* ─────────────────────────────────────
   BUSCA E MENU
───────────────────────────────────── */
.busca-filtro-row { display: flex; align-items: stretch; gap: 8px; margin-bottom: 9px; }
.search-wrap { position: relative; flex: 1; min-width: 0; margin-bottom: 0; }
.search-icon { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); font-size: 15px; }
.search-input { width: 100%; border: 1.5px solid #0F2D22; border-radius: 8px; padding: 9px 16px 11px 34px; font-size: 14px; outline: none; background: #F5F2ED; color: #1C1917; }
.search-input::placeholder { font-size: 16px; }

/* ─────────────────────────────────────
   MENU HAMBÚRGUER
───────────────────────────────────── */
.menu-btn {
  flex-shrink: 0;
  box-sizing: border-box;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1.5px solid #0F2D22;
  border-radius: 8px;
  background: #F5F2ED;
  padding: 0 12px;
  font-size: 13px;
  font-weight: 650;
  color: #1C1917;
  line-height: 1.15;
  white-space: nowrap;
  transition: all 0.2s;
}
.menu-btn:hover {
  background: #E8E3DB;
}
.menu-btn.ativo {
  background: #DCFCE7;
  border-color: #16A34A;
  color: #15803D;
}
.menu-btn span {
  display: none;
}
.menu-icone {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  stroke: #0F2D22;
}
.menu-btn.ativo .menu-icone {
  stroke: #15803D;
}

@media (min-width: 768px) {
  .menu-btn {
    width: auto;
    height: auto;
    gap: 8px;
    padding: 9px 16px;
    justify-content: flex-start;
  }
  .menu-btn span {
    display: inline;
    white-space: nowrap;
  }
  .menu-icone {
    width: 18px;
    height: 18px;
  }
}

.busca-sugestoes { position: absolute; top: calc(100% + 4px); left: 0; right: 0; background: #fff; border: 1.5px solid #0F2D22; border-radius: 8px; max-height: 220px; overflow-y: auto; display: none; z-index: 60; box-shadow: 0 6px 16px rgba(0,0,0,0.08); }
.busca-sugestoes.aberto { display: block; }
.busca-sugestoes div { padding: 9px 16px; font-size: 13px; color: #1C1917; cursor: pointer; }
.busca-sugestoes div:hover, .busca-sugestoes div.ativo { background: #F0EBE3; }
.busca-sugestoes .vazio { color: #A8A29E; cursor: default; }
.filtros-title{
  margin: 2px 0 10px;
  padding: 0 2px;
  font-size: 14px;
  font-weight: 650;
  color: #0F2D22;
}
.filtros { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 14px; scrollbar-width: none; }
.chip { flex-shrink: 0; border: none; border-radius: 6px; padding: 6px 14px; font-size: 12px; font-weight: 650; background: #F0EBE3; color: #78716C; transition: all 0.15s; }
.chip.ativo { background: #16A34A; color: #fff; }

/* ═══════════════════════════════════════
   CARDS DE SERVIÇO (COM SETA CENTRALIZADA)
   ═══════════════════════════════════════ */
.servicos-container {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 14px;
  scrollbar-width: none;
}
.servicos-container::-webkit-scrollbar { display: none; }

.servico-card {
  flex-shrink: 0;
  min-width: 110px;
  max-width: 140px;
  height: 34px;
  background: #F1F6F0;
  border: 1.5px solid #D8E2D6;
  border-radius: 6px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.2s;
  user-select: none;
  position: relative;
}
.servico-card:hover {
  border-color: #16A34A;
}
.servico-card.ativo {
  border-color: #16A34A;
  background: #DCFCE7;
}
.servico-card .nome {
  font-weight: 600;
  font-size: 14px;
  color: #0F2D22;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  min-width: 0;
}
.servico-card .seta {
  font-size: 18px;
  color: #173126;
  flex-shrink: 0;
  margin-left: 6px;
  line-height: 1;
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}
.servico-card .badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: #16A34A;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: none;
  align-items: center;
  justify-content: center;
}
.servico-card .badge.visivel {
  display: flex;
}

/* ─────────────────────────────────────
   TOGGLE DISPONIBILIDADE
───────────────────────────────────── */
.toggle-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 18px 16px; }
.toggle-btn { font-size: 11px; color: #78716C; display: flex; align-items: center; gap: 6px; background: none; border: none; }
.dot { width: 11px; height: 11px; border-radius: 50%; background: #D6D3D1; transition: background 0.2s; }
.dot.ativo { background: #16A34A; }
.count { font-size: 11px; color: #A8A29E; }

/* ─────────────────────────────────────
   DESTAQUES
───────────────────────────────────── */
.section-title { font-weight: 650; font-size: 19px; padding: 4px 12px 17px; color:#57534E; }
.destaques-scroll { display: flex; gap: 10px; overflow-x: auto; padding: 0 11px 7px; scrollbar-width: none; }
.card-dest { flex-shrink: 0; width: 53vw; max-width: 160px; background: #fff; border-radius: 10px; overflow: hidden; border: 1px solid #0F2D22; box-shadow: 0 1px 1px rgba(0,0,0,0.06); cursor: pointer; }
.card-dest-top { width: 100%; height: 77px; overflow: hidden; background: #0F2D22; }
.card-dest-top img { width: 100%; height: 100%; object-fit: cover; display: block; }
.card-dest-bottom { padding: 6px 8px 9px; }
.card-dest-main { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 11px; position: relative; }
.card-dest-texto { flex: 1; min-width: 0; margin-right: 4px; }
.card-dest-nome { font-weight: 700; font-size: 15px; color: #1C1917; line-height: 1.2; display: -webkit-box; -webkit-line-clamp: 1; 
-webkit-box-orient: vertical; overflow: hidden; text-overflow: ellipsis; word-break: break-word; max-height: 2.4em; }
.card-dest-cidad { display: flex; align-items: center; gap: 3px; font-size: 11px; color: #78716C; margin-top: 3px; }
.card-dest-avaliacao {
  position: absolute;
  right: 0;
  top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center; }
.card-dest-star-ico { display: flex; justify-content: center; }
.card-dest-nota { font-size: 12px; font-weight: 500; color: #A8A29E; margin-top: 2px; }
.card-dest-info { display: flex; align-items: center; gap: 4px; }
.card-dest-info-txt { font-size: 11px; color: #57534E; font-weight: 460; }
.servicos-txt { font-size: 11px; color: #A8A29E; }

/* ─────────────────────────────────────
   BANNER CONFIANÇA
───────────────────────────────────── */
.banner-trust { margin: 16px 16px 0; border-radius: 14px; overflow: hidden; line-height: 0; }
.banner-trust img { width: 100%; height: auto; display: block; }

/* ─────────────────────────────────────
   LISTA DE EMPRESAS
───────────────────────────────────── */
.lista { padding: 16px 16px 0; display: flex; flex-direction: column; gap: 0; }
.lista-title { font-weight: 800; font-size: 14px; margin-bottom: 12px; }
.lista-header { display: flex; align-items: center; justify-content: space-between; margin: 16px 17px 8px; }
.lista-title { font-size: 20px; font-weight: 700; }
.select-ordem { font-size: 14px; border: 1px solid #E7E5E4; border-radius: 8px; padding: 5px 3px; background: #fff; color: #1C1917; }
.card-empresa { background: #fff; border-radius: 18px; border: 1px solid #0F2D22; padding: 16px; display: flex; gap: 12px; align-items: flex-start; cursor: pointer; box-shadow: 0 2px 8px rgba(0,0,0,0.04); margin-bottom: 12px; }
.avatar-sq { border-radius: 14px; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 800; font-size: 27px; flex-shrink: 0; width: 52px; height: 52px; overflow: hidden; }
.avatar-sq img { width: 100%; height: 100%; object-fit: cover; border-radius: 0px; display: block; }
.empresa-info { flex: 1; min-width: 0; }
.empresa-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 3px; }
.empresa-nome { font-weight: 700; font-size: 15px; }
.empresa-preco { font-weight: 680; font-size: 12px; color: #16A34A; flex-shrink: 0; }
.empresa-preco span { font-size: 11px; font-weight: 480; color: #A8A29E; }
.empresa-loc { font-size: 12px; color: #A8A29E; margin-bottom: 8px; display: flex; align-items: center; gap: 4px; }
.empresa-mid { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.empresa-rating { display: flex; align-items: center; gap: 4px; font-size: 12px; font-weight: 600; }
.empresa-rating span { font-size: 11px; color: #A8A29E; font-weight: 400; }
.status { display: flex; align-items: center; gap: 4px; }
.status-dot { width: 6px; height: 6px; border-radius: 50%; }
.status-txt { font-size: 11px; font-weight: 500; }
.tags { display: flex; gap: 6px; flex-wrap: wrap; }
.tag { background: #F0EBE3; color: #78716C; border-radius: 50px; padding: 4px 11px; font-size: 10px; font-weight: 600; }

/* ─────────────────────────────────────
   ESTADO VAZIO
───────────────────────────────────── */
.vazio { text-align: center; padding: 48px 0; color: #A8A29E; }
.vazio-icon { font-size: 48px; margin-bottom: 12px; }
.vazio-title { font-weight: 700; font-size: 16px; margin-bottom: 6px; }

/* ═══════════════════════════════════════
   RODAPÉ (VERSÃO OFICIAL - ALTURA REDUZIDA)
   ═══════════════════════════════════════ */
.rodape {
  background: #0F2D22;
  color: #f2f2f2;
  padding: 20px 20px 16px;
  margin-top: 24px;
  border-top: 2px solid #16A34A;
}

.rodape__conteudo {
  max-width: 400px;
  margin: 0 auto;
  text-align: center;
}

.rodape__logo {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 6px;
}

.rodape__safra {
  color: #ffffff;
}

.rodape__voo {
  color: #16A34A;
}

.rodape__missao {
  font-size: 13px;
  color: #D8E2D6;
  line-height: 1.5;
  margin-bottom: 10px;
}

.rodape__nav {
  font-size: 13px;
  margin-bottom: 10px;
}

.rodape__nav a {
  color: #D8E2D6;
  text-decoration: none;
  transition: color 0.2s;
}

.rodape__nav a:hover {
  color: #16A34A;
}

.rodape__nav .separador {
  color: #78716C;
  margin: 0 6px;
}

.rodape__contato {
  margin-bottom: 10px;
}

.rodape__email {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #D8E2D6;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
  padding: 2px 0;
}

.rodape__email:hover {
  color: #16A34A;
}

.rodape__email svg {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
}

.rodape__copy {
  font-size: 10px;
  color: #78716C;
  border-top: 1px solid #1a3a2a;
  padding-top: 10px;
  margin-top: 2px;
}

/* ─────────────────────────────────────
   TELA DE PERFIL DA EMPRESA
───────────────────────────────────── */
.perfil-header { background: #fff; display: flex; align-items: center; gap: 12px; padding: 16px 20px; border-bottom: 1px solid #0F2D22; position: sticky; top: 0; z-index: 50; }
.back-btn { background: #F0EBE3; border: none; border-radius: 12px; width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.perfil-title { font-weight: 700; font-size: 16px; }
.perfil-hero-top { background: #fff; padding: 24px 20px 20px; text-align: center; }
.perfil-avatar { border-radius: 7px; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 800; font-size: 28px; margin: 0 auto 12px; width: 200px; height: 90px; overflow: hidden; background: #0F2D22; }
.perfil-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 20px; display: block; }
.perfil-nome { font-weight: 800; font-size: 22px; margin-bottom: 4px; }
.perfil-loc { font-size: 13px; color: #78716C; display: flex; align-items: center; justify-content: center; gap: 4px; margin-bottom: 12px; }
.perfil-badges { display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; }
.disp-badge { display: inline-flex; align-items: center; gap: 6px; border-radius: 50px; padding: 6px 14px; }
.disp-dot { width: 6px; height: 6px; border-radius: 50%; }
.disp-txt { font-size: 12px; font-weight: 600; }
.ver-perfil-btn { display: inline-flex; align-items: center; gap: 6px; border: 1.5px solid #16A34A; border-radius: 50px; padding: 6px 14px; font-size: 12px; font-weight: 600; color: #16A34A; text-decoration: none; background: #fff; }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; padding: 10px 16px 16px; background: #fff; }
.stat-card { background: #F5F2ED; border-radius: 14px; padding: 12px 8px; text-align: center; }
.stat-icon-svg { display: flex; justify-content: center; margin-bottom: 6px; }
.stat-stars { display: flex; justify-content: center; gap: 2px; margin-top: 4px; }
.stat-val { font-weight: 800; font-size: 15px; }
.stat-lbl { font-size: 10px; color: #A8A29E; margin-top: 2px; }
.perfil-body { padding: 14px 16px 100px; display: flex; flex-direction: column; gap: 12px; }
.info-card { background: #fff; border-radius: 16px; padding: 18px; border: 1px solid #0F2D22; }
.info-card h3 { font-weight: 700; font-size: 14px; margin-bottom: 10px; }
.info-card p { font-size: 13px; color: #57534E; line-height: 1.7; margin: 0; }
.equip-row { display: flex; justify-content: space-between; }
.equip-lbl { font-size: 10px; color: #A8A29E; margin-bottom: 2px; text-transform: uppercase; letter-spacing: 0.5px; }
.equip-val { font-weight: 600; font-size: 13px; }
.cult-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.cult-tag { border-radius: 50px; padding: 5px 14px; font-size: 12px; font-weight: 600; }
.av-item { padding-bottom: 12px; margin-bottom: 12px; border-bottom: 1px solid #F0EBE3; }
.av-item:last-child { padding-bottom: 0; margin-bottom: 0; border-bottom: none; }
.av-top { display: flex; justify-content: space-between; margin-bottom: 3px; }
.av-autor { font-weight: 600; font-size: 13px; }
.av-data { font-size: 11px; color: #A8A29E; }
.av-stars { margin-bottom: 4px; font-size: 13px; }
.av-txt { font-size: 13px; color: #57534E; line-height: 1.6; }

/* ─────────────────────────────────────
   BOTÃO FIXO DE CONTATO
───────────────────────────────────── */
.cta-fixo { position: fixed; bottom: 0; left: 50%; transform: translateX(-50%); width: 100%; max-width: 430px; padding: 12px 16px calc(16px + env(safe-area-inset-bottom)); background: rgba(245,242,237,0.98); backdrop-filter: blur(12px); border-top: 1px solid #0F2D22; z-index: 99; }
.cta-btns { display: flex; gap: 10px; }
.btn-orc { flex: 1; display: flex; align-items: center; justify-content: center; gap: 7px; background: #16A34A; color: #fff; border: none; border-radius: 16px; padding: 15px 10px; font-size: 14px; font-weight: 700; text-decoration: none; box-shadow: 0 6px 20px rgba(22,163,74,0.3); }
.btn-wpp { flex: 1; display: flex; align-items: center; justify-content: center; gap: 7px; background: #fff; color: #16A34A; border: 1.5px solid #16A34A; border-radius: 16px; padding: 15px 10px; font-size: 14px; font-weight: 700; text-decoration: none; }
.btn-unico { width: 100%; display: flex; align-items: center; justify-content: center; gap: 8px; background: #D6D3D1; color: #fff; border: none; border-radius: 16px; padding: 17px 16px; font-size: 15px; font-weight: 700; }

/* ─────────────────────────────────────
   Borda/Rodapé-Futuro
───────────────────────────────────── */
.pb80 { padding-bottom: 20px; }

/* ═══════════════════════════════════════
   MODAL GENÉRICO
   ═══════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  padding: 20px;
  backdrop-filter: blur(2px);
}
.modal-overlay.aberto {
  display: flex;
}

.modal {
  background: #fff;
  border-radius: 16px;
  max-width: 400px;
  width: 100%;
  padding: 24px 20px 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  animation: modalFadeIn 0.25s ease;
}
@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.modal-header h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0F2D22;
}
.modal-fechar {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: #A8A29E;
  padding: 0 4px;
  line-height: 1;
}
.modal-fechar:hover {
  color: #1C1917;
}

.modal-sub {
  font-size: 13px;
  color: #78716C;
  margin-bottom: 16px;
}

.modal-opcoes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.modal-opcoes label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #1C1917;
  background: #F5F2ED;
  padding: 6px 12px;
  border-radius: 8px;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all 0.15s;
  user-select: none;
}
.modal-opcoes label:hover {
  border-color: #D8E2D6;
}
.modal-opcoes label.selecionado {
  background: #DCFCE7;
  border-color: #16A34A;
}
.modal-opcoes input[type="checkbox"] {
  accent-color: #16A34A;
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.modal-acoes {
  display: flex;
  gap: 10px;
}
.modal-acoes button {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
}
.btn-aplicar {
  background: #16A34A;
  color: #fff;
}
.btn-aplicar:hover {
  background: #15803D;
}
.btn-cancelar {
  background: #F0EBE3;
  color: #78716C;
}
.btn-cancelar:hover {
  background: #E8E3DB;
}

/* ═══════════════════════════════════════
   MODAL DO MENU
   ═══════════════════════════════════════ */
.menu-modal-opcoes {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 4px;
  width: 100%;
}
.menu-modal-opcoes .menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.15s;
  background: #F6F7F5;
  border: 1.5px solid transparent;
  width: 100%;
}
.menu-modal-opcoes .menu-item:hover {
  background: #F0EBE3;
  border-color: #D8E2D6;
}
.menu-modal-opcoes .menu-item .info {
  flex: 1;
  min-width: 0;
}
.menu-modal-opcoes .menu-item .info .titulo {
  font-weight: 600;
  font-size: 15px;
  color: #0F2D22;
}
.menu-modal-opcoes .menu-item .info .desc {
  font-size: 12px;
  color: #78716C;
  margin-top: 1px;
}
.menu-modal-opcoes .menu-item .badge-novo {
  background: #16A34A;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 50px;
  flex-shrink: 0;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.menu-modal-opcoes .menu-item .seta {
  color: #A8A29E;
  font-size: 30px;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════
   FORMULÁRIO MEU ESPAÇO
   ═══════════════════════════════════════ */
.form-espaco {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.form-espaco .campo {
  display: flex;
  flex-direction: column;
  gap: 0px;
}
.form-espaco .campo label {
  font-size: 13px;
  font-weight: 600;
  color: #0F2D22;
}
.form-espaco .campo input,
.form-espaco .campo select {
  padding: 10px 14px;
  border: 1.5px solid #D8E2D6;
  border-radius: 8px;
  font-size: 14px;
  background: #F6F7F5;
  transition: border-color 0.2s;
  outline: none;
  font-family: inherit;
  width: 100%;
}
.form-espaco .campo input:focus,
.form-espaco .campo select:focus {
  border-color: #16A34A;
  background: #fff;
}
.form-espaco .campo .linha-dupla {
  display: flex;
  gap: 10px;
  width: 100%;
}
.form-espaco .campo .linha-dupla input:first-child {
  flex: 1;
  min-width: 0;
}
.form-espaco .campo .linha-dupla input:last-child {
  flex: 0 0 70px;
  max-width: 70px;
  text-transform: uppercase;
}
.form-espaco .termos {
  font-size: 12px;
  color: #78716C;
  margin-top: -4px;
  line-height: 1.4;
}
.form-espaco .termos a {
  color: #16A34A;
  text-decoration: underline;
}
.form-espaco .btn-enviar {
  background: #16A34A;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 14px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 4px;
  font-family: inherit;
}
.form-espaco .btn-enviar:hover {
  background: #15803D;
}
.form-espaco .btn-enviar:disabled {
  background: #A8A29E;
  cursor: not-allowed;
}

/* ═══════════════════════════════════════
   MODAL DE CONFIRMAÇÃO
   ═══════════════════════════════════════ */
.modal-confirmacao {
  text-align: center;
  padding: 10px 0;
  width: 100%;
}
.modal-confirmacao .icone-sucesso {
  font-size: 48px;
  margin-bottom: 12px;
}
.modal-confirmacao .titulo {
  font-weight: 700;
  font-size: 18px;
  color: #0F2D22;
}
.modal-confirmacao .desc {
  font-size: 14px;
  color: #57534E;
  margin-top: 6px;
  line-height: 1.5;
}

/* ═══════════════════════════════════════
   CONTEÚDO "COMO FUNCIONA"
   ═══════════════════════════════════════ */
.conteudo-como-funciona {
  padding: 4px 0;
  line-height: 1.7;
  color: #1C1917;
  font-size: 14px;
  width: 100%;
}
.conteudo-como-funciona p {
  margin-bottom: 16px;
  color: #57534E;
}
.conteudo-como-funciona .passo {
  margin-bottom: 14px;
}
.conteudo-como-funciona .passo strong {
  color: #0F2D22;
  display: block;
}
.conteudo-como-funciona .passo p {
  color: #57534E;
  font-size: 13px;
  margin-top: 2px;
  margin-bottom: 0;
     }
