/* Variables */
:root {
  --ink: #24363a;
  --muted: #667477;
  --line: rgba(36, 54, 58, 0.12);
  --paper: #f7fbfb;
  --white: #ffffff;
  --brand-gray: #dadada;
  --brand-cyan: #12d4d5;
  --teal: #10b9b8;
  --teal-dark: #079998;
  --blue: #0b3940;
  --lime: #99c45a;
  --shadow: 0 18px 48px rgba(20, 56, 62, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Sora", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 18px;
  left: 50%;
  display: flex;
  width: min(1160px, calc(100% - 32px));
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.42)),
    rgba(255, 255, 255, 0.36);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 12px 40px rgba(14, 44, 64, 0.12);
  backdrop-filter: blur(28px) saturate(1.3);
  -webkit-backdrop-filter: blur(28px) saturate(1.3);
  transform: translateX(-50%);
  transition: box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.site-header.is-scrolled {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.48)),
    rgba(255, 255, 255, 0.42);
  border-color: rgba(255, 255, 255, 0.65);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 18px 54px rgba(14, 44, 64, 0.14);
  backdrop-filter: blur(32px) saturate(1.4);
  -webkit-backdrop-filter: blur(32px) saturate(1.4);
}

.brand {
  display: flex;
  align-items: center;
  width: min(230px, 46vw);
}

.brand-logo {
  width: 100%;
  height: auto;
  max-height: 52px;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-icon {
  display: none;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 7px;
  color: #294251;
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a:hover {
  background: rgba(15, 165, 154, 0.1);
}

.site-nav .nav-cta {
  color: var(--white);
  background: var(--teal-dark);
}

.header-social {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  margin-right: 12px;
}

.header-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 6px;
  color: rgba(36, 54, 58, 0.45);
  transition: color 0.2s ease, background 0.2s ease;
}

.header-social a:hover {
  color: var(--teal-dark);
  background: rgba(7, 153, 152, 0.08);
}

.header-social .icon {
  width: 16px;
  height: 16px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 8px;
  background: #eef7f7;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 68vh;
  overflow: hidden;
  padding: 112px max(24px, calc((100vw - 1160px) / 2)) 46px;
  isolation: isolate;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media {
  background: #0a2536;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 100% center;
  transform: scale(1.04);
  animation: slow-pan 16s ease-in-out infinite alternate;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 29, 47, 0.95) 0%, rgba(8, 29, 47, 0.72) 42%, rgba(8, 29, 47, 0.18) 100%),
    linear-gradient(0deg, rgba(247, 251, 251, 1) 0%, rgba(247, 251, 251, 0) 28%);
}

.hero-content {
  width: min(680px, 100%);
  color: var(--white);
}

.hero-mobile-photo {
  display: none;
}

.eyebrow,
.section-kicker,
.card-label {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 640px;
  margin: 12px 0 14px;
  font-family: "Sora", Arial, sans-serif;
  font-size: clamp(2.55rem, 5.2vw, 4.65rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.55;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 20px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--teal);
  box-shadow: 0 18px 36px rgba(15, 165, 154, 0.28);
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
}

.button-dark {
  width: 100%;
  color: var(--white);
  background: var(--ink);
}

.hero-panel {
  position: absolute;
  right: max(24px, calc((100vw - 1160px) / 2));
  bottom: 32px;
  width: min(330px, calc(100% - 48px));
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  color: var(--white);
  background: rgba(16, 34, 47, 0.68);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

@media (min-width: 921px) {
  .hero-media img {
    width: 100%;
    max-width: none;
    object-position: center center;
    transform-origin: right center;
  }

  .hero-content {
    max-width: 610px;
  }

  .hero-panel {
    right: max(24px, calc((100vw - 1160px) / 2 + 86px));
    bottom: 34px;
    width: 330px;
  }
}

.hero-panel p {
  margin: 8px 0 10px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-panel strong {
  display: block;
  margin-bottom: 16px;
  font-size: 1.15rem;
  line-height: 1.35;
}

.hero-panel a {
  color: var(--lime);
  font-weight: 800;
}

.status-dot {
  display: inline-block;
  position: relative;
  width: 10px;
  height: 10px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--lime);
  flex-shrink: 0;
}

.status-dot::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--lime);
  animation: dot-ping 1.4s ease-out infinite;
}

.reminder-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid rgba(207, 233, 111, 0.3);
  border-radius: 8px;
  color: var(--lime);
  background: rgba(207, 233, 111, 0.1);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: reminder-glow 1.25s ease-in-out infinite;
}

.reminder-badge .status-dot {
  margin-right: 0;
}

.icon {
  width: 1.15em;
  height: 1.15em;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.nav-cta .icon,
.button-primary .icon,
.floating-whatsapp .icon {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
}

/* WhatsApp é fill-based (brand icon oficial) */
.icon use[href="#icon-whatsapp"] {
  fill: currentColor;
  stroke: none;
}
[href="#icon-whatsapp"] ~ use,
svg:has(use[href="#icon-whatsapp"]) {
  fill: currentColor !important;
  stroke: none !important;
}
.nav-cta svg.icon:has(use[href="#icon-whatsapp"]),
.button-primary svg.icon:has(use[href="#icon-whatsapp"]),
.floating-whatsapp svg.icon:has(use[href="#icon-whatsapp"]),
svg.icon:has(use[href="#icon-whatsapp"]) {
  fill: currentColor !important;
  stroke: none !important;
  stroke-width: 0 !important;
}

.trust-strip {
  display: grid;
  width: min(1160px, calc(100% - 32px));
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0 auto 70px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.trust-strip div {
  min-height: 122px;
  padding: 24px;
  background: var(--white);
}

.brand-icon-badge {
  display: block;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  object-fit: contain;
}

.icon-badge {
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  padding: 8px;
  border-radius: 8px;
  color: var(--teal);
  background: rgba(18, 185, 185, 0.1);
}

.trust-strip strong {
  display: block;
  max-width: 330px;
  font-size: clamp(1.45rem, 2vw, 1.95rem);
  line-height: 1.12;
}

.trust-strip span {
  display: block;
  max-width: 360px;
  margin-top: 12px;
  color: var(--muted);
  font-weight: 700;
}

.section {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 80px 0;
}

.proof-section,
.difference-section {
  display: grid;
  gap: 46px;
  align-items: center;
}

.proof-section {
  grid-template-columns: 1.2fr 0.8fr;
}

.difference-section {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
}

.image-panel {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-panel img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.image-panel:hover img {
  transform: scale(1.04);
}

/* ── Video thumbnail ── */
.video-thumb {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  padding: 0;
  background: none;
  cursor: pointer;
  overflow: hidden;
  border-radius: 8px;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.video-thumb:hover img {
  transform: scale(1.04);
}

.play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.play-btn svg {
  width: 68px;
  height: 68px;
  padding: 18px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  color: var(--teal-dark);
  box-shadow: 0 8px 32px rgba(0,0,0,0.22);
  animation: play-pulse 2s ease-in-out infinite;
}

@keyframes play-pulse {
  0%, 100% { transform: scale(1);    box-shadow: 0 8px 32px rgba(0,0,0,0.22), 0 0 0 0 rgba(255,255,255,0.5); }
  50%       { transform: scale(1.1); box-shadow: 0 8px 40px rgba(0,0,0,0.28), 0 0 0 14px rgba(255,255,255,0); }
}

/* ── Video overlay / lightbox ── */
.video-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 18, 28, 0.88);
  backdrop-filter: blur(6px);
  padding: 24px;
  animation: overlay-in 0.25s ease;
}

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

@keyframes overlay-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.video-overlay video {
  width: 100%;
  max-width: 960px;
  max-height: 90vh;
  border-radius: 12px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
  outline: none;
}

.video-overlay__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.video-overlay__close:hover {
  background: rgba(255,255,255,0.22);
}

.video-overlay__close svg {
  width: 20px;
  height: 20px;
}

.difference-section .image-panel {
  align-self: stretch;
  height: auto;
  min-height: 420px;
}

.difference-section .image-panel img {
  height: 100%;
  min-height: 0;
  object-position: center center;
}

.proof-copy h2,
.difference-copy h2 {
  margin: 12px 0 18px;
  font-family: "Sora", Arial, sans-serif;
  font-size: clamp(2.1rem, 4vw, 4rem);
  font-weight: 800;
  line-height: 1.04;
}

.proof-copy p,
.difference-copy p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.8;
}

.rating-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  align-items: center;
  margin-top: 26px;
}

