:root {
  --azul-principal: #21354a;
  --azul-escuro: #1a2935;
  --vermelho-japones: #aa1c20;
  --cinza-azulado: #99a3a9;
  --cinza-petroleo: #546169;
  --branco-gelo: #f7f9f7;
  --color-ink: var(--azul-principal);
  --color-muted: var(--cinza-petroleo);
  --color-soft: var(--branco-gelo);
  --color-card: var(--branco-gelo);
  --color-line: var(--cinza-azulado);
  --color-primary: var(--azul-principal);
  --color-primary-2: var(--azul-escuro);
  --color-primary-3: var(--azul-escuro);
  --color-accent: var(--vermelho-japones);
  --color-accent-2: var(--cinza-azulado);
  --color-white: var(--branco-gelo);
  --color-whatsapp: #17a653;
  --color-whatsapp-dark: #0f8841;
  --shadow-soft: 0 20px 45px rgba(33, 53, 74, 0.12);
  --container: 1180px;
  --radius: 8px;
  font-family: "Rethink Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-ink);
  background: var(--color-white);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

p,
h1,
h2,
h3,
figure,
blockquote {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: calc(100% - 40px);
  max-width: var(--container);
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 50;
  padding: 10px 14px;
  color: var(--color-white);
  background: var(--color-primary);
  border-radius: var(--radius);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  padding: 10px 0;
  background: rgba(26, 41, 53, 0.96);
  border-bottom: 1px solid rgba(247, 249, 247, 0.12);
  box-shadow: 0 12px 32px rgba(26, 41, 53, 0.14);
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 64px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand {
  gap: 12px;
  color: var(--branco-gelo);
  font-weight: 800;
}

.brand__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  overflow: hidden;
  border-radius: 50%;
}

.brand__mark img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand__name {
  font-size: 1.05rem;
  line-height: 1;
  white-space: nowrap;
}

.nav {
  display: flex;
  gap: 26px;
  color: var(--branco-gelo);
  font-size: 0.95rem;
  font-weight: 600;
}

.nav a {
  padding: 8px 0;
  opacity: 0.88;
}

.nav a:hover,
.nav a:focus-visible {
  opacity: 1;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 16px 28px;
  color: var(--branco-gelo);
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-2));
  border: 0;
  border-radius: var(--radius);
  box-shadow: 0 16px 30px rgba(33, 53, 74, 0.24);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 34px rgba(33, 53, 74, 0.3);
}

.button--small {
  min-height: 44px;
  padding: 12px 18px;
  font-size: 0.95rem;
}

.button--whatsapp {
  background: linear-gradient(90deg, var(--color-whatsapp), var(--color-whatsapp-dark));
  box-shadow: 0 16px 30px rgba(23, 166, 83, 0.24);
}

.button--outline {
  color: var(--color-white);
  background: transparent;
  border: 2px solid var(--color-white);
  box-shadow: none;
}

.button--outline:hover,
.button--outline:focus-visible {
  color: var(--color-ink);
  background: var(--color-white);
  box-shadow: none;
}

.hero {
  position: relative;
  min-height: 700px;
  padding: 132px 0 42px;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(170, 28, 32, 0.05) 0%, rgba(170, 28, 32, 0) 30%),
    linear-gradient(90deg, var(--branco-gelo) 0%, rgba(247, 249, 247, 0.98) 58%, rgba(247, 249, 247, 0.9) 100%);
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 640px) minmax(310px, 1fr);
  align-items: center;
  min-height: 500px;
  gap: 22px 54px;
}

.hero__copy {
  display: grid;
  gap: 22px;
  min-width: 0;
}

