/* ===== Tokens ===== */
:root {
  --orange: #ff7f39;
  --orange-600: #ff6b00;
  --muted: #6b7280;
  --line: #e6e8eb;
}

/* #HEADER# */
.header-min {
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}

.brand-min img {
  height: 31px;
  width: auto;
}

/* Links do menu */
.header-min .nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: #5b5b5b;
  padding: 0.35rem 0.25rem;
}
.header-min .nav-link:hover,
.header-min .nav-link.active {
  color: var(--orange-600);
}

.header-min {
  box-shadow: none;
}

/* Login (texto + ícone redondo laranja) */
.login-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: #5b5b5b;
  text-decoration: none;
}
.login-link:hover {
  color: var(--orange-600);
}

.login-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--orange-600);
  color: #fff;
  text-decoration: none;
}
.login-icon i {
  font-size: 15px;
  line-height: 1;
}

/* Toggler menor */
.navbar-toggler {
  border: 0;
  box-shadow: none !important;
}

/* Responsivo: espaço/empilhamento confortável no mobile */
@media (max-width: 991.98px) {
  .header-min .navbar-nav {
    gap: 0.25rem !important;
  }
  .header-min .nav-link {
    padding: 0.5rem 0.25rem;
  }
  .login-link {
    margin-top: 0.25rem;
  }
}

/* FOOTER */
.bg-orange {
  background: var(--orange-600);
}
.footer-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}
.footer-link:hover {
  color: #fff;
}
.social-link {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: #fff;
  font-size: 1.2rem;
}
.social-link:hover {
  background: #fff;
  color: var(--orange-600);
}
/* ===== HERO / CARROSSEL ===== */
.hero {
  padding: 24px 0;
}
.hero-slider {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
  display: flex;
  align-items: stretch;
}
.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
}

/* Coluna esquerda (texto) */
.hero-slide .hero-copy {
  background: var(--orange-600);
  color: #fff;
  padding: 50px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.hero-slide .hero-eyebrow {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}
.hero-slide h1 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 12px;
}
.hero-slide p {
  margin: 0 0 20px;
}
.hero-slide .btn-hero {
  display: inline-block;
  background: #fff;
  color: var(--orange-600);
  font-weight: 600;
  border: 0;
  border-radius: 999px;
  padding: 10px 20px;
  text-decoration: none;
  width: fit-content;
}
.hero-slide .btn-hero:hover {
  background: #f8f8f8;
}

/* Coluna direita (foto) */
.hero-slide .hero-photo {
  width: 100%;
  height: 100%;
  background: #eee;
}
.hero-slide .hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.hero-slide.is-active .hero-photo img {
  transform: scale(1.01);
}

/* @media (max-width: 767.98px) {
  .hero-slide > div {
    flex-direction: column;
  }
} */
/* Navegação */
.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  z-index: 5;
}
.hero-prev {
  left: 5px;
}
.hero-next {
  right: 5px;
}
.hero-dots {
  position: absolute;
  left: 20px;
  bottom: 15px;
  display: flex;
  gap: 6px;
  z-index: 5;
}
.hero-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  border: 0;
  cursor: pointer;
}
.hero-dots .dot.active {
  background: #fff;
  width: 18px;
  border-radius: 8px;
}
@media (max-width: 780px) {
  /* Altera o row para coluna (isso você já tem) */
  /* .hero-slide > .row {
    flex-direction: column;
  } */

  /* Garante que o container do texto tenha uma altura definida e padding */
  .hero-slide .hero-copy {
    padding: 30px 20px; /* Reduza o padding para telas menores */
    height: auto; /* Deixe a altura ser determinada pelo conteúdo */
  }

  /* Dê à área da foto uma altura fixa ou máxima no mobile */
  .hero-slide .hero-photo {
    /* Altura fixa (exemplo) */
    height: 300px;
    /* OU, se você quiser que ela preencha o espaço restante, mas a altura do banner */
    /* não está definida, o 'height: 300px' é mais seguro. */
  }
}

/* ===== BUSCA + ÍCONES ===== */