.rating-score {
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--teal-dark);
  line-height: 1;
  margin-right: 10px;
  margin-top: 12px;
}

.rating-row span {
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  color: #f5a400;
  background: transparent;
}

.rating-row span .icon {
  fill: currentColor;
  stroke-width: 0;
}

.rating-row strong {
  width: auto;
}

.clients-section {
  width: 100%;
  max-width: none;
  padding: 74px 0;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #eef8f8 100%);
}

.clients-heading {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto 34px;
  text-align: center;
}

.clients-heading h2 {
  margin: 12px auto 14px;
  font-family: "Sora", Arial, sans-serif;
  font-size: clamp(2.1rem, 4vw, 4.2rem);
  font-weight: 800;
  line-height: 1.04;
}

.clients-heading p {
  max-width: 660px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.75;
}

.clients-carousel {
  position: relative;
  width: 100%;
  padding: 8px 0 18px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}

.clients-track {
  display: flex;
  width: max-content;
  gap: 0px;
  animation: clients-scroll 42s linear infinite;
}

.client-logo {
  display: grid;
  width: 270px;
  height: 144px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(7, 153, 152, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 42px rgba(9, 33, 52, 0.08);
}

.client-logo img {
  width: 84%;
  height: 76%;
  object-fit: contain;
  filter: saturate(0.94);
  transition: filter 0.2s ease, transform 0.2s ease;
}

.client-logo:hover img {
  filter: saturate(1.1);
  transform: scale(1.04);
}

.section-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 54px;
  align-items: center;
}

.section-copy h2,
.section-heading h2,
.contact-copy h2 {
  margin: 12px 0 18px;
  font-family: "Sora", Arial, sans-serif;
  font-size: clamp(2.1rem, 4vw, 4.2rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: 0;
}

.section-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.8;
}

.nr1-section {
  position: relative;
}

.nr1-card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.nr1-card h3 {
  margin: 8px 0 18px;
  font-family: "Sora", Arial, sans-serif;
  font-size: 2rem;
  line-height: 1.08;
}

.nr1-card ul {
  display: grid;
  gap: 12px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.nr1-card li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: #304755;
  font-weight: 700;
}

.nr1-card li .icon {
  width: 21px;
  height: 21px;
  color: var(--teal);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.service-card {
  min-height: 330px;
  overflow: hidden;
  padding: 0 0 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-card:hover {
  border-color: rgba(15, 165, 154, 0.34);
  box-shadow: 0 18px 50px rgba(9, 33, 52, 0.12);
  transform: translateY(-6px);
}

.service-card span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal);
  font-weight: 900;
}

.service-card span .icon {
  width: 28px;
  height: 28px;
  padding: 6px;
  border-radius: 7px;
  background: rgba(15, 165, 154, 0.1);
}

.service-card h3 {
  margin: 26px 28px 14px;
  font-family: "Sora", Arial, sans-serif;
  font-size: 1.35rem;
  line-height: 1.18;
  color: var(--teal-dark);
}

.service-card p,
.timeline-item p,
.faq p {
  color: var(--muted);
  line-height: 1.65;
}

.service-card p {
  margin-right: 28px;
  margin-left: 28px;
}

.service-image {
  height: 220px;
  overflow: hidden;
  background: #eaf4f3;
  position: relative;
}

.service-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent 0%, #ffffff 100%);
  pointer-events: none;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.difference-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.difference-list article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 4px 14px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  animation: diff-float 4s ease-in-out infinite;
  will-change: transform;
}

.difference-list article:nth-child(1) { animation-delay: 0s; }
.difference-list article:nth-child(2) { animation-delay: 1.3s; }
.difference-list article:nth-child(3) { animation-delay: 2.6s; }

@keyframes diff-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-7px); }
}

.difference-list .icon {
  grid-row: 1 / span 2;
  width: 42px;
  height: 42px;
  padding: 10px;
  border-radius: 8px;
  color: var(--teal);
  background: rgba(15, 165, 154, 0.1);
}

.difference-list strong {
  font-size: 1.06rem;
}

.difference-list span {
  color: var(--muted);
  line-height: 1.5;
}

.process {
  width: 100%;
  max-width: none;
  padding: 80px max(24px, calc((100vw - 1200px) / 2));
  background: linear-gradient(160deg, #f0fafa 0%, #ffffff 60%);
}

.process .section-sub {
  max-width: 720px;
  margin: -5px 0 0;
  color: var(--muted);
  font-size: 1rem;
  text-align: left;
  line-height: 1.7;
}

/* ---- faixa de nós ---- */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 56px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(9,33,52,0.07);
}

.timeline-item {
  display: flex;
  flex-direction: column;
  position: relative;
}

/* nó: faixa topo com bg diferenciado */
.timeline-node {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  background: rgba(15,165,154,0.07);
  border-bottom: 1px solid rgba(15,165,154,0.12);
  position: relative;
}

/* seta conectora entre itens */
.timeline-item:not(:last-child) .timeline-node::after {
  content: '›';
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--teal);
  opacity: 0.45;
  z-index: 2;
  pointer-events: none;
}

/* separador vertical entre itens */
.timeline-item:not(:first-child) .timeline-node {
  border-left: 1px solid rgba(15,165,154,0.12);
}
.timeline-item:not(:first-child) .timeline-card {
  border-left: 1px solid rgba(15,165,154,0.08);
}