.eyebrow {
  color: var(--color-primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow--light {
  color: var(--color-accent-2);
}

.hero .eyebrow {
  color: var(--color-accent);
}

h1 {
  max-width: 720px;
  font-size: 3rem;
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.hero h1 {
  max-width: 650px;
  font-size: 2.45rem;
  line-height: 1.1;
}

h2 {
  font-size: 2.8rem;
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h3 {
  font-size: 1.35rem;
  line-height: 1.18;
  font-weight: 600;
  letter-spacing: 0;
}

.hero__lead,
.hero__note {
  max-width: 630px;
  color: var(--color-muted);
  font-size: 1.12rem;
  line-height: 1.35;
}

.hero__trust-card {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: min(100%, 560px);
  padding: 10px 20px 10px 10px;
  background: rgba(247, 249, 247, 0.92);
  border: 1px solid rgba(153, 163, 169, 0.72);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(33, 53, 74, 0.08);
  backdrop-filter: blur(10px);
}

.hero__trust-card img {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  object-fit: cover;
  object-position: center 14%;
  border-radius: 50%;
}

.hero__trust-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.hero__trust-copy strong {
  color: var(--color-primary);
  font-size: 1.08rem;
  line-height: 1.1;
}

.hero__trust-copy span {
  color: var(--color-muted);
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.16;
}

.hero__trust-copy .hero__stars {
  color: #d99a1a;
  font-size: 0.9rem;
  letter-spacing: 1px;
  line-height: 1;
}

.hero__highlight {
  display: inline-flex;
  align-items: center;
  margin-top: 8px;
  padding: 7px 10px;
  color: var(--azul-escuro);
  font-size: 0.96rem;
  font-weight: 800;
  background: rgba(170, 28, 32, 0.1);
  border-left: 3px solid var(--color-accent);
  border-radius: var(--radius);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero__photo {
  position: relative;
  z-index: 0;
  justify-self: end;
  width: clamp(315px, 30vw, 430px);
  height: clamp(430px, 35vw, 500px);
  background:
    linear-gradient(0deg, rgba(247, 249, 247, 1) 0%, rgba(247, 249, 247, 0.86) 15%, rgba(247, 249, 247, 0) 48%),
    linear-gradient(90deg, rgba(247, 249, 247, 0.18) 0%, rgba(247, 249, 247, 0) 30%),
    url("assets/hero-2.png") center top / contain no-repeat;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.hero__photo::before {
  display: none;
}

.hero__facts {
  grid-column: 1 / -1;
  justify-self: center;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  max-width: 1120px;
  padding: 12px;
  background: rgba(247, 249, 247, 0.78);
  border: 1px solid rgba(153, 163, 169, 0.72);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(33, 53, 74, 0.08);
  backdrop-filter: blur(10px);
}

.hero-fact {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  min-height: 72px;
  padding: 12px;
  background: rgba(247, 249, 247, 0.9);
  border: 1px solid rgba(153, 163, 169, 0.66);
  border-radius: var(--radius);
}

.hero-fact__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  color: var(--color-white);
  background: var(--color-primary);
  border-radius: 50%;
}

.hero-fact__icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-fact__body {
  min-width: 0;
}

.hero-fact__body strong,
.hero-fact__body span {
  display: block;
}

.hero-fact__body strong {
  color: var(--color-primary);
  font-size: 0.94rem;
  line-height: 1.12;
}

.hero-fact__body span {
  margin-top: 4px;
  color: var(--color-muted);
  font-size: 0.82rem;
  line-height: 1.22;
}

.section-heading {
  display: grid;
  gap: 12px;
  max-width: 780px;
  min-width: 0;
}

.section-heading--center {
  margin: 0 auto 42px;
  text-align: center;
  justify-items: center;
}

.section-heading p {
  color: var(--color-muted);
  font-size: 1.08rem;
}

.proof {
  min-height: 550px;
  padding: 84px 0 80px;
  background:
    linear-gradient(180deg, rgba(247, 249, 247, 0.88), rgba(247, 249, 247, 0.86)),
    radial-gradient(circle at 16% 18%, rgba(33, 53, 74, 0.14), transparent 30%),
    radial-gradient(circle at 84% 72%, rgba(170, 28, 32, 0.12), transparent 28%),
    var(--color-white);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.info-card {
  min-height: 235px;
  padding: 28px;
  background: var(--color-card);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  min-width: 0;
}

.info-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  color: var(--color-white);
  font-size: 0.86rem;
  font-weight: 800;
  background: var(--color-primary);
  border-radius: 50%;
}

.info-card p,
.service-card p,
.step-card span,
.video-band__copy p,
.pain-grid p,
.about-copy p,
.contact-list,
details p {
  color: var(--color-muted);
  font-size: 1rem;
}

.info-card h3,
.service-card h3,
.step-card h3,
.pain-grid h3 {
  margin-bottom: 14px;
}

.video-band {
  padding: 84px 0;
  background: var(--color-soft);
}

.video-band__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 48px;
  align-items: center;
}

.video-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: rgba(153, 163, 169, 0.24);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.video-card--placeholder {
  aspect-ratio: 1280 / 716;
  border: 1px solid rgba(153, 163, 169, 0.62);
}

.video-card--photo {
  height: clamp(430px, 42vw, 540px);
  min-height: 430px;
}

.video-card--photo img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: center 38%;
}

.video-card--photo figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: grid;
  gap: 6px;
  padding: 18px 20px;
  color: var(--branco-gelo);
  line-height: 1.25;
  background: rgba(26, 41, 53, 0.88);
  border: 1px solid rgba(247, 249, 247, 0.18);
  border-radius: var(--radius);
}

.video-card--photo figcaption strong {
  font-size: 1.1rem;
  line-height: 1.12;
}

.video-card--photo figcaption span {
  color: rgba(247, 249, 247, 0.92);
  font-size: 1rem;
  font-weight: 700;
}

.video-card__empty {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 10px;
  padding: 28px;
  color: var(--color-ink);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(247, 249, 247, 0.76), rgba(247, 249, 247, 0.38)),
    repeating-linear-gradient(135deg, rgba(153, 163, 169, 0.22) 0 14px, rgba(153, 163, 169, 0.13) 14px 28px);
}

.video-card__empty span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 76px;
  min-height: 52px;
  padding: 0 18px;
  color: var(--color-white);
  font-weight: 800;
  background: var(--color-primary);
  border-radius: var(--radius);
}

