/* ===== Hero: badges + checklist ===== */
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem 1.3rem;
  margin-top: 1.3rem;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5ch;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
  text-shadow: 0 3px 18px rgba(255, 255, 255, 0.95), 0 1px 2px rgba(255, 255, 255, 0.9);
}

.hero__checklist {
  list-style: none;
  display: grid;
  gap: 0.55rem;
  margin: 1.7rem auto 0;
  text-align: left;
  max-width: 360px;
}

.hero__checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
  text-shadow: 0 3px 18px rgba(255, 255, 255, 0.95), 0 1px 2px rgba(255, 255, 255, 0.9);
}

.hero__checklist .ico {
  width: 18px;
  height: 18px;
  color: var(--blue);
  flex: none;
  margin-top: 2px;
}

.sobre__intro .btn--ghost {
  margin-top: 0.4rem;
}

.sobre__intro .link-arrow {
  display: block;
  margin-top: 1.4rem;
}

/* ===== Intent router ("Como podemos ajudar você?") ===== */
.intent {
  position: relative;
  background: linear-gradient(180deg, var(--white) 0%, var(--blue-faint) 100%);
}

.intent-grid {
  display: grid;
  gap: 1.2rem;
  margin-top: clamp(28px, 4vw, 44px);
}

.intent-card {
  display: flex;
  flex-direction: column;
  padding: clamp(1.8rem, 3vw, 2.3rem) clamp(1.5rem, 3vw, 1.9rem);
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
}

.intent-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(107, 182, 232, 0.5);
}

.intent-card__ico {
  width: 56px;
  height: 56px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-soft), var(--blue-faint));
  color: var(--blue);
  margin-bottom: 1.2rem;
}

.intent-card__ico svg {
  width: 27px;
  height: 27px;
}

.intent-card h3 {
  font-size: clamp(1.5625rem, 2.2vw, 1.6875rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 0.55rem;
}

.intent-card p {
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.3;
  color: var(--muted);
  margin-bottom: 1.6rem;
  flex: 1;
}

.intent-card .btn {
  align-self: flex-start;
}

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

/* ===== Urgência 24h ===== */
.urg-lead {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.82);
}

.urg-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  margin: clamp(24px, 4vw, 40px) 0 0;
  padding: 0;
}

.urg-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.85rem 1.1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--r-md);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.92);
}

.urg-list .ico {
  width: 18px;
  height: 18px;
  color: var(--blue-light);
  flex: none;
}

.urg-cta {
  text-align: center;
  margin-top: clamp(28px, 4vw, 40px);
}

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

/* ===== Diferenciais (5 itens) ===== */
.care--5 {
  grid-template-columns: 1fr;
}

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

@media (min-width: 900px) {
  .care--5 {
    grid-template-columns: repeat(5, 1fr);
  }
}

.care__item .ico {
  width: 22px;
  height: 22px;
  color: var(--blue);
  margin-bottom: 0.5rem;
}

/* ===== Tratamentos ===== */
.cat-cta {
  text-align: center;
  margin-top: clamp(30px, 4vw, 46px);
}

/* ===== Carrossel de tratamentos (profundidade 3D) ===== */
.depth-gallery {
  position: relative;
  width: 100%;
  height: clamp(320px, 46vw, 460px);
  margin: clamp(28px, 4vw, 44px) 0 0;
}

.depth-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: var(--dc-perspective, 1500px);
  perspective-origin: 50% 50%;
  touch-action: pan-y;
  outline: none;
  user-select: none;
  -webkit-user-select: none;
  cursor: grab;
}

.depth-carousel:active {
  cursor: grabbing;
}

.depth-carousel:focus-visible {
  outline: 2px solid var(--blue-bright);
  outline-offset: 4px;
  border-radius: var(--r-lg);
}

.depth-carousel__stage {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
}

.depth-carousel__card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transform-origin: center center;
  overflow: hidden;
  background: var(--navy-dark);
  box-shadow: 0 30px 60px -20px rgba(10, 37, 64, 0.5), 0 8px 20px -10px rgba(10, 37, 64, 0.35);
  will-change: transform, opacity, filter;
  cursor: pointer;
}