.timeline-step {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--teal);
  opacity: 0.35;
  line-height: 1;
  flex-shrink: 0;
}

.timeline-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #ffffff;
  border: 1.5px solid rgba(15,165,154,0.22);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(9,33,52,0.06);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.timeline-item:hover .timeline-icon-wrap {
  background: var(--teal);
  border-color: var(--teal);
}

.timeline-icon-wrap .icon {
  width: 22px;
  height: 22px;
  stroke: var(--teal-dark);
  fill: none;
  stroke-width: 1.8;
  transition: stroke 0.2s ease;
}

.timeline-item:hover .timeline-icon-wrap .icon {
  stroke: #ffffff;
}

.timeline-node--final {
  background: rgba(15,165,154,0.13);
}

.timeline-node--final .timeline-icon-wrap {
  background: var(--teal);
  border-color: var(--teal);
}

.timeline-node--final .timeline-icon-wrap .icon {
  stroke: #ffffff;
}

.timeline-node--final .timeline-step {
  opacity: 0.6;
}

/* card: conteúdo abaixo do nó */
.timeline-card {
  padding: 24px 24px 28px;
  background: #ffffff;
  flex: 1;
}

.timeline-card h3 {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.3;
}

.timeline-card p {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.65;
}

/* mobile — cards empilhando com sticky scroll */
@media (max-width: 820px) {
  .timeline {
    display: block;
    overflow: visible;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    padding-bottom: 32px;
  }

  .timeline-item {
    position: sticky;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 14px;
    box-shadow: 0 6px 28px rgba(9,33,52,0.11);
    flex-direction: column;
  }

  /* cards travam ~30% do viewport (acima do meio) → efeito deck */
  .timeline-item:nth-child(1) { top: calc(30vh);        z-index: 1; }
  .timeline-item:nth-child(2) { top: calc(30vh + 14px); z-index: 2; }
  .timeline-item:nth-child(3) { top: calc(30vh + 28px); z-index: 3; }
  .timeline-item:nth-child(4) { top: calc(30vh + 42px); z-index: 4; }

  /* remove divisórias do layout desktop */
  .timeline-item:not(:first-child) .timeline-node {
    border-left: none;
    border-top: 1px solid rgba(15,165,154,0.12);
  }
  .timeline-item:not(:first-child) .timeline-card {
    border-left: none;
  }

  /* esconde seta entre cards (não faz sentido no deck) */
  .timeline-item .timeline-node::after {
    display: none;
  }

  .timeline-step {
    font-size: 1.3rem;
  }

  .timeline-icon-wrap {
    width: 40px;
    height: 40px;
  }

  .timeline-icon-wrap .icon {
    width: 19px;
    height: 19px;
  }
}

.faq-list {
  border-top: 1px solid var(--line);
}

details {
  border-bottom: 1px solid var(--line);
  background: transparent;
}

summary {
  cursor: pointer;
  padding: 24px 0;
  font-size: 1.18rem;
  font-weight: 800;
}

summary::marker {
  color: var(--teal);
}

details p {
  max-width: 820px;
  margin: -8px 0 24px;
}

.contact-section {
  display: grid;
  width: min(1160px, calc(100% - 32px));
  grid-template-columns: 360px 1fr;
  gap: 40px;
  align-items: center;
  margin: 20px auto 80px;
  padding: 34px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--ink), var(--blue) 62%, var(--teal-dark));
}

.contact-content {
  min-width: 0;
}

.contact-photo {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.18);
}

.contact-photo img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.contact-photo:hover img {
  transform: scale(1.04);
}

.contact-photo2 {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.18);
  align-self: stretch;
}

.contact-photo2 .video-thumb {
  min-height: unset;
  height: 100%;
  border-radius: 8px;
}

.contact-photo2 .video-thumb img {
  min-height: unset;
  height: 100%;
  aspect-ratio: unset;
}

.contact-address {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.78);
  font-style: normal;
  font-weight: 700;
}

.contact-map {
  grid-column: 1 / -1;
  height: 260px;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 8px;
  border: 1px solid rgba(15,165,154,0.15);
}

.contact-section .section-kicker,
.contact-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.floating-whatsapp {
  position: fixed;
  z-index: 30;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  padding: 0 18px;
  color: var(--white);
  background: #1ebc65;
  box-shadow: 0 16px 34px rgba(30, 188, 101, 0.34);
  font-weight: 900;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 1.3s ease, transform 1.3s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes slow-pan {
  from {
    transform: scale(1.04) translateX(0);
  }
  to {
    transform: scale(1.09) translateX(18px);
  }
}

@keyframes reminder-pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 7px rgba(207, 233, 111, 0.14);
  }
  50% {
    transform: scale(1.22);
    box-shadow: 0 0 0 13px rgba(207, 233, 111, 0.03);
  }
}

@keyframes dot-ping {
  0%   { transform: scale(1);   opacity: 0.7; }
  100% { transform: scale(2.6); opacity: 0;   }
}

@keyframes reminder-glow {
  0%,
  100% {
    border-color: rgba(207, 233, 111, 0.26);
    box-shadow: 0 0 0 rgba(207, 233, 111, 0);
  }
  50% {
    border-color: rgba(207, 233, 111, 0.62);
    box-shadow: 0 0 24px rgba(207, 233, 111, 0.16);
  }
}

@keyframes clients-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 920px) {
  .menu-toggle {
    display: block;
  }

  .brand-logo {
    max-height: 38px;
  }

  .header-social {
    gap: 10px;
    margin-right: 4px;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 12px 40px rgba(14, 44, 64, 0.14);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px) scale(0.98);
    transform-origin: top center;
    transition: opacity 0.22s ease, transform 0.22s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0) scale(1);
  }

  @keyframes nav-item-in {
    from { opacity: 0; transform: translateX(-14px); }
    to   { opacity: 1; transform: translateX(0); }
  }

  .site-nav.is-open a:nth-child(1) { animation: nav-item-in 0.28s ease both; animation-delay: 0.06s; }
  .site-nav.is-open a:nth-child(2) { animation: nav-item-in 0.28s ease both; animation-delay: 0.12s; }
  .site-nav.is-open a:nth-child(3) { animation: nav-item-in 0.28s ease both; animation-delay: 0.18s; }
  .site-nav.is-open a:nth-child(4) { animation: nav-item-in 0.28s ease both; animation-delay: 0.24s; }
  .site-nav.is-open a:nth-child(5) { animation: nav-item-in 0.28s ease both; animation-delay: 0.30s; }
  .site-nav.is-open a:nth-child(6) { animation: nav-item-in 0.28s ease both; animation-delay: 0.36s; }

  .site-nav a {
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .nav-icon {
    display: block;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--teal);
    opacity: 0.8;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .hero {
    min-height: auto;
    padding-top: 118px;
    padding-bottom: 34px;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 9.4vw, 3.35rem);
  }

  .hero-panel {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    width: auto;
    margin-top: 24px;
  }

  .trust-strip,
  .section-grid,
  .service-grid,
  .timeline,
  .contact-section,
  .proof-section,
  .difference-section {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    margin-top: 0;
  }

  .service-card {
    min-height: 220px;
  }

  .service-card h3,
  .timeline-item h3 {
    margin-top: 34px;
  }

  .contact-section {
    align-items: start;
    padding: 28px;
  }

  .client-logo {
    width: 190px;
    height: 104px;
  }

  .image-panel,
  .image-panel img {
    min-height: 320px;
  }
}