.search-area {
  padding: 24px 0;
}
.search-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}
.search-bar .bi-search {
  font-size: 18px;
  color: var(--muted);
  margin-left: 4px;
}
.search-input {
  border: 0;
  box-shadow: none;
}
.search-input:focus {
  outline: none;
  box-shadow: none;
}
.btn-search {
  background: var(--orange-600);
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 0.5rem 1rem;
}
.btn-voice {
  border: 0;
  background: #f3f4f6;
  border-radius: 999px;
  width: 38px;
  height: 38px;
}
.highlight-busca {
  border: 1px solid;
  border-color: var(--orange-600) !important;
}
.services-icons {
  display: flex;
  gap: 10px;
  overflow: auto;
  padding-top: 14px;
}
.svc-icon {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
}
.svc-icon i {
  font-size: 18px;
}
.svc-icon.active {
  border-color: var(--orange-600);
  color: var(--orange-600);
}

.section-head h4 {
  font-size: 26px;
  margin-bottom: 10px;
  color: var(--orange-600);
}
/* ===== CARDS DE SERVIÇO ===== */
.cards-section {
  padding: 10px 0 50px;
}

/* Cabeçalho */
.section-head h3 {
  font-size: 30px;
  margin-bottom: 10px;
  color: var(--orange-600);
  font-weight: bold;
}
.section-head p {
  color: #7d7d7d;
}
.info-services {
  font-weight: bold;
  color: #7d7d7d;
  margin-bottom: 10px;
}
.info-services span {
  font-weight: lighter;
}

/* Card base (altura fixa + botão no fim) */
.svc-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 480px; /* ajuste fino se necessário */
}

/* Imagem coerente em todos os cards */
.svc-card .thumb {
  background: #f4f6f8;
}
.svc-card .thumb img {
  width: 100%;
  height: 200px; /* fixa a altura visual da imagem */
  object-fit: cover;
}

/* Corpo cresce para empurrar o botão */
.svc-card .body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 14px 16px 16px;
}

/* eyebrow + título */
.svc-card .eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 2px;
}
.svc-card .title {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--orange-600);
  margin: 0 0 8px;
  /* garante 2 linhas de altura para não “pular” */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.5em;
}

/* preço */
.svc-card .price-caption {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}
.svc-card .price-block {
  margin: 2px 0 10px;
  min-height: 28px;
} /* mantém espaço */
.svc-card .price-main {
  font-size: 1.35rem;
  font-weight: 600;
  color: #7d7d7d;
  line-height: 1.1;
  font-family: inter;
}
/* quando não houver preço, ocupa altura igual (texto invisível) */
.svc-card .price-main--empty {
  visibility: hidden;
}

/* cupom */
.svc-card .coupon {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f1f2f4;
  border-radius: 10px;
  padding: 10px 12px;
  margin: 6px 0 12px;
}
.svc-card .coupon-icon {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--orange-600);
  color: #fff;
  font-weight: 700;
  line-height: 1;
}
.svc-card .coupon-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.svc-card .coupon-text strong {
  font-size: 0.92rem;
  color: #7d7d7d;
}
.svc-card .coupon-text small {
  font-size: 0.8rem;
  color: var(--muted);
}

/* placeholder quando não há cupom (mesma altura do cupom real) */
.svc-card .coupon-placeholder {
  height: 56px; /* ~altura do .coupon */
  margin: 6px 0 12px;
}

/* botão sempre no fim do card */
.btn-orange {
  background: var(--orange-600);
  color: #fff;
  border: 0;
  border-radius: 12px;
  padding: 0.9rem 1rem;
  font-weight: 700;
}
.btn-orange:hover {
  filter: brightness(0.95);
}
.btn-cta {
  margin-top: auto;
}
.btn-offer {
  background: var(--orange-600);
  color: #fff;
  border-radius: 12px;
}
.btn-offer-outline {
  border-radius: 12px;
  color: var(--orange-600);
  border-color: var(--orange-600);
  border-radius: 12px;
}