.video-card__empty strong {
  font-size: 1.32rem;
  line-height: 1.2;
}

.video-card__empty p {
  max-width: 430px;
  color: var(--color-muted);
}

.video-band__copy {
  display: grid;
  gap: 18px;
}

.services {
  padding: 90px 0;
  color: var(--branco-gelo);
  background: var(--azul-escuro);
}

.services__top {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.6fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 48px;
}

.services__top h2,
.social-band h2,
.contact h2 {
  color: var(--branco-gelo);
}

.services__top p {
  color: var(--cinza-azulado);
  font-size: 1.08rem;
}

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

.service-card {
  min-height: 220px;
  padding: 30px;
  background: var(--color-primary-3);
  border: 1px solid rgba(153, 163, 169, 0.36);
  border-radius: var(--radius);
  min-width: 0;
}

.service-card--wide {
  min-height: 250px;
}

.service-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  min-height: 34px;
  margin-bottom: 28px;
  color: var(--color-accent);
  font-size: 0.9rem;
  font-weight: 800;
  background: var(--branco-gelo);
  border: 1px solid rgba(247, 249, 247, 0.42);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.service-card p {
  color: var(--branco-gelo);
}

.pain-section,
.process,
.faq {
  padding: 88px 0;
  background: var(--color-soft);
}

.pain-section {
  background:
    linear-gradient(180deg, rgba(247, 249, 247, 0.96), rgba(247, 249, 247, 0.96)),
    var(--color-soft);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.pain-grid article {
  min-height: 220px;
  padding: 28px;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  min-width: 0;
}

.process {
  background: var(--color-soft);
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 52px;
  max-width: 980px;
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 50%;
  width: 2px;
  background: rgba(153, 163, 169, 0.56);
  transform: translateX(-50%);
}

.step-card {
  position: relative;
  min-height: 190px;
  padding: 28px;
  background: rgba(153, 163, 169, 0.18);
  border: 1px solid rgba(153, 163, 169, 0.54);
  border-radius: var(--radius);
  min-width: 0;
}

.step-card::before {
  content: "";
  position: absolute;
  top: 28px;
  width: 24px;
  height: 24px;
  background: var(--color-primary);
  border-radius: 50%;
}

.step-card:nth-child(odd)::before {
  right: -39px;
}

.step-card:nth-child(even)::before {
  left: -39px;
}

.step-card p {
  margin-bottom: 18px;
  padding-left: 10px;
  color: var(--color-primary);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  border-left: 3px solid var(--color-accent);
}

.step-card span {
  color: var(--cinza-petroleo);
}

.process-note {
  max-width: 720px;
  margin: 32px auto 0;
  color: var(--color-muted);
  font-size: 1.08rem;
  font-weight: 700;
  text-align: center;
}

.about-section {
  padding: 90px 0;
  background: var(--color-white);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(220px, 310px) minmax(0, 1fr);
  gap: 46px;
  align-items: center;
}

.about-photo {
  position: relative;
  justify-self: start;
  overflow: hidden;
  width: 100%;
  max-width: 310px;
  background: rgba(153, 163, 169, 0.24);
  border: 6px solid var(--color-white);
  border-radius: var(--radius);
  box-shadow: 0 18px 36px rgba(33, 53, 74, 0.12);
}

.about-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(247, 249, 247, 0), rgba(33, 53, 74, 0.12));
  pointer-events: none;
}