@media (max-width: 560px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
  }

  .brand strong {
    font-size: 0.92rem;
  }

  .hero {
    padding-right: 16px;
    padding-left: 16px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(8, 29, 47, 0.94) 0%, rgba(8, 29, 47, 0.78) 100%),
      linear-gradient(0deg, rgba(247, 251, 251, 1) 0%, rgba(247, 251, 251, 0) 28%);
  }

  .button,
  .hero-actions,
  .contact-actions {
    width: 100%;
  }

  .section {
    padding: 58px 0;
  }

  .section-copy h2,
  .section-heading h2,
  .contact-copy h2,
  .proof-copy h2,
  .difference-copy h2 {
    font-size: 2.1rem;
  }

  .trust-strip div {
    min-height: auto;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
  }
}

/* Final medical direction overrides */
body {
  font-family: "Sora", Arial, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff 0%, #f7fbfb 42%, #ffffff 100%);
}

.site-header {
  top: 22px;
  padding: 14px 18px;
  border-color: rgba(255, 255, 255, 0.52);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.42)),
    rgba(255, 255, 255, 0.36);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 12px 40px rgba(14, 44, 64, 0.12);
  backdrop-filter: blur(28px) saturate(1.3);
  -webkit-backdrop-filter: blur(28px) saturate(1.3);
}

.site-header.is-scrolled {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.48)),
    rgba(255, 255, 255, 0.42);
  border-color: rgba(255, 255, 255, 0.65);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 18px 54px rgba(14, 44, 64, 0.14);
  backdrop-filter: blur(32px) saturate(1.4);
  -webkit-backdrop-filter: blur(32px) saturate(1.4);
}

.site-nav a {
  color: #31474b;
  font-weight: 500;
}

.site-nav .nav-cta {
  background: var(--teal-dark);
  font-weight: 600;
}

.hero {
  min-height: 80vh;
  padding-top: 142px;
  padding-bottom: 70px;
}

.hero-media {
  background: #eaf4f3;
}

.hero-media img {
  object-position: 84% center;
  filter: saturate(0.94);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(248, 252, 252, 0.98) 0%, rgba(248, 252, 252, 0.92) 34%, rgba(248, 252, 252, 0.56) 58%, rgba(248, 252, 252, 0.2) 100%),
    linear-gradient(0deg, rgba(247, 251, 251, 1) 0%, rgba(247, 251, 251, 0) 22%);
}

.hero-content {
  color: var(--ink);
}

.eyebrow,
.section-kicker,
.card-label {
  color: var(--teal-dark);
  font-weight: 600;
  letter-spacing: 0.16em;
}