/* ===== OFERTAS ===== */
.offers {
  padding: 50px 0 24px;
  border-top: 1px solid #c0c0c0;
}
.offer-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  height: 100%;
}
.offer-thumb {
  aspect-ratio: 4/3;
  background: #f4f6f8;
}
.offer-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.offer-body {
  padding: 10px 12px;
}
.offer-body .mini {
  font-weight: 600;
}
.offer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0.35rem 0;
}
.offer-tags .tag {
  background: #fff7f1;
  color: #a24915;
  border: 1px solid #ffd8bf;
  border-radius: 999px;
  padding: 2px 8px;
  font-size: 0.8rem;
}
.offer-body .price small,
.offer-body .price span {
  color: var(--muted);
}

/* ===== COMO FUNCIONA ===== */
.how {
  background: linear-gradient(180deg, #fff 0%, #fff6f0 100%);
  padding: 56px 0;
}

/* título e subtítulo centralizados */
.how-head h2 {
  font-weight: 800;
  color: var(--orange-600);
  margin: 0 0 6px;
}
.how-head p {
  color: var(--muted);
  margin: 0 0 32px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

/* GRID principal: telefone à esquerda, passos à direita */
.how-wrap {
  display: grid;
  /* coluna fixa para o mock do celular + coluna elástica para os passos */
  grid-template-columns: 480px minmax(420px, 1fr);
  gap: 56px;
  align-items: center; /* alinha verticalmente como no mock */
}

/* mock do celular */
.how .phone {
  justify-self: center;
}
.how .phone img {
  width: 100%;
  height: auto;
  display: block;
  /* nada de backgrounds ou sombras estranhas */
  background: transparent;
  box-shadow: none;
  border-radius: 28px;
}

/* coluna de passos */
.how .steps {
  max-width: 520px; /* limita a largura para não “espalhar” no desktop */
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 70px;
  position: relative;
}

/* cada passo */
.how .step {
  display: grid;
  grid-template-columns: 28px 1fr;
  column-gap: 12px;
  align-items: start;
  padding: 0; /* remove qualquer padding herdado */
  border: 0; /* remove linhas e bordas herdadas */
  background: transparent; /* previne “pílulas” cinzas de libs globais */
  box-shadow: none;
}

/* número do passo */
.how .step-num {
  font-weight: 800;
  color: var(--orange-600);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* textos do passo */
.how .step-text h4 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--orange-600);
}
.how .step-text p {
  margin: 4px 0 0;
  color: #6b7280; /* um pouco mais escuro que var(--muted) para leitura */
  font-size: 0.97rem;
}

/* CTA */
.how .btn-cta {
  margin-top: 10px;
  padding: 0.9rem 1.2rem;
  border-radius: 12px;
  font-weight: 700;
  width: fit-content; /* botão só o necessário */
}

/* ===== Responsivo ===== */
@media (max-width: 1200px) {
  .how-wrap {
    grid-template-columns: 440px minmax(380px, 1fr);
    gap: 40px;
  }
}

@media (max-width: 992px) {
  .how-wrap {
    grid-template-columns: 1fr; /* empilha no mobile */
    gap: 28px;
  }
  .how .phone {
    max-width: 360px;
    margin: 0 auto;
  }
  .how .steps {
    max-width: 600px;
    margin: 0 auto;
  }
}

/* === SEÇÃO TRANSFORMAÇÕES === */
.transform {
  padding: 70px 0;
}

.ba-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}

.ba-top {
  display: flex;
  justify-content: space-between;
  padding: 8px 10px;
}

.ba-top .badge {
  font-size: 0.7rem;
  background: #f3f4f6;
  color: #111;
  border-radius: 999px;
  padding: 2px 8px;
}
.ba-top .badge-left {
  background: #e7e7e9;
}
.ba-top .badge-right {
  background: #dff5e7;
}

/* === COMPARADOR ANTES/DEPOIS === */
.before-after-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3; /* ajuste se quiser outra proporção */
  border-radius: 14px;
  background: #f3f4f6;
}

/* lado ANTES */
.before-image-wrapper {
  position: absolute;
  inset: 0 auto 0 0;
  overflow: hidden;
  width: 50%; /* começa no meio */
  z-index: 10;
}
.before-image {
  background-size: cover;
  background-position: center;
  height: 100%;
  width: 100%;
}

/* lado DEPOIS */
.after-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