.about-photo img {
  width: 100%;
  height: clamp(300px, 28vw, 360px);
  object-fit: cover;
  object-position: center 12%;
}

.about-copy {
  display: grid;
  gap: 18px;
}

.about-kicker {
  color: var(--color-accent);
}

.about-copy blockquote {
  display: grid;
  gap: 10px;
  margin-top: 10px;
  padding: 24px;
  color: var(--color-ink);
  font-size: 1.28rem;
  line-height: 1.28;
  background: var(--color-card);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius);
}

.about-copy cite {
  color: var(--color-muted);
  font-size: 0.95rem;
  font-style: normal;
  font-weight: 700;
}

.contact {
  padding: 90px 0;
  color: var(--branco-gelo);
  background: var(--azul-escuro);
}

.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1fr);
  gap: 48px;
  align-items: center;
}

.contact__copy {
  display: grid;
  gap: 24px;
}

.contact-list {
  display: grid;
  gap: 12px;
  color: var(--branco-gelo);
  font-size: 1.04rem;
}

.contact-list a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-list__highlight {
  padding: 14px 16px;
  color: var(--branco-gelo);
  background: rgba(170, 28, 32, 0.22);
  border: 1px solid rgba(247, 249, 247, 0.18);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius);
}

.contact-list__highlight strong {
  display: block;
  margin-bottom: 3px;
}

.map-frame {
  overflow: hidden;
  background: var(--azul-escuro);
  border-radius: var(--radius);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.18);
}

.map-frame iframe {
  width: 100%;
  min-height: 350px;
  border: 0;
}

.social-band {
  min-height: 400px;
  padding: 86px 0;
  color: var(--color-white);
  background:
    linear-gradient(90deg, rgba(26, 41, 53, 0.92), rgba(26, 41, 53, 0.38)),
    url("assets/backgroud-foto.png") center 42% / cover no-repeat;
}

.social-band__grid {
  display: grid;
  grid-template-columns: minmax(0, 780px) auto;
  gap: 40px;
  align-items: center;
}

.social-band span,
.faq h2 span {
  color: var(--color-accent-2);
}

.social-actions {
  display: grid;
  gap: 14px;
  justify-items: stretch;
  min-width: 190px;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 880px;
  margin: 0 auto;
}

.faq-cta {
  display: flex;
  justify-content: center;
  max-width: 880px;
  margin: 30px auto 0;
}

.faq-cta .button {
  min-width: min(100%, 340px);
}

details {
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
}

summary {
  min-height: 64px;
  padding: 20px 24px;
  color: var(--color-ink);
  font-weight: 700;
  cursor: pointer;
}

details p {
  padding: 0 24px 22px;
}

.site-footer {
  padding: 56px 0 24px;
  color: var(--branco-gelo);
  background: var(--azul-escuro);
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  text-align: center;
}

.footer__grid ul {
  display: grid;
  gap: 4px;
  justify-items: center;
  color: var(--cinza-azulado);
}

.legal,
.copyright {
  width: calc(100% - 40px);
  max-width: var(--container);
  color: var(--cinza-azulado);
  font-size: 0.92rem;
  text-align: center;
}

.legal {
  margin: 32px auto 0;
}

.copyright {
  margin: 12px auto 0;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  padding: 0;
  color: var(--color-white);
  background: var(--color-whatsapp);
  border-radius: 50%;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  animation: whatsapp-pulse 2.8s ease-in-out infinite;
}

.floating-whatsapp img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translate3d(0, 26px, 0);
  transition:
    opacity 650ms ease,
    transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-on-scroll.reveal-is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@keyframes whatsapp-pulse {
  0%,
  100% {
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22), 0 0 0 0 rgba(23, 166, 83, 0);
    transform: scale(1);
  }

  48% {
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24), 0 0 0 10px rgba(23, 166, 83, 0.12);
    transform: scale(1.035);
  }
}