.hero h1,
.proof-copy h2,
.difference-copy h2,
.clients-heading h2,
.section-copy h2,
.section-heading h2,
.contact-copy h2,
.nr1-card h3,
.service-card h3,
.timeline-item h3 {
  font-family: "Sora", Arial, sans-serif;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero h1,
.proof-copy h2,
.difference-copy h2,
.clients-heading h2,
.section-copy h2,
.section-heading h2,
.contact-copy h2 {
  color: transparent;
  background: linear-gradient(110deg, #16282d 0%, #23383c 42%, #087f7c 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.eyebrow,
.section-kicker,
.card-label {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border-radius: 999px;
  padding: 7px 12px;
  color: #ffffff;
  background: var(--teal-dark);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(3rem, 5.5vw, 5.1rem);
  line-height: 1.02;
}

.hero-copy {
  max-width: 650px;
  color: #455c61;
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
  font-weight: 400;
}

.button {
  min-height: 46px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: none;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary,
.button-dark {
  color: #ffffff;
  background: var(--teal-dark);
  box-shadow: 0 10px 24px rgba(7, 153, 152, 0.16);
}

.button-secondary {
  color: var(--ink);
  border-color: rgba(36, 54, 58, 0.22);
  background: rgba(255, 255, 255, 0.62);
}

.hero-panel {
  border-color: rgba(7, 153, 152, 0.18);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 16px 42px rgba(20, 56, 62, 0.11);
}

.hero-panel p {
  color: var(--muted);
  font-weight: 500;
}

.hero-panel strong {
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 500;
}

.hero-panel a {
  color: var(--teal-dark);
  font-weight: 600;
}

.reminder-badge {
  color: var(--teal-dark);
  border-color: rgba(7, 153, 152, 0.18);
  background: rgba(18, 185, 185, 0.08);
  font-weight: 600;
  animation: none;
}

.status-dot {
  background: var(--teal);
  box-shadow: 0 0 0 7px rgba(18, 185, 185, 0.12);
  animation: none;
}

.trust-strip,
.image-panel,
.nr1-card,
.service-card,
.difference-list article,
.client-logo,
.contact-section {
  box-shadow: 0 14px 36px rgba(20, 56, 62, 0.07);
}

.trust-strip div,
.nr1-card,
.service-card,
.difference-list article,
.client-logo {
  border-color: rgba(7, 153, 152, 0.13);
  background: rgba(255, 255, 255, 0.92);
}

.trust-strip strong,
.nr1-card h3,
.service-card h3,
.timeline-item h3,
summary,
.difference-list strong {
  font-weight: 500;
}

.nr1-card li,
.trust-strip span,
.service-card p,
.timeline-item p,
.faq p,
.section-copy p,
.contact-copy p,
.proof-copy p,
.difference-copy p,
.clients-heading p {
  color: var(--muted);
  font-weight: 400;
}

.section {
  padding: 88px 0;
}

.clients-section,
.process {
  background: linear-gradient(180deg, #ffffff 0%, #f3fafa 100%);
}

.service-card:hover {
  box-shadow: 0 18px 42px rgba(20, 56, 62, 0.1);
  transform: translateY(-3px);
}

.contact-section {
  color: var(--ink);
  border: 1px solid rgba(7, 153, 152, 0.12);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.97), rgba(240, 250, 250, 0.94)),
    linear-gradient(135deg, var(--white), var(--brand-cyan));
}

.contact-copy p,
.contact-address {
  color: var(--muted);
}

.contact-section .button-secondary {
  color: var(--teal-dark);
  border-color: rgba(7, 153, 152, 0.22);
  background: rgba(255, 255, 255, 0.72);
}

.contact-address {
  border-top-color: rgba(7, 153, 152, 0.14);
  font-weight: 400;
}

.floating-whatsapp {
  border-radius: 999px;
  background: var(--teal-dark);
  box-shadow: 0 12px 26px rgba(7, 153, 152, 0.2);
  font-weight: 600;
}

@media (max-width: 920px) {
  .hero {
    padding-top: 124px;
    padding-bottom: 42px;
  }

  .site-nav {
    border: 1px solid rgba(7, 153, 152, 0.12);
  }
}

@media (max-width: 560px) {
  .site-header {
    top: 10px;
  }

  .hero {
    display: flex;
    min-height: auto;
    flex-direction: column;
    gap: 22px;
    padding-top: 118px;
    padding-bottom: 42px;
    background: linear-gradient(180deg, #f6fbfb 0%, #ffffff 100%);
  }

  .hero-media,
  .hero-overlay {
    display: none;
  }

  .hero-mobile-photo {
    display: block;
    order: 1;
    overflow: hidden;
    border: 1px solid rgba(7, 153, 152, 0.12);
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(20, 56, 62, 0.1);
  }

  .hero-mobile-photo img {
    width: 100%;
    aspect-ratio: 8 / 11;
    object-fit: cover;
    object-position: center top;
  }

  .hero-content {
    order: 2;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 10vw, 3.25rem);
    line-height: 1.04;
  }

  .hero-copy {
    font-size: 1.02rem;
  }

  .hero-actions {
    order: 3;
  }

  .hero-panel {
    order: 4;
    margin-top: 0;
  }
}

@media (max-width: 820px) {
  :root {
    --hero-mobile-content-bottom: 48px;
    --hero-mobile-card-overlap: -42px;
  }

  .site-header {
    top: 14px;
    width: calc(100% - 32px);
    background: rgba(255, 255, 255, 0.86);
  }

  .hero {
    display: grid;
    min-height: auto;
    grid-template-areas:
      "visual"
      "notice";
    gap: 0;
    padding-top: 0;
    padding-bottom: 0;
    background: #f7fbfb;
  }

  .hero-media,
  .hero-overlay {
    display: none;
  }

  .hero-mobile-photo {
    display: block;
    position: relative;
    z-index: 1;
    grid-area: visual;
    overflow: hidden;
    border: 0;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 18px 42px rgba(20, 56, 62, 0.1);
  }

  .hero-mobile-photo::after {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(4, 18, 20, 0.02) 0%, rgba(4, 18, 20, 0.06) 30%, rgba(4, 18, 20, 0.3) 50%, rgba(4, 18, 20, 0.7) 76%, rgba(247, 251, 251, 0.96) 92%, rgba(247, 251, 251, 1) 100%),
      linear-gradient(90deg, rgba(4, 18, 20, 0.34) 0%, rgba(4, 18, 20, 0.08) 62%);
    content: "";
  }

  .hero-mobile-photo img {
    width: 100%;
    height: min(95vh, 960px);
    min-height: 680px;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: center top;
  }

  .hero-content {
    z-index: 2;
    grid-area: visual;
    align-self: end;
    padding: 0 18px var(--hero-mobile-content-bottom);
    color: #ffffff;
  }

  .hero h1 {
    max-width: 94%;
    color: #ffffff;
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    font-size: clamp(2.25rem, 9vw, 3.15rem);
    line-height: 1.06;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.28);
  }

  .hero-copy {
    max-width: 94%;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.28);
  }

  .hero-actions {
    width: 100%;
    gap: 10px;
    margin-top: 20px;
  }

  .hero-actions .button {
    width: auto;
    min-width: 0;
    color: #ffffff;
  }

  .hero-actions .button-primary {
    background: rgba(7, 153, 152, 0.94);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
  }

  .hero-actions .button-secondary {
    color: var(--teal-dark);
    border-color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .hero .eyebrow {
    color: #ffffff;
    background: rgba(7, 153, 152, 0.94);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  }

  .hero-panel {
    z-index: 3;
    grid-area: notice;
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    width: auto;
    margin: var(--hero-mobile-card-overlap) 10px 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 18px;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.16)),
      rgba(255, 255, 255, 0.18);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.5),
      0 18px 42px rgba(20, 56, 62, 0.12);
    backdrop-filter: blur(30px) saturate(1.35);
    -webkit-backdrop-filter: blur(30px) saturate(1.35);
  }

  .hero-panel::before {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 14% 0%, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0) 34%),
      linear-gradient(120deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0) 46%);
    content: "";
    pointer-events: none;
  }

  .hero-panel > * {
    position: relative;
    z-index: 1;
  }

  .hero-panel p,
  .hero-panel strong {
    color: #24363a;
  }

  .reminder-badge {
    border-color: rgba(255, 255, 255, 0.36);
    background: rgba(255, 255, 255, 0.22);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .floating-whatsapp {
    width: 54px;
    height: 54px;
    padding: 0;
    border-radius: 50%;
  }

  .floating-whatsapp span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }
}

/* Glass notification treatment for the NR-1 update card */
.hero-panel {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0.18)),
    rgba(255, 255, 255, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.62),
    0 18px 46px rgba(20, 56, 62, 0.14);
  backdrop-filter: blur(28px) saturate(1.26);
  -webkit-backdrop-filter: blur(28px) saturate(1.26);
}

.hero-panel::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0) 34%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0) 48%);
  content: "";
  pointer-events: none;
}

.hero-panel > * {
  position: relative;
  z-index: 1;
}

.hero-panel p,
.hero-panel strong {
  color: #24363a;
}

.reminder-badge {
  border-color: rgba(7, 153, 152, 0.22);
  background: rgba(255, 255, 255, 0.3);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.52);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.reminder-badge .status-dot {
  animation: reminder-pulse 1.25s ease-in-out infinite;
}

.process {
  width: min(1160px, calc(100% - 32px));
  max-width: 1160px;
  margin: 0 auto;
  padding: 88px 0;
  background: transparent;
}

.process .section-heading {
  max-width: 820px;
}

.process .section-heading h2 {
  font-size: clamp(2.4rem, 4.4vw, 4.4rem);
}

.timeline {
  border-color: rgba(7, 153, 152, 0.13);
  box-shadow: 0 14px 36px rgba(20, 56, 62, 0.07);
}

.timeline-item {
  background: rgba(255, 255, 255, 0.92);
}

/* ===========================================
   REFINAMENTO TIPOGRÁFICO — títulos menores
   =========================================== */

.hero h1 {
  font-size: clamp(1.95rem, 3.4vw, 3.1rem) !important;
  line-height: 1.12 !important;
  max-width: 620px;
}

.hero-copy {
  max-width: 560px;
  font-size: clamp(1rem, 1.3vw, 1.1rem) !important;
}