/* === HANDLE / SLIDER === */
.handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: #fff;
  cursor: col-resize;
  z-index: 20;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.handle::before {
  content: '';
  position: absolute;
  inset: 0 -20px; /* área de clique maior */
}

.handle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: url('/img/site/seta-nova.png') center/40px 40px no-repeat;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}
/
//ajuste para mobile
.before-after-wrapper {
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none; /* Para navegadores WebKit/iOS */
  touch-action: none;
}

.before-after-wrapper .handle {
  touch-action: none;
}
/* cursor no desktop */
@media (hover: hover) {
  .before-after-wrapper {
    cursor: ew-resize;
  }
}

/* ===== FAQ ===== */
.faq {
  padding: 8px 0 26px;
}
.accordion-clean .accordion-item {
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 10px;
}
.accordion-clean .accordion-button {
  background: #fff;
}
.accordion-clean .accordion-button:not(.collapsed) {
  color: #000;
  background: #fff7f1;
  box-shadow: none;
}

/* ===== SUPORTE ===== */
.support {
  padding: 10px 0 26px;
}
.support-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.support-card .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #fff1e6;
  color: var(--orange-600);
  display: grid;
  place-items: center;
  font-size: 22px;
}

/* ===== BLOG ===== */
.blog {
  background: #fff;
  padding: 10px 0 40px;
}
.blog-text h3 {
  margin-bottom: 6px;
}
.blog-text p {
  color: var(--muted);
}
.blog-meta .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #d1d5db;
  border: 0;
  margin-right: 6px;
}
.blog-meta .dot.active {
  background: var(--orange-600);
}
.blog-img img {
  width: 100%;
  height: auto;
  border-radius: 14px;
}

/* ===== Utilidades ===== */
.price small,
.price span {
  color: var(--muted);
}
/* Vídeo responsivo no Sobre */
.video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
}
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Missão com divisórias pontilhadas mais suaves */

/* ===== Dicas ===== */
.dicas .post-cat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: #a24915;
  background: #fff7f1;
  border: 1px solid #ffd8bf;
  border-radius: 999px;
  padding: 2px 10px;
}
.dicas .post-title a,
.dicas .post-row-title a {
  color: #111;
  text-decoration: none;
}
.dicas .post-title a:hover,
.dicas .post-row-title a:hover {
  color: var(--orange-600);
}

/* Destaque (mais lida) */
.post-feature {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}
.post-feature-thumb {
  border-radius: 12px;
  overflow: hidden;
  background: #f4f6f8;
  aspect-ratio: 16/10;
}
.post-feature-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.post-feature-body .post-title {
  margin: 0.5rem 0;
}

/* Lista alternada */
.posts-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.post-row {
  display: grid;
  grid-template-columns: 1.05fr 1.2fr;
  gap: 18px;
  align-items: center;
  border-bottom: 1px dashed #f1c7ac;
  padding-bottom: 18px;
}
.post-row.right {
  grid-template-columns: 1.2fr 1.05fr;
}
.post-row.right .post-thumb {
  order: 2;
}
.post-row.right .post-body {
  order: 1;
}

.post-thumb {
  border-radius: 12px;
  overflow: hidden;
  background: #f4f6f8;
  aspect-ratio: 16/10;
}
.post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.post-excerpt {
  color: var(--muted);
  margin: 0.35rem 0 0.6rem;
}

/* Responsivo */
@media (max-width: 991.98px) {
  .post-feature {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767.98px) {
  .post-row,
  .post-row.right {
    grid-template-columns: 1fr;
  }
  .post-row.right .post-thumb {
    order: 0;
  }
  .post-row.right .post-body {
    order: 0;
  }
}
/* Painel que envolve a grade de vagas */
.panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

/* Cards de vaga clicáveis */
a.job-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  transition: transform 0.12s ease, box-shadow 0.12s ease,
    border-color 0.12s ease;
}
a.job-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  border-color: #ffd8bf;
}
.job-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
.badge-type {
  background: #fff7f1;
  color: #a24915;
  border: 1px solid #ffd8bf;
  border-radius: 999px;
  padding: 2px 8px;
  font-size: 0.75rem;
}
.job-title {
  margin: 0.25rem 0 0.35rem;
  font-weight: 600;
}
.job-excerpt {
  color: var(--muted);
  margin: 0 0 0.5rem 0;
}
.job-cta {
  color: var(--orange-600);
  font-weight: 600;
  font-size: 0.9rem;
}