@media (max-width: 1024px) {
  .site-header {
    position: relative;
    padding: 10px 0;
    background: var(--azul-escuro);
  }

  .hero {
    min-height: auto;
    padding: 54px 0 78px;
    background:
      radial-gradient(circle at 50% 28%, rgba(170, 28, 32, 0.05) 0%, rgba(170, 28, 32, 0) 34%),
      linear-gradient(180deg, var(--branco-gelo) 0%, rgba(247, 249, 247, 0.94) 100%);
  }

  .hero__grid {
    grid-template-columns: 1fr;
    min-height: auto;
    align-items: start;
    gap: 28px;
  }

  .hero__photo {
    justify-self: center;
    width: min(430px, 100%);
    height: 460px;
    background:
      linear-gradient(0deg, rgba(247, 249, 247, 1) 0%, rgba(247, 249, 247, 0.86) 15%, rgba(247, 249, 247, 0) 48%),
      url("assets/hero-2.png") center top / contain no-repeat;
    box-shadow: none;
  }

  .hero__photo::before {
    display: none;
  }

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

  .proof-grid,
  .pain-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services__top,
  .video-band__grid,
  .about-grid,
  .contact__grid,
  .social-band__grid,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    gap: 34px;
  }

  .about-photo {
    justify-self: center;
    max-width: 300px;
  }

  .social-actions {
    justify-items: start;
  }
}

@media (max-width: 760px) {
  .container {
    width: calc(100% - 28px);
  }

  .header-bar {
    min-height: 56px;
  }

  .brand {
    gap: 10px;
  }

  .brand__mark,
  .brand__mark img {
    width: 36px;
    height: 36px;
  }

  .brand__name {
    font-size: 0.98rem;
  }

  .nav {
    display: none;
  }

  .header-bar .button {
    display: none;
  }

  h1 {
    font-size: 2.22rem;
  }

  .hero h1 {
    font-size: 1.82rem;
    line-height: 1.13;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.18rem;
  }

  .hero {
    padding: 34px 0 56px;
    background:
      radial-gradient(circle at 50% 24%, rgba(170, 28, 32, 0.05) 0%, rgba(170, 28, 32, 0) 34%),
      linear-gradient(180deg, var(--branco-gelo) 0%, rgba(247, 249, 247, 0.94) 100%);
  }

  .hero__grid {
    min-height: auto;
    gap: 28px;
  }

  .hero__copy {
    justify-items: center;
    text-align: center;
  }

  .hero__copy > .eyebrow,
  .hero h1,
  .hero__lead,
  .hero__note {
    width: 100%;
    max-width: 360px;
  }

  .hero__trust-card {
    width: 100%;
    max-width: 360px;
    padding: 8px 14px 8px 8px;
    gap: 10px;
    text-align: left;
  }

  .hero__trust-card img {
    flex-basis: 58px;
    width: 58px;
    height: 58px;
  }

  .hero__trust-copy strong {
    font-size: 0.96rem;
  }

  .hero__trust-copy span {
    font-size: 0.82rem;
  }

  .hero__trust-copy .hero__stars {
    font-size: 0.78rem;
  }

  .hero__facts {
    order: 3;
    width: 100%;
    gap: 10px;
    padding: 10px;
  }

  .hero-fact {
    align-items: center;
    gap: 8px;
    min-height: 66px;
    padding: 10px;
    text-align: left;
  }

  .hero-fact__icon {
    flex-basis: 34px;
    width: 34px;
    height: 34px;
  }

  .hero-fact__icon svg {
    width: 17px;
    height: 17px;
  }

  .hero-fact__body strong {
    font-size: 0.9rem;
  }

  .hero-fact__body span {
    font-size: 0.78rem;
  }

  .hero__lead,
  .hero__note {
    font-size: 1rem;
  }

  .hero__photo {
    display: none;
  }

  .hero__photo::before {
    display: none;
  }

  .button {
    width: 100%;
    min-height: 54px;
    padding: 15px 18px;
  }

  .proof,
  .video-band,
  .services,
  .pain-section,
  .process,
  .about-section,
  .contact,
  .faq,
  .social-band {
    padding: 64px 0;
  }

  .proof-grid,
  .pain-grid,
  .service-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .info-card,
  .service-card,
  .pain-grid article,
  .step-card {
    min-height: initial;
    padding: 24px;
  }

  .timeline {
    gap: 18px;
  }

  .timeline::before,
  .step-card::before {
    display: none;
  }

  .about-photo {
    max-width: 250px;
  }

  .about-photo img {
    height: 300px;
    object-position: center 12%;
  }

  .social-band {
    background:
      linear-gradient(180deg, rgba(26, 41, 53, 0.94), rgba(26, 41, 53, 0.74)),
      url("assets/backgroud-foto.png") center 34% / cover no-repeat;
  }

  .map-frame iframe {
    min-height: 300px;
  }

  .site-footer {
    padding-bottom: 92px;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 52px;
    height: 52px;
    padding: 0;
  }

  .floating-whatsapp img {
    width: 30px;
    height: 30px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