.section-copy h2,
.section-heading h2,
.contact-copy h2,
.proof-copy h2,
.difference-copy h2,
.clients-heading h2 {
  font-size: clamp(1.5rem, 2.2vw, 2.2rem) !important;
  line-height: 1.2 !important;
  margin-top: 8px !important;
  margin-bottom: 16px !important;
}

.process .section-heading h2 {
  font-size: clamp(1.5rem, 2.2vw, 2.2rem) !important;
}

.nr1-card h3 {
  font-size: 1.45rem !important;
  line-height: 1.22 !important;
}

.service-card h3 {
  font-size: 1.15rem !important;
  color: var(--teal-dark) !important;
}

.timeline-item h3 {
  font-size: 1.2rem !important;
}

.trust-strip strong {
  font-size: clamp(0.95rem, 1.4vw, 1.2rem) !important;
  line-height: 1.3 !important;
}

/* ===========================================
   ALINHAMENTO — blocos de texto consistentes
   =========================================== */

.proof-copy,
.difference-copy,
.section-copy,
.contact-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.section-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.clients-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.proof-copy p,
.difference-copy p,
.section-copy p,
.contact-copy p,
.clients-heading p {
  max-width: 100%;
}

/* ===========================================
   ANIMAÇÕES — reveal lateral e stagger
   =========================================== */

.reveal-left {
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity 1.3s ease, transform 1.3s ease;
}
.reveal-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(36px);
  transition: opacity 1.3s ease, transform 1.3s ease;
}
.reveal-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.93);
  transition: opacity 1.1s ease, transform 1.1s ease;
}
.reveal-scale.is-visible {
  opacity: 1;
  transform: scale(1);
}

.stagger-1 { transition-delay: 0.18s !important; }
.stagger-2 { transition-delay: 0.36s !important; }
.stagger-3 { transition-delay: 0.54s !important; }
.stagger-4 { transition-delay: 0.72s !important; }

/* ===========================================
   MICRO-INTERAÇÕES — hover e motion
   =========================================== */

/* WhatsApp flutuante — animação suave */
@keyframes float-bob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-7px); }
}
.floating-whatsapp {
  animation: float-bob 2.8s ease-in-out infinite;
}

/* Status dot sempre pulsando */
.status-dot::after {
  animation: dot-ping 1.4s ease-out infinite !important;
}

/* Cards de serviço — glow teal no hover */
.service-card:hover {
  box-shadow: 0 22px 52px rgba(7, 153, 152, 0.18), 0 0 0 1.5px rgba(7, 153, 152, 0.2) !important;
  transform: translateY(-6px) !important;
}

/* Trust strip — hover lift */
.trust-strip div {
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}
.trust-strip div:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(20, 56, 62, 0.1) !important;
}

/* Timeline items — hover lift */
.timeline-item {
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}
.timeline-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(20, 56, 62, 0.09);
  z-index: 1;
  position: relative;
}

/* NR-1 list items — slide direita */
.nr1-card li {
  transition: transform 0.22s ease, color 0.22s ease;
  cursor: default;
}
.nr1-card li:hover {
  transform: translateX(6px);
  color: var(--teal-dark);
}

/* Difference list — hover lateral */
.difference-list article {
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.difference-list article:hover {
  transform: translateX(6px);
  border-color: rgba(7, 153, 152, 0.3);
  box-shadow: 0 12px 28px rgba(20, 56, 62, 0.08);
}

/* Image panel — escala mais pronunciada */
.image-panel:hover img {
  transform: scale(1.06);
}

/* FAQ — destaque ao abrir */
details {
  transition: background 0.25s ease;
  border-radius: 6px;
}
details[open] {
  background: rgba(7, 153, 152, 0.035);
  padding: 0 12px;
}
details[open] summary {
  color: var(--teal-dark);
}

/* Botões — glow mais forte */
.button-primary:hover {
  box-shadow: 0 16px 40px rgba(7, 153, 152, 0.36) !important;
  transform: translateY(-2px) !important;
}

/* Header — linha teal ao scrollar */
.site-header::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 16px;
  right: 16px;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
  border-radius: 999px;
}
.site-header.is-scrolled::after {
  opacity: 0.7;
}

/* Rating row — estrelas surgindo em sequência, loop */
@keyframes star-pop {
  0% {
    opacity: 0;
    transform: scale(0.15) rotate(-25deg);
  }
  12% {
    opacity: 1;
    transform: scale(1.35) rotate(6deg);
  }
  20% {
    transform: scale(0.88) rotate(-2deg);
  }
  28% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
  68% {
    opacity: 1;
    transform: scale(1);
  }
  82% {
    opacity: 0;
    transform: scale(0.5) rotate(10deg);
  }
  100% {
    opacity: 0;
    transform: scale(0.15);
  }
}

.rating-row span {
  animation: star-pop 3.6s ease-in-out infinite both;
}
.rating-row span:nth-child(2) { animation-delay: 0s; }
.rating-row span:nth-child(3) { animation-delay: 0.28s; }
.rating-row span:nth-child(4) { animation-delay: 0.56s; }
.rating-row span:nth-child(5) { animation-delay: 0.84s; }
.rating-row span:nth-child(6) { animation-delay: 1.12s; }

/* Client logo — hover mais vivo */
.client-logo:hover img {
  filter: saturate(1.15) brightness(1.02);
  transform: scale(1.05);
}

/* ── Stats / Números ── */
@keyframes stats-gradient {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.stats-section {
  background: linear-gradient(135deg, #0b3940, #0d5c58, #079998, #085e6a, #0b3940);
  background-size: 300% 300%;
  animation: stats-gradient 9s ease infinite;
  padding: 64px max(24px, calc((100vw - 1160px) / 2));
}

.stats-grid {
  display: flex;
  justify-content: center;
  align-items: stretch;
  max-width: 900px;
  margin: 0 auto;
}

.stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 32px;
}

.stat-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
  align-self: stretch;
  margin: 16px 0;
}

.stat-prefix {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-cyan);
  margin-bottom: 4px;
}

.stat-number {
  margin: 0 0 6px;
  line-height: 1;
}

.stat-number [data-count] {
  font-size: clamp(2.8rem, 5.8vw, 4.5rem);
  font-weight: 700;
  color: #fff;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 400;
  margin: 0;
}

@media (max-width: 560px) {
  .stats-grid {
    flex-direction: column;
  }
  .stat-divider {
    width: 48px;
    height: 1px;
    align-self: center;
    margin: 0;
  }
  .stat-item {
    padding: 24px 16px;
  }
}