/* ===== INTERNA DE SERVIÇO ===== */
.svc-hero {
  padding: 28px 0 6px;
}
.svc-hero-wrap {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 18px;
  align-items: stretch;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}
.svc-hero-text {
  background: var(--orange-600);
  color: #fff;
  padding: 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.svc-hero-title {
  font-size: 2rem;
  font-weight: 800;
  margin: 0 0 6px;
  line-height: 1.15;
}
.svc-hero-sub {
  margin: 0;
  opacity: 0.95;
}
.svc-hero-photo {
  background: #eee;
}
.svc-hero-photo img {
  width: 100%;
  object-fit: cover;
}

@media (max-width: 992px) {
  .svc-hero-wrap {
    grid-template-columns: 1fr;
  }
}
.svc-input {
  background: #f3f6fb;
}
.svc-right-icon {
  position: absolute;
  right: 12px;
  top: 42px;
  display: flex;
  align-items: center;
  height: 24px;
}
.svc-address-card {
  border: 1px solid #e6e8eb;
  background: #f9fafb;
  border-radius: 12px;
  padding: 12px 14px;
}
.svc-input:disabled {
  background-color: #f3f4f6 !important;
  color: #9ca3af;
}

/* CEP + PREÇO */
.svc-checkout {
  padding: 16px 0 6px;
}
.svc-price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  height: 100%;
}
.svc-price-card .mini {
  font-size: 0.86rem;
}
.svc-price-main {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.1;
}
.svc-price-install {
  color: var(--muted);
  margin-top: 2px;
}
.svc-coupon {
  display: flex;
  gap: 10px;
  align-items: center;
  background: #f1f2f4;
  border-radius: 10px;
  padding: 10px 12px;
}
.svc-coupon .coupon-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--orange-600);
  color: #fff;
  font-weight: 700;
}

/* SOBRE */
.svc-about {
  padding: 20px 0 8px;
}
.svc-about-photo {
  border-radius: 16px;
  overflow: hidden;
  background: #f4f6f8;
}
.svc-about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* PASSOS */
.svc-steps {
  padding: 10px 0 28px;
  border-top: 1px solid #c0c0c0;
}
.svc-step-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.svc-step-ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #fff1e6;
  color: var(--orange-600);
  display: grid;
  place-items: center;
  font-size: 22px;
}

/* PASSOS */
.svc-steps {
  padding: 24px 0 40px;
  border-top: 1px solid #e5e7eb;
}

/* Card base */
.svc-step-card {
  background: #f97316; /* orange-600 */
  border: none;
  border-radius: 14px;
  padding: 26px 22px;
  height: 100%;
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.svc-step-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}

/* Variação de tons (como no mock: leve diferença entre cards) */
.svc-step-card.is-1 {
  background: #ea580c;
} /* 600 */
.svc-step-card.is-2 {
  background: #f97316;
} /* 700 */
.svc-step-card.is-3 {
  background: #fb923c;
} /* 400 */

/* Ícone circular branco */
.svc-step-ico {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #fff;
  color: #f97316;
  display: grid;
  place-items: center;
  font-size: 58px;
  flex-shrink: 0;
  margin-bottom: 6px;
}
.svc-step-card.is-2 .svc-step-ico {
  color: #ea580c;
}
.svc-step-card.is-3 .svc-step-ico {
  color: #fb923c;
}

/* Título e texto */
.svc-step-title {
  margin: 0;
  font-weight: 600;
  color: #fff;
  font-size: 1.3rem;
}
.svc-step-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.1rem;
  line-height: 1.35;
  text-align: center;
}

/* Responsivo */
@media (max-width: 991.98px) {
  .svc-step-card {
    padding: 22px 18px;
  }
  .svc-step-ico {
    width: 60px;
    height: 60px;
    font-size: 26px;
  }
  .svc-step-text {
    font-size: 0.95rem;
  }
}
/* agendamento  */