.depth-carousel__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  -webkit-user-drag: none;
}

.depth-carousel__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 18, 31, 0) 45%, rgba(4, 18, 31, 0.78) 100%);
  pointer-events: none;
}

.depth-carousel__label {
  position: absolute;
  left: 20px;
  bottom: 16px;
  z-index: 2;
  max-width: calc(100% - 40px);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1rem, 1.4vw + 0.6rem, 1.3rem);
  line-height: 1.2;
  color: var(--white);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
  pointer-events: none;
}

.depth-carousel__tint {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  mix-blend-mode: multiply;
}

.depth-carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--rule);
  color: var(--navy);
  backdrop-filter: blur(var(--glass-blur-sm));
  -webkit-backdrop-filter: blur(var(--glass-blur-sm));
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform var(--t-fast), background var(--t-fast), color var(--t-fast);
}

.depth-carousel__arrow:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-50%) scale(1.04);
}

.depth-carousel__arrow:active {
  transform: translateY(-50%) scale(0.96);
}

.depth-carousel__arrow--prev {
  left: 4px;
}

.depth-carousel__arrow--next {
  right: 4px;
}

.depth-carousel__dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 0.45rem;
}

.depth-carousel__dot {
  width: 22px;
  height: 2px;
  padding: 0;
  border: none;
  border-radius: 2px;
  background: rgba(10, 37, 64, 0.22);
  cursor: pointer;
  transition: background var(--t-fast), width var(--t-fast);
}

.depth-carousel__dot.is-active {
  background: var(--gold);
  width: 42px;
}

@media (max-width: 640px) {
  .depth-carousel__arrow {
    width: 38px;
    height: 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .depth-carousel__card {
    will-change: auto;
  }
  .depth-carousel__arrow,
  .depth-carousel__dot {
    transition: none;
  }
}

/* ===== Ponte "por que resolver aqui" ===== */
.bridge {
  text-align: center;
  padding-block: clamp(52px, 7vw, 84px);
  background: var(--white);
}

.bridge__lead {
  max-width: 620px;
  margin-inline: auto;
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.3;
}

.bridge__pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.7rem;
}

.bridge__pill {
  padding: 0.55rem 1.2rem;
  border-radius: var(--r-pill);
  background: var(--blue-soft);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.84rem;
}

/* ===== FAQ ===== */
.faq-list {
  display: grid;
  gap: 0.85rem;
  margin-top: clamp(24px, 3.4vw, 36px);
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.15rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--navy);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary .ico {
  color: var(--blue);
  flex: none;
  transition: transform var(--t-med);
}

.faq-item[open] summary .ico {
  transform: rotate(180deg);
}

.faq-item__body {
  padding: 0 1.4rem 1.3rem;
  color: var(--ink-soft);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.3;
}

/* ===== CTA final ===== */
.cta-final {
  background: radial-gradient(120% 90% at 0% 0%, var(--blue) 0%, transparent 60%),
    linear-gradient(150deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final .section__title {
  color: var(--white);
}

.cta-final__lead {
  max-width: 620px;
  margin: 1rem auto 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.3;
}

.cta-final__actions {
  margin-top: 2rem;
}

.cta-final__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.6rem;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.72);
}

/* ===== Barra fixa de WhatsApp (mobile) ===== */
.mobile-cta-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 95;
  display: none;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.97);
  border-top: 1px solid var(--rule);
  box-shadow: 0 -10px 30px -20px rgba(10, 37, 64, 0.5);
  backdrop-filter: blur(var(--glass-blur-sm));
  -webkit-backdrop-filter: blur(var(--glass-blur-sm));
}

.mobile-cta-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--r-pill);
  background: #25d366;
  color: var(--white);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px -10px rgba(37, 211, 102, 0.7);
}

.mobile-cta-bar svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 899px) {
  .mobile-cta-bar {
    display: block;
  }

  body {
    padding-bottom: 76px;
  }

  .social-float {
    display: none;
  }
}