@media (max-width: 820px) {
  .reveal-left,
  .reveal-right {
    transform: translateY(22px);
    transition: opacity 0.72s ease, transform 0.72s ease;
  }
  .reveal-left.is-visible,
  .reveal-right.is-visible {
    transform: translateY(0);
  }

  /* Serviços: cada card entra de um lado alternado */
  .service-card.reveal-left {
    transform: translateX(-52px);
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .service-card.reveal-right {
    transform: translateX(52px);
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .service-card.reveal-left.is-visible,
  .service-card.reveal-right.is-visible {
    transform: translateX(0);
    opacity: 1;
  }

  .floating-whatsapp {
    animation: none;
  }
}

/* ===========================================
   HERO DESKTOP — face abaixo do menu + painel centralizado
   =========================================== */

@media (min-width: 821px) {
  /* Centraliza hero-content verticalmente */
  .hero {
    display: flex !important;
    align-items: center !important;
    padding-top: 100px !important;
    padding-bottom: 60px !important;
  }

  /* Imagem volta ao topo (sem gap branco) */
  .hero-media,
  .hero-overlay {
    top: 0 !important;
  }

  /* Overlay com fade no topo que cobre a zona do header (~100px)
     — a imagem fica full-bleed mas o rosto aparece abaixo do menu */
  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(247,251,251,0.98) 0%, rgba(247,251,251,0) 17%),
      linear-gradient(90deg, rgba(248,252,252,0.98) 0%, rgba(248,252,252,0.96) 38%, rgba(248,252,252,0.72) 52%, rgba(248,252,252,0.08) 64%, rgba(248,252,252,0) 74%),
      linear-gradient(0deg, rgba(247,251,251,1) 0%, rgba(247,251,251,0) 22%) !important;
  }

  /* Painel NR-1 — base do hero, longe do rosto */
  .hero-panel {
    top: auto !important;
    bottom: 40px !important;
    transform: none !important;
  }

  .hero-panel.reveal {
    opacity: 0;
    transform: translateY(18px) !important;
    transition: opacity 0.72s ease, transform 0.72s ease;
  }
  .hero-panel.reveal.is-visible {
    opacity: 1;
    transform: translateY(0) !important;
  }
}

/* ===========================================
   HERO MOBILE — foto full-width + ordem: foto → lembrete → conteúdo
   =========================================== */

@media (max-width: 820px) {
  /* Grid: foto (com lembrete sobreposto) / conteúdo */
  .hero {
    grid-template-areas:
      "photo"
      "content" !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    background: #f7fbfb !important;
  }

  /* Foto — sem borda, sem raio, sem sombra, sem ::after escuro */
  .hero-mobile-photo {
    grid-area: photo !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    margin-bottom: 0 !important;
  }

  /* Remove completamente o overlay escuro da foto */
  .hero-mobile-photo::after {
    display: none !important;
  }

  /* Lembrete sobreposto — mais alto na foto */
  .hero-panel {
    grid-area: photo !important;
    align-self: end !important;
    z-index: 5 !important;
    position: relative !important;
    right: auto !important;
    bottom: auto !important;
    margin: 0 16px 220px !important;
  }

  /* Conteúdo sobe sobre a foto — fundo transparente para ver o gradiente ::before */
  .hero-content {
    grid-area: content !important;
    align-self: start !important;
    position: relative !important;
    z-index: 3 !important;
    margin-top: -160px !important;
    padding: 0 20px 32px !important;
    background: transparent !important;
    color: var(--ink) !important;
  }

  /* Gradiente de transição foto → fundo — pinta ATRÁS do texto, SOBRE a foto */
  .hero-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 220px;
    background: linear-gradient(180deg,
      rgba(247,251,251,0)    0%,
      rgba(247,251,251,0.55) 10%,
      rgba(247,251,251,0.92) 50%,
      rgba(247,251,251,1)    80%
    );
    pointer-events: none;
  }

  /* Título com cor escura (não está mais sobre a foto) */
  .hero h1 {
    color: transparent !important;
    background: linear-gradient(110deg, #16282d 0%, #23383c 42%, #087f7c 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    text-shadow: none !important;
  }

  /* Subtítulo e botão secundário em cor normal */
  .hero-copy {
    color: var(--muted) !important;
    text-shadow: none !important;
  }

  .hero-actions .button-primary {
    background: var(--teal-dark) !important;
    box-shadow: 0 10px 24px rgba(7,153,152,0.2) !important;
  }

  .hero-actions .button-secondary {
    color: var(--ink) !important;
    border-color: rgba(36,54,58,0.22) !important;
    background: rgba(255,255,255,0.8) !important;
  }
}

/* ===========================================
   TRUST STRIP — ícones maiores + margem + mobile
   =========================================== */

/* Margem acima */
.trust-strip {
  margin-top: 48px !important;
}

/* Ícone maior e mais moderno */
.icon-badge {
  width: 56px !important;
  height: 56px !important;
  padding: 14px !important;
  margin-bottom: 22px !important;
  border-radius: 16px !important;
  color: var(--teal-dark) !important;
  background: linear-gradient(135deg, rgba(18,185,185,0.14), rgba(7,153,152,0.06)) !important;
  box-shadow: 0 4px 16px rgba(7,153,152,0.13) !important;
  stroke-width: 1.7 !important;
  transition: transform 0.22s ease, box-shadow 0.22s ease !important;
}

.trust-strip div:hover .icon-badge {
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(7,153,152,0.2) !important;
}

/* Desktop — mais padding interno */
.trust-strip div {
  padding: 32px 28px !important;
}

/* Mobile — coluna única com separador e espaçamento generoso */
@media (max-width: 920px) {
  .trust-strip {
    gap: 0 !important;
    border-radius: 12px;
    margin-top: 28px !important;
  }

  .trust-strip div {
    padding: 28px 24px !important;
    min-height: auto !important;
    border-bottom: 1px solid rgba(7,153,152,0.1);
  }

  .trust-strip div:last-child {
    border-bottom: none;
  }

  .icon-badge {
    width: 52px !important;
    height: 52px !important;
    margin-bottom: 18px !important;
  }

  .trust-strip strong {
    font-size: 1.05rem !important;
    margin-bottom: 6px;
  }

  .trust-strip span {
    font-size: 0.92rem !important;
    line-height: 1.55 !important;
  }
}

/* ===========================================
   SERVIÇOS — lista de detalhes nos cards
   =========================================== */

.service-list {
  list-style: none;
  margin: 14px 28px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.service-list li {
  position: relative;
  padding-left: 18px;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.45;
}

.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  opacity: 0.7;
}

/* ===========================================
   SERVIÇOS — ícone MD flutuante decorativo
   =========================================== */

.section--services {
  position: relative;
  overflow: visible;
}

.services-brand-icon {
  /* Posição e tamanho — edite aqui */
  position: absolute;
  top: 40px;         /* posição vertical dentro da seção */
  right: 80px;       /* distância da borda direita */
  width: 160px;      /* tamanho do ícone */
  height: 160px;
  object-fit: contain;
  opacity: 0.18;
  pointer-events: none;
  animation: icon-float 4s ease-in-out infinite;
  z-index: 0;
}