/* ====== Stepper / barra de progresso ====== */
/* Container principal do stepper */
.stepper-container {
  width: 100%;
  margin-bottom: 2rem;
}

/* Estilização dos labels */
.step-labels {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  width: 100%;
}

.step-labels span {
  flex: 1;
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted);
  padding: 0 8px;
  transition: color 0.2s ease;
}

.step-labels span.is-active {
  color: var(--orange-600);
  font-weight: 500;
}

/* Estilização da barra de progresso */
.stepper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 4px;
}

.step {
  flex: 1;
  height: 4px;
  background: var(--bs-gray-200, #eceff3);
  border-radius: 2px;
  transition: all 0.2s ease;
}

.step.is-active {
  background: var(--orange-600);
}

.step.is-done {
  background: var(--orange-300, #ffb380);
}

/* ====== Cartão/resumo ====== */
.resume-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  position: sticky;
  top: 16px;
}
.resume-row {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin: 8px 0;
  color: #374151;
}
.resume-row i {
  color: var(--orange-600);
}
.resume-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #eee;
  padding-top: 10px;
  margin-top: 10px;
}
.resume-total .price {
  font-size: 1.4rem;
  font-weight: 800;
}

/* ====== Cartões de seleção ====== */
.slot-card,
.address-card,
.input-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
}

/* ====== Calendário simples (mock) ====== */
.day-strip {
  display: flex;
  gap: 8px;
  overflow: auto;
  padding: 4px 0;
}
.day {
  min-width: 64px;
  border: 1px solid var(--line);
  border-radius: 10px;
  text-align: center;
  padding: 8px 6px;
  cursor: pointer;
  background: #fff;
}
.day small {
  display: block;
  color: #6b7280;
  margin-top: 2px;
}
.day.is-selected {
  outline: 2px solid var(--orange-600);
  outline-offset: -2px;
}

/* ====== Lista de faixas de horário ====== */
/* ====== Seletor de datas ====== */
.dates {
  display: flex;
  gap: 8px;
  overflow-x: scroll;
  padding-bottom: 12px;
  scrollbar-width: thin;
  scrollbar-color: var(--orange-400) #f0f0f0;
}
.dates::-webkit-scrollbar {
  height: 8px;
  -webkit-appearance: none;
}
.dates::-webkit-scrollbar:horizontal {
  height: 8px;
}
.dates::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 10px;
  margin: 0 4px;
}
.dates::-webkit-scrollbar-thumb {
  background: var(--orange-400);
  border-radius: 10px;
  min-width: 40px;
}
.dates::-webkit-scrollbar-thumb:hover {
  background: var(--orange-600);
}
.dates::-webkit-scrollbar-corner {
  background: transparent;
}
.date {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 16px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 80px;
  background: #fff;
  transition: all 0.2s ease;
}
.date:hover {
  border-color: var(--orange-400);
  background: #fffaf6;
}
.date .weekday {
  font-size: 0.75rem;
  color: #666;
  text-transform: uppercase;
  font-weight: 600;
}
.date .day {
  font-size: 0.95rem;
  color: #111;
  font-weight: 600;
}
.date.is-selected {
  border-color: var(--orange-600);
  background: #fff7f1;
}
.date.is-selected .weekday,
.date.is-selected .day {
  color: var(--orange-600);
}

/* ====== Seletor de horários ====== */
.slots {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}
.slot {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
}
.slot input {
  accent-color: var(--orange-600);
}
.slot.is-selected {
  border-color: var(--orange-600);
  background: #fff7f1;
}

/* ====== Botões navegação ====== */
.nav-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 14px;
}
.btn-outline {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  padding: 0.7rem 1rem;
}
.btn-continue {
  background: var(--orange-600);
  color: #fff;
  border: 0;
  border-radius: 10px;
  padding: 0.7rem 1.1rem;
  font-weight: 700;
}
.btn-continue:disabled {
  opacity: 0.45;
}

/* ====== Inputs ====== */
.form-check-input:checked {
  background-color: var(--orange-600);
  border-color: var(--orange-600);
}

/* ====== Mobile ====== */
@media (max-width: 991.98px) {
  .resume-card {
    position: static;
  }
}