@keyframes icon-float {
  0%,  100% { transform: translateY(0)     rotate(0deg); }
  33%        { transform: translateY(-14px) rotate(3deg); }
  66%        { transform: translateY(-6px)  rotate(-2deg); }
}

@media (max-width: 820px) {
  .services-brand-icon {
    width: 100px;
    height: 100px;
    top: 20px;
    right: 20%;
    opacity: 0.12;
  }
}

/* Hero panel — link "Regularizar agora" em linha própria, direita, fonte fina */
.hero-panel a.panel-cta {
  display: block;
  margin-top: 20px;
  padding: 4px 0;
  font-size: 0.8rem;
  font-weight: 400 !important;
  letter-spacing: 0.02em;
  color: var(--teal-dark);
  text-decoration: none;
  opacity: 0.75;
  border-bottom: 1px solid rgba(7, 153, 152, 0.3);
  transition: opacity 0.2s ease, border-color 0.2s ease;
}

.hero-panel a.panel-cta:hover {
  opacity: 1;
  border-color: rgba(7, 153, 152, 0.7);
}
.hero-panel a.panel-cta::after {
  content: ' →';
}

/* Contact — link Google Maps abaixo do endereço */
.maps-link {
  display: block;
  margin-top: 6px;
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--teal-dark);
  text-decoration: none;
  font-style: normal;
}
.maps-link::before {
  content: '📍 ';
}
.maps-link:hover {
  text-decoration: underline;
}

/* ===========================================
   CLIENTES — fundo branco, logos sem card, fade lateral
   =========================================== */
.clients-section {
  background: #ffffff !important;
}

.client-logo {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  width: 190px !important;
  height: 100px !important;
  opacity: 0.72;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.client-logo:hover {
  opacity: 1;
}

.client-logo img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  filter: grayscale(100%) !important;
  transition: filter 0.25s ease !important;
}

.client-logo:hover img {
  filter: grayscale(0%) !important;
  transform: scale(1.12) !important;
}

.client-logo.is-active {
  opacity: 1 !important;
  transition: opacity 0.5s ease, transform 0.5s ease !important;
  transform: scale(1.22) !important;
}
.client-logo.is-active img {
  filter: grayscale(0%) !important;
  transition: filter 0.5s ease !important;
}

.clients-carousel {
  mask-image: linear-gradient(90deg,
    transparent 0%,
    #000 16%,
    #000 84%,
    transparent 100%
  ) !important;
}

/* ===========================================
   FOOTER
   =========================================== */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr 1fr;
  gap: 48px;
  width: min(1200px, calc(100% - 64px));
  margin: 0 auto;
  padding: 64px 0 48px;
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  display: block;
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  max-width: 260px;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.6);
  transition: background 0.18s ease, color 0.18s ease;
}

.footer-social a:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}

.footer-social .icon {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
}

.footer-nav,
.footer-services,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-nav h3,
.footer-services h3,
.footer-contact h3 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 6px;
}

.footer-nav a,
.footer-contact a,
.footer-contact address a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.15s ease;
  font-style: normal;
}

.footer-nav a:hover,
.footer-contact a:hover,
.footer-contact address a:hover {
  color: #fff;
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-contact .icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.footer-services span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
}

.footer-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  width: min(1200px, calc(100% - 64px));
  margin: 0 auto;
  padding: 18px 0 22px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    padding: 48px 0 36px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 540px) {
  .footer-inner {
    grid-template-columns: 1fr;
    width: calc(100% - 40px);
  }
  .footer-bar {
    flex-direction: column;
    text-align: center;
    width: calc(100% - 40px);
  }
}

/* ===========================================
   BOTÕES — gradiente animado + ícone pulsante
   =========================================== */

@keyframes btn-shimmer {
  0%   { left: -80%; }
  100% { left: 130%; }
}

@keyframes btn-glow-pulse {
  0%, 100% { box-shadow: 0 6px 20px rgba(7,153,152,0.35), 0 0 0 0 rgba(7,153,152,0); }
  50%       { box-shadow: 0 8px 28px rgba(7,153,152,0.55), 0 0 0 6px rgba(7,153,152,0.12); }
}

@keyframes icon-pulse {
  0%, 100% { transform: scale(1);    opacity: 1; }
  50%       { transform: scale(1.22); opacity: 0.85; }
}

.button-primary,
.button-dark,
.nav-cta {
  position: relative !important;
  overflow: hidden !important;
  background: linear-gradient(110deg, #057a7a 0%, var(--teal-dark) 50%, #0bbfb0 100%) !important;
  animation: btn-glow-pulse 2.2s ease-in-out infinite !important;
  will-change: box-shadow;
}

.button-primary::after,
.button-dark::after,
.nav-cta::after {
  content: '';
  position: absolute;
  top: -10%;
  left: -80%;
  width: 55%;
  height: 120%;
  background: linear-gradient(
    120deg,
    transparent            0%,
    rgba(255,255,255,0.08) 30%,
    rgba(255,255,255,0.52) 50%,
    rgba(255,255,255,0.08) 70%,
    transparent            100%
  );
  transform: skewX(-18deg);
  animation: btn-shimmer 2s ease-in-out infinite;
  will-change: left;
  pointer-events: none;
}

.button-primary .icon,
.button-dark .icon,
.nav-cta .icon {
  animation: icon-pulse 2s ease-in-out infinite;
  transform-origin: center;
  position: relative;
  z-index: 1;
  will-change: transform;
}

/* ===========================================
   PERFORMANCE — GPU compositing e lazy render
   =========================================== */

/* Carrossel: força GPU para a track animada */
.clients-track {
  will-change: transform;
}

/* Ícone flutuante MD */
.services-brand-icon {
  will-change: transform;
}

/* Estrelas do rating */
.rating-row span {
  will-change: transform, opacity;
}

/* Seções abaixo do fold: o browser pode lazy-render o layout */
.trust-strip,
.section--services,
.difference-section,
.process,
.faq,
.clients-section,
.contact-section,
.site-footer {
  content-visibility: auto;
  contain-intrinsic-size: 0 500px;
}

/* Evita reflow no resize para elementos fixos */
.site-header,
.floating-whatsapp {
  will-change: auto;
}

/* Carrossel pause: controlado via JS apenas em mouse (ver script.js) */
.clients-track.is-paused {
  animation-play-state: paused;
}

@media (max-width: 820px) {
  .client-logo {
    width: 200px !important;
    height: 108px !important;
  }
}

/* ===========================================
   FAQ — ícone chevron customizado, sem marker padrão
   =========================================== */

summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

summary::-webkit-details-marker {
  display: none;
}

summary::marker {
  display: none;
  content: '';
}

summary::after {
  content: '';
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(7,153,152,0.1);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23079998' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-size: 18px;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.25s ease, background-color 0.2s ease;
}

details[open] summary::after {
  transform: rotate(180deg);
  background-color: rgba(7,153,152,0.18);
}
