:root {
  --navy: #042338;
  --navy-deep: #021a2a;
  --blue: #075676;
  --cyan: #4cc2e6;
  --cyan-soft: #dff6fb;
  --ink: #102631;
  --muted: #60727a;
  --line: #d8e2e6;
  --paper: #f5f8f9;
  --white: #ffffff;
  --whatsapp: #22b767;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.shell { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1240px, calc(100% - 48px));
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.22);
}

.brand img { display: block; width: 194px; height: auto; }
.site-header nav { display: flex; align-items: center; gap: 32px; }
.site-header nav > a {
  color: rgba(255,255,255,.82);
  text-decoration: none;
  font-size: 13px;
  transition: color .2s ease;
}
.site-header nav > a:hover { color: #fff; }

.header-cta {
  min-height: 46px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 999px;
  background: rgba(2,26,42,.25);
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 0 21px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: .2s ease;
}
.header-cta:hover { background: #fff; color: var(--navy); }
.header-cta svg, .button svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.7; }

.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 790px;
  isolation: isolate;
  background: var(--navy-deep);
  color: #fff;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  z-index: -3;
  inset: 0;
  background-image: url('hero-franquia.webp');
  background-position: center 52%;
  background-size: cover;
  transform: scale(1.015);
}

.hero-overlay {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(1,18,30,.96) 0%, rgba(2,30,47,.89) 41%, rgba(2,24,38,.46) 69%, rgba(2,20,32,.36) 100%),
    linear-gradient(0deg, rgba(2,18,29,.76), transparent 45%);
}

.hero::before {
  content: '';
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg,#000,transparent 68%);
}

.hero-content {
  padding-top: 116px;
  padding-bottom: 70px;
  display: grid;
  grid-template-columns: minmax(0,1fr) 400px;
  align-items: center;
  gap: 82px;
}

.hero-copy { max-width: 650px; }
.eyebrow {
  margin: 0 0 20px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .19em;
  line-height: 1.5;
  text-transform: uppercase;
}
.eyebrow.light { color: #86ddf2; }

h1, h2, h3, p { margin-top: 0; }
.hero h1 {
  margin-bottom: 24px;
  max-width: 650px;
  font-size: clamp(50px, 5.25vw, 76px);
  font-weight: 600;
  letter-spacing: -.052em;
  line-height: .99;
}
.hero h1 span { color: var(--cyan); }
.hero-subtitle {
  max-width: 610px;
  margin-bottom: 29px;
  color: rgba(255,255,255,.79);
  font-size: 18px;
  line-height: 1.65;
}
.hero-points { display: flex; flex-wrap: wrap; gap: 11px 21px; }
.hero-points span { color: rgba(255,255,255,.91); font-size: 13px; }
.hero-mobile-cta { display: none !important; }

.lead-card {
  position: relative;
  overflow: hidden;
  padding: 32px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 22px;
  background: rgba(255,255,255,.97);
  box-shadow: 0 30px 80px rgba(0,0,0,.32);
  color: var(--ink);
}
.lead-card-topline { position: absolute; inset: 0 0 auto; height: 4px; background: linear-gradient(90deg,var(--cyan),#8fe5f5); }
.form-kicker { margin-bottom: 9px; color: var(--blue); font-size: 11px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.lead-card h2 { margin-bottom: 8px; font-size: 27px; letter-spacing: -.035em; }
.form-intro { margin-bottom: 22px; color: var(--muted); font-size: 13px; line-height: 1.55; }
.lead-card label { display: block; margin-top: 13px; color: #334a54; font-size: 11px; font-weight: 700; }
.lead-card input, .lead-card select {
  width: 100%;
  height: 46px;
  margin-top: 7px;
  border: 1px solid #cfdcdf;
  border-radius: 9px;
  outline: none;
  background: #fff;
  color: #1b333e;
  padding: 0 13px;
  font-size: 13px;
  transition: .2s ease;
}
.lead-card input:focus, .lead-card select:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(76,194,230,.15); }
.lead-card input::placeholder { color: #96a6ad; }
.lead-card small { display: block; margin-top: 11px; color: #87969d; font-size: 10px; text-align: center; }

.button {
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  min-height: 52px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-whatsapp { width: 100%; margin-top: 19px; background: var(--whatsapp); color: #fff; box-shadow: 0 11px 24px rgba(34,183,103,.24); }
.button-whatsapp svg, .floating-whatsapp svg { fill: currentColor; stroke: none; }
.button-primary { background: var(--cyan); color: var(--navy-deep); }

.trust-bar { background: var(--navy); color: #fff; }
.trust-grid { min-height: 142px; display: grid; grid-template-columns: repeat(4,1fr); align-items: center; }
.trust-grid > div { min-height: 64px; display: flex; align-items: center; gap: 15px; padding: 0 28px; border-right: 1px solid rgba(255,255,255,.15); }
.trust-grid > div:first-child { padding-left: 0; }
.trust-grid > div:last-child { border-right: 0; padding-right: 0; }
.trust-grid strong { color: var(--cyan); font-size: 31px; letter-spacing: -.04em; }
.trust-grid span { color: rgba(255,255,255,.7); font-size: 12px; line-height: 1.55; }

.brand-strip { padding: 37px 24px 40px; border-bottom: 1px solid var(--line); text-align: center; overflow: hidden; }
.brand-strip p { margin-bottom: 25px; color: #809097; font-size: 10px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.brand-list { display: flex; justify-content: center; align-items: center; gap: clamp(25px,4vw,59px); color: #5e737c; opacity: .67; white-space: nowrap; }
.brand-list span { font-size: 13px; font-weight: 800; letter-spacing: .04em; }

.opening-risk { padding: 112px 0 122px; background: var(--paper); }
.risk-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; }
.section-heading h2 { margin: 0; max-width: 470px; font-size: clamp(36px,4vw,56px); line-height: 1.08; letter-spacing: -.045em; }
.risk-content .lead { max-width: 650px; margin-bottom: 34px; color: var(--muted); font-size: 18px; line-height: 1.7; }
.risk-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.risk-cards article { min-height: 196px; padding: 25px 22px; border: 1px solid var(--line); border-radius: 15px; background: #fff; }
.risk-cards article > span { display: block; margin-bottom: 29px; color: var(--cyan); font-size: 12px; font-weight: 800; }
.risk-cards h3 { margin-bottom: 10px; font-size: 17px; }
.risk-cards p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.6; }

.coordination { padding: 130px 0; background: var(--navy-deep); color: #fff; overflow: hidden; }
.coordination-grid { display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: 110px; }
.coordination-visual {
  position: relative;
  min-height: 560px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(76,194,230,.14), transparent 57%);
}
.coordination-visual::before, .coordination-visual::after {
  content: '';
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
}
.coordination-visual::after { inset: 30%; border-color: rgba(76,194,230,.28); }
.visual-center {
  position: absolute;
  z-index: 2;
  inset: 37%;
  border-radius: 50%;
  background: linear-gradient(145deg,#0a526f,#02344e);
  box-shadow: 0 20px 70px rgba(0,0,0,.35), 0 0 0 8px rgba(76,194,230,.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.visual-center img { width: 106px; height: auto; }
.visual-center small { color: #8bddef; font-size: 8px; font-weight: 800; letter-spacing: .17em; }
.visual-orbit { position: absolute; z-index: 3; padding: 11px 14px; border: 1px solid rgba(255,255,255,.15); border-radius: 999px; background: rgba(5,44,65,.87); backdrop-filter: blur(8px); box-shadow: 0 12px 25px rgba(0,0,0,.2); }
.visual-orbit span { color: rgba(255,255,255,.76); font-size: 8px; font-weight: 800; letter-spacing: .13em; }
.orbit-one { left: 3%; top: 20%; }
.orbit-two { right: 2%; top: 31%; }
.orbit-three { right: 9%; bottom: 18%; }
.visual-status { position: absolute; left: 11%; bottom: 13%; padding: 12px 16px; border-radius: 10px; background: #fff; color: var(--ink); font-size: 10px; font-weight: 700; box-shadow: 0 14px 40px rgba(0,0,0,.25); }
.visual-status i { width: 7px; height: 7px; display: inline-block; margin-right: 7px; border-radius: 50%; background: var(--whatsapp); box-shadow: 0 0 0 4px rgba(34,183,103,.12); }
.coordination-copy h2 { margin-bottom: 25px; max-width: 570px; font-size: clamp(40px,4.7vw,64px); line-height: 1.05; letter-spacing: -.05em; }
.coordination-copy > p:not(.eyebrow) { max-width: 610px; margin-bottom: 35px; color: rgba(255,255,255,.67); font-size: 17px; line-height: 1.75; }
.coordination-list { border-top: 1px solid rgba(255,255,255,.15); }
.coordination-list > div { display: grid; grid-template-columns: 42px 1fr; gap: 8px; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.15); }
.coordination-list span { color: var(--cyan); font-size: 11px; }
.coordination-list strong { font-size: 13px; font-weight: 500; line-height: 1.5; }
.text-button { margin-top: 28px; padding: 0 0 6px; border: 0; border-bottom: 1px solid var(--cyan); background: transparent; color: #fff; cursor: pointer; display: inline-flex; align-items: center; gap: 13px; font-weight: 700; }
.text-button svg, .rating-block a svg, .audiences button svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.7; }

.method { padding: 122px 0; background: #fff; }
.method-heading, .scope-intro, .projects-heading { display: grid; grid-template-columns: 1.15fr .85fr; align-items: end; gap: 85px; margin-bottom: 64px; }
.method-heading h2, .scope-intro h2, .projects-heading h2 { margin: 0; max-width: 650px; font-size: clamp(40px,4.8vw,64px); line-height: 1.05; letter-spacing: -.05em; }
.method-heading > p, .scope-intro > p, .projects-heading > p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.7; }
.method-steps { display: grid; grid-template-columns: repeat(5,1fr); border-top: 1px solid var(--line); }
.method-steps article { position: relative; min-height: 330px; padding: 34px 25px 25px 0; border-right: 1px solid var(--line); }
.method-steps article:not(:first-child) { padding-left: 25px; }
.method-steps article:last-child { border-right: 0; padding-right: 0; }
.method-steps article::before { content: ''; position: absolute; width: 9px; height: 9px; top: -5px; left: 0; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 5px #e6f8fc; }
.method-steps article:not(:first-child)::before { left: 25px; }
.method-steps span { display: block; margin-bottom: 32px; color: #b3c1c7; font-size: 11px; font-weight: 800; }
.method-steps small { display: block; margin-bottom: 11px; color: var(--blue); font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.method-steps h3 { min-height: 50px; margin-bottom: 14px; font-size: 18px; line-height: 1.35; }
.method-steps p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.65; }

.scope-section { padding: 117px 0 124px; background: var(--paper); }
.scope-grid { display: grid; grid-template-columns: repeat(2,1fr); border: 1px solid var(--line); border-radius: 20px; overflow: hidden; }
.scope-grid article { min-height: 320px; padding: 36px 40px; background: rgba(255,255,255,.78); }
.scope-grid article:nth-child(odd) { border-right: 1px solid var(--line); }
.scope-grid article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
.scope-number { margin-bottom: 35px; color: var(--cyan); font-size: 12px; font-weight: 800; }
.scope-grid h3 { margin-bottom: 22px; font-size: 23px; letter-spacing: -.025em; }
.scope-grid ul { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px 25px; margin: 0; padding: 0; list-style: none; }
.scope-grid li { position: relative; padding-left: 15px; color: var(--muted); font-size: 12px; line-height: 1.5; }
.scope-grid li::before { content: ''; position: absolute; left: 0; top: .55em; width: 5px; height: 5px; border-radius: 50%; background: var(--cyan); }

.projects { padding: 124px 0 132px; background: var(--navy); color: #fff; }
.projects-heading > p { color: rgba(255,255,255,.62); }
.project-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 16px; }
.project-card { position: relative; min-height: 510px; overflow: hidden; border-radius: 15px; background: #091e2a; }
.project-card img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; transition: transform .7s ease; }
.project-card:first-child img { object-position: 52% center; }
.project-card:nth-child(2) img { object-position: center 32%; }
.project-card:nth-child(3) img { object-position: center 42%; }
.project-card:hover img { transform: scale(1.035); }
.project-shade { position: absolute; inset: 0; background: linear-gradient(0deg,rgba(1,16,26,.92),transparent 57%); }
.project-info { position: absolute; right: 28px; bottom: 27px; left: 28px; }
.project-info span { display: block; margin-bottom: 12px; color: #91dff0; font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.project-info h3 { margin-bottom: 5px; color: #fff; font-size: 27px; letter-spacing: -.03em; text-shadow: 0 2px 14px rgba(0,0,0,.55); }
.project-info p { margin: 0; color: rgba(255,255,255,.64); font-size: 12px; }

.proof-section { padding: 122px 0; background: #fff; }
.proof-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 100px; align-items: center; }
.rating-block { padding: 50px; border-radius: 20px; background: var(--cyan-soft); }
.stars { margin-bottom: 19px; color: #edab32; font-size: 22px; letter-spacing: .12em; }
.rating-block > strong { display: block; margin-bottom: 6px; font-size: 42px; letter-spacing: -.05em; }
.rating-block > p:not(.eyebrow) { margin-bottom: 28px; color: var(--muted); font-size: 13px; }
.rating-block a { color: var(--blue); text-decoration: none; display: inline-flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 700; }
.proof-copy h2 { max-width: 620px; margin-bottom: 24px; font-size: clamp(40px,4.4vw,60px); line-height: 1.06; letter-spacing: -.05em; }
.proof-copy > p { max-width: 650px; margin-bottom: 35px; color: var(--muted); font-size: 17px; line-height: 1.75; }
.proof-points { border-top: 1px solid var(--line); }
.proof-points > div { display: grid; grid-template-columns: 43px 1fr; gap: 12px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.proof-points span { color: var(--cyan); font-size: 11px; }
.proof-points strong { font-size: 13px; font-weight: 600; }

.audiences { background: var(--navy-deep); }
.audiences-grid { display: grid; grid-template-columns: repeat(2,1fr); }
.audiences article { min-height: 410px; padding: 72px 70px; }
.audiences article:first-child { border-right: 1px solid rgba(255,255,255,.14); }
.audiences small { display: block; margin-bottom: 27px; color: #7bd6ed; font-size: 10px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.audiences h2 { margin-bottom: 17px; color: #fff; font-size: 42px; letter-spacing: -.04em; }
.audiences p { max-width: 470px; min-height: 73px; margin-bottom: 27px; color: rgba(255,255,255,.64); font-size: 14px; line-height: 1.65; }
.audiences button { padding: 0 0 6px; border: 0; border-bottom: 1px solid var(--cyan); background: transparent; color: #fff; cursor: pointer; display: flex; align-items: center; gap: 11px; font-weight: 700; }

.faq-section { padding: 122px 0 127px; background: var(--paper); }
.faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 100px; }
.faq-grid > div:first-child { position: sticky; top: 40px; align-self: start; }
.faq-grid h2 { margin-bottom: 21px; font-size: 52px; line-height: 1.05; letter-spacing: -.05em; }
.faq-grid > div:first-child > p:last-child { color: var(--muted); font-size: 15px; line-height: 1.7; }
.faq-list { border-top: 1px solid #cbd7dc; }
.faq-list details { border-bottom: 1px solid #cbd7dc; }
.faq-list summary { min-height: 85px; cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 20px; font-size: 16px; font-weight: 700; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--cyan); font-size: 22px; font-weight: 400; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 650px; margin: -6px 0 28px; color: var(--muted); font-size: 13px; line-height: 1.7; }

.final-cta { position: relative; isolation: isolate; min-height: 570px; overflow: hidden; color: #fff; display: flex; align-items: center; }
.final-cta-image { position: absolute; z-index: -2; inset: 0; background: url('fast-escova-fachada.jpeg') center 46%/cover; }
.final-cta-overlay { position: absolute; z-index: -1; inset: 0; background: linear-gradient(90deg,rgba(1,18,29,.96),rgba(2,30,47,.77) 59%,rgba(2,30,47,.4)); }
.final-cta-content { padding-block: 85px; }
.final-cta h2 { max-width: 700px; margin-bottom: 21px; font-size: clamp(44px,5.4vw,72px); line-height: 1.02; letter-spacing: -.05em; }
.final-cta p:not(.eyebrow) { max-width: 630px; margin-bottom: 32px; color: rgba(255,255,255,.72); font-size: 17px; line-height: 1.7; }
.final-cta .button svg { fill: currentColor; stroke: none; }

footer { padding: 70px 0 25px; background: #011521; color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .9fr .8fr; gap: 80px; padding-bottom: 55px; }
.footer-brand img { width: 210px; height: auto; margin-bottom: 22px; }
.footer-brand p, .footer-grid > div:last-child p { max-width: 370px; margin: 0; color: rgba(255,255,255,.51); font-size: 12px; line-height: 1.7; }
.footer-grid small { display: block; margin-bottom: 20px; color: var(--cyan); font-size: 9px; font-weight: 800; letter-spacing: .15em; }
.footer-grid a { display: block; width: fit-content; margin-bottom: 10px; color: rgba(255,255,255,.69); text-decoration: none; font-size: 12px; }
.footer-bottom { padding-top: 22px; border-top: 1px solid rgba(255,255,255,.11); display: flex; justify-content: space-between; color: rgba(255,255,255,.35); font-size: 10px; }
.footer-bottom a { color: inherit; text-decoration: none; }

.floating-whatsapp {
  position: fixed;
  z-index: 30;
  right: 24px;
  bottom: 22px;
  height: 56px;
  padding: 0 20px 0 16px;
  border-radius: 999px;
  background: var(--whatsapp);
  box-shadow: 0 14px 35px rgba(10,60,38,.34);
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 700;
}
.floating-whatsapp svg { width: 24px; height: 24px; }

.reveal { animation: rise .7s ease both; }
.delay-1 { animation-delay: .14s; }
@keyframes rise { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* Seções alinhadas ao site institucional */
.section-icon { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.55; stroke-linecap: round; stroke-linejoin: round; }
.whatsapp-icon {
  width: 21px !important;
  height: 21px !important;
  flex: 0 0 auto;
  fill: currentColor !important;
  stroke: none !important;
}
.floating-whatsapp .whatsapp-icon { width: 25px !important; height: 25px !important; }

.trusted-brands { padding: 92px 0 68px; overflow: hidden; background: #fff; }
.trusted-heading { max-width: 900px; margin: 0 auto 52px; text-align: center; }
.trusted-heading .eyebrow { margin-inline: auto; }
.trusted-heading h2 { margin: 0; font-size: clamp(34px, 4vw, 51px); line-height: 1.08; letter-spacing: -.045em; }
.logos-viewport { width: 100%; overflow: hidden; mask-image: linear-gradient(90deg,transparent,#000 7%,#000 93%,transparent); }
.logos-track { width: max-content; display: flex; will-change: transform; transform: translateZ(0); animation: logos-scroll 31s linear infinite; }
.logos-track:hover, .logos-track:focus-within { animation-play-state: paused; }
.logos-set { display: flex; align-items: center; gap: 76px; padding-right: 76px; }
.client-logo { width: 145px; height: 84px; display: grid; place-items: center; flex: 0 0 auto; }
.client-logo img { max-width: 100%; max-height: 70px; object-fit: contain; filter: grayscale(1); opacity: .54; transition: filter .25s ease, opacity .25s ease, transform .25s ease; }
.client-logo:hover img { filter: grayscale(0); opacity: 1; transform: scale(1.03); }
.client-logo.round img { max-width: 70px; }
.client-logo.compact img { max-width: 94px; }
.client-logo.wide img { max-width: 138px; max-height: 56px; }
@keyframes logos-scroll { to { transform: translate3d(-50%,0,0); } }

.opening-risk { padding: 116px 0 124px; background: #062637; color: #fff; }
.risk-heading { display: block; margin-bottom: 62px; }
.risk-heading h2 { margin: 0; max-width: 900px; color: #fff; font-size: clamp(41px, 5vw, 66px); font-weight: 600; line-height: 1.04; letter-spacing: -.052em; }
.risk-support p { margin: 0 0 24px; color: rgba(255,255,255,.62); font-size: 16px; line-height: 1.75; }
.risk-support a { width: fit-content; padding-bottom: 6px; border-bottom: 1px solid rgba(111,213,238,.7); color: #b6ebf6; text-decoration: none; font-size: 12px; font-weight: 700; }
.risk-support a span { margin-left: 6px; }
.risk-home-grid { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid rgba(154,211,226,.18); overflow: hidden; }
.risk-home-grid article { min-height: 390px; display: flex; flex-direction: column; padding: 24px 25px 22px; background: rgba(255,255,255,.018); border-right: 1px solid rgba(154,211,226,.14); transition: background .25s ease, transform .25s ease; }
.risk-home-grid article:nth-child(2) { background: rgba(255,255,255,.045); border-top: 1px solid rgba(116,215,239,.65); }
.risk-home-grid article:hover { background: rgba(255,255,255,.055); }
.risk-home-grid article:last-child { border-right: 0; }
.risk-top { margin-bottom: 20px; }
.risk-top > span { display: block; margin-bottom: 34px; color: rgba(144,211,228,.4); font-size: 9px; font-weight: 800; letter-spacing: .18em; }
.risk-top > div { display: flex; align-items: center; gap: 12px; }
.risk-top .section-icon { width: 20px; height: 20px; color: #9bdbea; }
.risk-top small { color: #9bdbea; font-size: 9px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.risk-home-grid h3 { min-height: 56px; margin-bottom: 14px; color: #fff; font-size: 21px; font-weight: 500; line-height: 1.25; letter-spacing: -.025em; }
.risk-home-grid > article > p { margin-bottom: 25px; color: rgba(255,255,255,.62); font-size: 12px; line-height: 1.7; }
.risk-impact { margin-top: auto; padding-top: 17px; border-top: 1px solid rgba(154,211,226,.12); }
.risk-impact small { display: block; margin-bottom: 7px; color: rgba(155,211,225,.38); font-size: 8px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.risk-impact strong { color: #a9e7f4; font-size: 11px; line-height: 1.4; }

.scope-section.scope-primary { padding: 118px 0 105px; background: #f2f5f6; color: var(--ink); border-top: 1px solid #e2eaed; }
.scope-primary .scope-intro { grid-template-columns: 1.32fr .68fr; align-items: center; margin-bottom: 72px; }
.scope-primary .eyebrow.light { color: var(--blue); }
.scope-primary .scope-intro h2 { max-width: 760px; color: var(--ink); font-weight: 600; }
.scope-primary .scope-intro h2 span { color: #087395; }
.scope-primary .scope-intro > p { color: var(--muted); font-size: 17px; }
.scope-map { position: relative; }
.scope-central { position: relative; z-index: 2; min-height: 122px; display: grid; grid-template-columns: 72px 1.15fr .95fr; align-items: center; gap: 24px; padding: 24px 29px; border: 1px solid var(--line); border-radius: 18px; background: linear-gradient(90deg,#fff,#f8fbfc); box-shadow: 0 14px 42px rgba(25,59,73,.07); }
.scope-central::after { content: ''; position: absolute; left: 50%; bottom: -31px; width: 1px; height: 31px; background: #b9d6df; }
.scope-icon-box { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 12px; background: #d8f0f5; color: var(--blue); }
.scope-central small, .scope-branch-label small { display: block; margin-bottom: 9px; color: var(--blue); font-size: 9px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.scope-central h3 { margin: 0; color: var(--ink); font-size: 28px; font-weight: 500; letter-spacing: -.035em; }
.scope-central > p { margin: 0; padding-left: 27px; border-left: 1px solid var(--line); color: var(--muted); font-size: 13px; line-height: 1.7; }
.scope-branches { display: grid; grid-template-columns: repeat(3,1fr); margin-top: 30px; border: 1px solid var(--line); border-radius: 18px; overflow: hidden; background: rgba(255,255,255,.7); }
.scope-branches article { min-height: 525px; padding: 34px 34px 25px; border-right: 1px solid var(--line); }
.scope-branches article:last-child { border-right: 0; }
.scope-branch-label { min-height: 55px; display: flex; align-items: center; gap: 15px; }
.scope-branch-label span { width: 43px; height: 43px; display: grid; place-items: center; border: 1px solid #b8dce5; border-radius: 50%; color: #087395; }
.scope-branch-label .section-icon { width: 20px; height: 20px; }
.scope-branch-label small { margin: 0; }
.scope-branches h3 { min-height: 75px; margin: 28px 0 13px; color: var(--ink); font-size: 29px; font-weight: 500; line-height: 1.06; letter-spacing: -.04em; }
.scope-branches p { min-height: 66px; margin-bottom: 27px; color: var(--muted); font-size: 12px; line-height: 1.65; }
.scope-branches ul { margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.scope-branches li { position: relative; padding: 14px 0 14px 16px; border-bottom: 1px solid #e0e8eb; color: #506771; font-size: 12px; line-height: 1.35; }
.scope-branches li::before { content: ''; position: absolute; left: 0; top: 1.45em; width: 4px; height: 4px; border-radius: 50%; background: #087395; }
.scope-conversion { display: flex; align-items: center; justify-content: space-between; gap: 35px; margin-top: 32px; padding: 24px 28px 0; }
.scope-conversion p { margin: 0; color: var(--muted); font-size: 13px; }
.scope-conversion p strong { color: var(--ink); }
.scope-conversion .button svg { fill: currentColor; stroke: none; }

.flow-section { padding: 113px 0 126px; background: #062838; color: #fff; }
.flow-heading { max-width: 950px; margin: 0 auto 72px; }
.flow-heading h2 { margin: 0 0 25px; max-width: 780px; color: #fff; font-size: clamp(43px,5.2vw,67px); font-weight: 600; line-height: 1.04; letter-spacing: -.05em; }
.flow-heading > p { max-width: 790px; margin: 0; color: rgba(255,255,255,.58); font-size: 16px; line-height: 1.72; }
.flow-rail { position: relative; display: grid; grid-template-columns: repeat(6,1fr); margin-bottom: 21px; }
.flow-rail::before { content: ''; position: absolute; z-index: 0; top: 32px; right: 4%; left: 4%; height: 1px; background: linear-gradient(90deg,rgba(155,219,235,.5),#42bddc,rgba(155,219,235,.5)); }
.flow-rail span { position: relative; z-index: 1; width: 66px; height: 66px; display: grid; place-items: center; justify-self: center; border: 1px solid rgba(171,226,239,.35); border-radius: 50%; background: #acdce7; box-shadow: 0 0 0 7px #062838; color: #062838; }
.flow-rail .section-icon { width: 25px; height: 25px; }
.flow-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 12px; }
.flow-grid article { min-height: 304px; padding: 25px 19px 22px; border: 1px solid rgba(164,217,230,.17); border-radius: 14px; background: rgba(255,255,255,.018); text-align: center; }
.flow-meta { display: block; margin-bottom: 24px; }
.flow-meta span { display: block; margin-bottom: 25px; color: rgba(157,210,224,.38); font-size: 8px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.flow-meta small { color: #a7dce8; font-size: 8px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.flow-grid h3 { min-height: 49px; margin-bottom: 14px; color: #fff; font-size: 17px; font-weight: 500; line-height: 1.25; letter-spacing: -.02em; }
.flow-grid p { margin: 0; color: rgba(255,255,255,.66); font-size: 13px; line-height: 1.7; }
.flow-mobile-icon { display: none; }

.projects { background: #edf2f4; color: var(--ink); }
.projects-heading { display: block; max-width: 790px; margin-bottom: 56px; }
.projects-heading .eyebrow.light { color: var(--blue); }
.projects-heading h2 { color: var(--ink); }
.project-grid { grid-template-columns: repeat(3,1fr); }
.project-card { min-height: 475px; }
.project-card:first-child img { object-position: center; }
.project-card:nth-child(2) img { object-position: center 52%; }
.project-card:nth-child(3) img { object-position: center 31%; }
.project-lupo .project-info h3 { font-size: 34px; }

.reviews-section { padding: 118px 0 120px; background: #fff; overflow: hidden; }
.reviews-heading { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 60px; margin-bottom: 55px; }
.reviews-heading h2 { max-width: 700px; margin: 0; font-size: clamp(40px,4.8vw,63px); line-height: 1.05; letter-spacing: -.05em; }
.google-rating { min-width: 285px; display: flex; align-items: center; gap: 15px; padding: 17px 20px; border: 1px solid var(--line); border-radius: 14px; color: var(--ink); text-decoration: none; background: #fff; }
.google-logo { width: 30px; height: 30px; display: block; flex: 0 0 auto; }
.google-logo path { stroke: none; }
.google-rating > .google-logo { width: 32px; height: 32px; }
.google-rating > span:nth-child(2) { flex: 1; }
.google-rating strong { display: block; margin-bottom: 4px; color: #edaa30; font-size: 12px; letter-spacing: .08em; }
.google-rating small { display: block; color: var(--muted); font-size: 9px; line-height: 1.45; }
.google-rating .arrow-icon { width: 18px; height: 18px; fill: none; stroke: var(--blue); stroke-width: 1.7; }
.reviews-slider-wrap { position: relative; }
.reviews-track { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding-bottom: 6px; }
.reviews-track::-webkit-scrollbar { display: none; }
.review-card { min-width: calc((100% - 32px)/3); min-height: 330px; padding: 31px 30px; border: 1px solid var(--line); border-radius: 16px; background: #f8fafb; display: flex; flex-direction: column; scroll-snap-align: start; }
.review-top { display: flex; align-items: center; gap: 14px; margin-bottom: 32px; }
.review-top .google-logo-badge { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: #fff; box-shadow: 0 4px 14px rgba(32,58,70,.09); }
.review-top .google-logo { width: 23px; height: 23px; }
.review-top strong { color: #edaa30; font-size: 12px; letter-spacing: .1em; }
.review-card blockquote { margin: 0 0 35px; color: #263d47; font-size: 17px; line-height: 1.65; letter-spacing: -.01em; }
.review-card > div:last-child { margin-top: auto; }
.review-card > div:last-child > strong { display: block; margin-bottom: 6px; font-size: 12px; }
.review-card > div:last-child small { color: #85949a; font-size: 9px; }
.review-controls { display: flex; justify-content: flex-end; gap: 8px; margin-top: 20px; }
.review-controls button { width: 45px; height: 45px; border: 1px solid var(--line); border-radius: 50%; background: #fff; color: var(--blue); cursor: pointer; font-size: 19px; }
.reviews-footnote { margin: -30px 120px 0 0; color: #8b999f; font-size: 9px; line-height: 1.5; }

.audiences { padding: 115px 0 0; }
.audiences-heading { margin-bottom: 58px; }
.audiences-heading h2 { max-width: 820px; margin-bottom: 20px; color: #fff; font-size: clamp(40px,4.7vw,62px); line-height: 1.05; letter-spacing: -.05em; }
.audiences-heading > p:last-child { max-width: 700px; margin: 0; color: rgba(255,255,255,.62); font-size: 15px; line-height: 1.7; }
.audiences-grid { border-top: 1px solid rgba(255,255,255,.14); }
.audiences article { min-height: 525px; padding: 66px 70px; }
.audiences article h3 { margin-bottom: 25px; color: #fff; font-size: 36px; letter-spacing: -.04em; }
.audiences article ul { min-height: 182px; margin: 0 0 34px; padding: 0; list-style: none; }
.audiences article li { position: relative; margin-bottom: 13px; padding-left: 18px; color: rgba(255,255,255,.69); font-size: 13px; line-height: 1.45; }
.audiences article li::before { content: ''; position: absolute; left: 0; top: .55em; width: 5px; height: 5px; border-radius: 50%; background: var(--cyan); }

.final-cta-image { background-image: url('fast-escova-fachada.jpeg'); background-position: center 18%; }
.final-cta-overlay { background: linear-gradient(90deg,rgba(1,18,29,.97),rgba(2,30,47,.78) 56%,rgba(2,30,47,.28)); }

@media (max-width: 1020px) {
  .site-header nav { gap: 18px; }
  .site-header nav > a { display: none; }
  .hero-content { grid-template-columns: 1fr 365px; gap: 45px; }
  .risk-grid { gap: 55px; }
  .coordination-grid { gap: 55px; }
  .coordination-visual { min-height: 470px; }
  .method-steps { grid-template-columns: repeat(3,1fr); }
  .method-steps article { border-bottom: 1px solid var(--line); }
  .method-steps article:nth-child(3) { border-right: 0; }
  .method-steps article:nth-last-child(-n+2) { border-bottom: 0; }
  .proof-grid, .faq-grid { gap: 55px; }
}

@media (max-width: 760px) {
  .shell { width: min(100% - 34px, 560px); }
  .site-header { width: calc(100% - 34px); height: 74px; }
  .brand img { width: 159px; }
  .site-header nav {
    position: fixed;
    top: 74px;
    right: -18px;
    left: -18px;
    display: none;
    padding: 22px;
    background: rgba(2,26,42,.97);
    border-bottom: 1px solid rgba(255,255,255,.13);
  }
  .site-header nav.nav-open { display: block; }
  .site-header nav .header-cta { width: 100%; justify-content: center; }
  .menu-toggle { width: 42px; height: 42px; display: grid; place-content: center; gap: 6px; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; background: rgba(2,26,42,.2); }
  .menu-toggle span { display: block; width: 17px; height: 1px; background: #fff; }
  .hero { min-height: 755px; align-items: flex-end; }
  .hero-media { background-position: 56% center; }
  .hero-overlay { background: linear-gradient(0deg, rgba(1,16,27,.98) 8%, rgba(1,21,34,.88) 57%, rgba(1,20,32,.48) 100%); }
  .hero::before { display: none; }
  .hero-content { display: block; padding-top: 170px; padding-bottom: 65px; }
  .hero-copy { max-width: 530px; }
  .eyebrow { margin-bottom: 14px; font-size: 10px; }
  .hero h1 { margin-bottom: 18px; font-size: clamp(43px,13vw,59px); line-height: 1; }
  .hero-subtitle { margin-bottom: 19px; font-size: 15px; line-height: 1.55; }
  .hero-points { display: grid; gap: 7px; }
  .hero-points span { font-size: 12px; }
  .hero-mobile-cta { width: 100%; display: inline-flex !important; margin-top: 23px; }
  .lead-card { display: none; }
  .trust-grid { padding: 27px 0; grid-template-columns: repeat(2,1fr); gap: 0; }
  .trust-grid > div { min-height: 80px; padding: 10px 17px; border-bottom: 1px solid rgba(255,255,255,.13); }
  .trust-grid > div:first-child { padding-left: 0; }
  .trust-grid > div:nth-child(2) { border-right: 0; }
  .trust-grid > div:nth-child(3) { padding-left: 0; border-bottom: 0; }
  .trust-grid > div:nth-child(4) { border: 0; }
  .trust-grid strong { font-size: 26px; }
  .trust-grid span { font-size: 10px; }
  .brand-strip { padding-inline: 0; }
  .brand-list { justify-content: flex-start; width: max-content; animation: marquee 21s linear infinite; }
  @keyframes marquee { to { transform: translateX(-46%); } }
  .opening-risk { padding: 77px 0 84px; }
  .risk-grid { grid-template-columns: 1fr; gap: 31px; }
  .section-heading h2 { font-size: 38px; }
  .risk-content .lead { margin-bottom: 28px; font-size: 16px; }
  .risk-cards { grid-template-columns: 1fr; }
  .risk-cards article { min-height: 0; }
  .coordination { padding: 83px 0; }
  .coordination-grid { grid-template-columns: 1fr; gap: 53px; }
  .coordination-visual { min-height: auto; aspect-ratio: 1; order: 2; }
  .coordination-copy h2 { font-size: 42px; }
  .coordination-copy > p:not(.eyebrow) { font-size: 15px; }
  .visual-center img { width: 78px; }
  .visual-orbit { padding: 8px 10px; }
  .visual-orbit span { font-size: 6px; }
  .visual-status { font-size: 8px; }
  .method, .scope-section, .projects, .proof-section, .faq-section { padding: 79px 0 84px; }
  .method-heading, .scope-intro, .projects-heading { grid-template-columns: 1fr; gap: 21px; margin-bottom: 42px; }
  .method-heading h2, .scope-intro h2, .projects-heading h2 { font-size: 40px; }
  .method-heading > p, .scope-intro > p, .projects-heading > p { font-size: 14px; }
  .method-steps { grid-template-columns: 1fr; border-top: 0; border-left: 1px solid var(--line); }
  .method-steps article, .method-steps article:not(:first-child), .method-steps article:last-child { min-height: 0; padding: 5px 0 34px 28px; border: 0; }
  .method-steps article::before, .method-steps article:not(:first-child)::before { top: 4px; left: -5px; }
  .method-steps span { margin-bottom: 18px; }
  .method-steps h3 { min-height: 0; }
  .scope-grid { grid-template-columns: 1fr; }
  .scope-grid article { min-height: 0; padding: 29px 25px; border-right: 0 !important; border-bottom: 1px solid var(--line) !important; }
  .scope-grid article:last-child { border-bottom: 0 !important; }
  .scope-grid ul { grid-template-columns: 1fr; gap: 9px; }
  .project-grid { grid-template-columns: 1fr; }
  .project-card { min-height: 410px; }
  .project-card:first-child { min-height: 360px; }
  .project-card:first-child img { object-position: center; }
  .proof-grid { grid-template-columns: 1fr; gap: 44px; }
  .rating-block { padding: 34px 28px; }
  .proof-copy h2 { font-size: 40px; }
  .proof-copy > p { font-size: 15px; }
  .audiences-grid { width: 100%; grid-template-columns: 1fr; }
  .audiences article { min-height: 0; padding: 58px 24px; }
  .audiences article:first-child { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.14); }
  .audiences p { min-height: 0; }
  .faq-grid { grid-template-columns: 1fr; gap: 38px; }
  .faq-grid > div:first-child { position: static; }
  .faq-grid h2 { font-size: 40px; }
  .faq-list summary { min-height: 76px; font-size: 14px; }
  .final-cta { min-height: 560px; }
  .final-cta-image { background-position: center 18%; }
  .final-cta h2 { font-size: 44px; }
  .final-cta p:not(.eyebrow) { font-size: 15px; }
  .footer-grid { grid-template-columns: 1fr; gap: 38px; }
  .footer-bottom { flex-direction: column; gap: 11px; }
  .floating-whatsapp { width: 55px; padding: 0; justify-content: center; right: 15px; bottom: 15px; }
  .floating-whatsapp span { display: none; }
}

@media (max-width: 1020px) {
  .risk-heading { gap: 50px; }
  .risk-home-grid { grid-template-columns: repeat(2,1fr); }
  .risk-home-grid article:nth-child(2) { border-right: 0; }
  .risk-home-grid article:nth-child(-n+2) { border-bottom: 1px solid rgba(154,211,226,.14); }
  .scope-central { grid-template-columns: 64px 1.1fr .9fr; }
  .scope-branches article { padding-inline: 25px; }
  .scope-branches h3 { font-size: 25px; }
  .flow-rail { display: none; }
  .flow-grid { grid-template-columns: repeat(3,1fr); }
  .flow-grid article { min-height: 0; }
  .flow-mobile-icon { width: 45px; height: 45px; display: grid; place-items: center; margin: 0 auto 26px; border-radius: 50%; background: #acdce7; color: #062838; }
  .flow-mobile-icon .section-icon { width: 20px; height: 20px; }
  .review-card { min-width: calc((100% - 16px)/2); }
}

@media (max-width: 760px) {
  .trusted-brands { padding: 68px 0 48px; }
  .trusted-heading { margin-bottom: 35px; }
  .trusted-heading h2 { font-size: 38px; }
  .logos-viewport { mask-image: linear-gradient(90deg,transparent,#000 4%,#000 96%,transparent); }
  .logos-set { gap: 38px; padding-right: 38px; }
  .client-logo { width: 110px; height: 68px; }
  .client-logo.round img { max-width: 58px; }
  .client-logo.wide img { max-width: 110px; }
  .opening-risk { padding: 76px 0 82px; }
  .risk-heading { margin-bottom: 40px; }
  .risk-heading h2 { font-size: 40px; }
  .risk-support p { font-size: 14px; }
  .risk-home-grid { grid-template-columns: 1fr; }
  .risk-home-grid article { min-height: 0; padding: 28px 24px; border-right: 0 !important; border-bottom: 1px solid rgba(154,211,226,.14) !important; }
  .risk-home-grid article:last-child { border-bottom: 0 !important; }
  .risk-top { margin-bottom: 29px; }
  .risk-home-grid h3 { min-height: 0; }
  .scope-section.scope-primary { padding: 77px 0 74px; }
  .scope-primary .scope-intro { grid-template-columns: 1fr; gap: 24px; margin-bottom: 43px; }
  .scope-primary .scope-intro h2 { font-size: 40px; }
  .scope-primary .scope-intro > p { font-size: 14px; }
  .scope-central { grid-template-columns: 54px 1fr; gap: 18px; padding: 23px 21px; }
  .scope-central::after { display: none; }
  .scope-icon-box { width: 50px; height: 50px; }
  .scope-central h3 { font-size: 22px; }
  .scope-central > p { grid-column: 1 / -1; padding: 18px 0 0; border-top: 1px solid var(--line); border-left: 0; }
  .scope-branches { grid-template-columns: 1fr; margin-top: 16px; }
  .scope-branches article { min-height: 0; padding: 29px 25px 23px; border-right: 0; border-bottom: 1px solid var(--line); }
  .scope-branches article:last-child { border-bottom: 0; }
  .scope-branches h3 { min-height: 0; margin-top: 23px; font-size: 27px; }
  .scope-branches p { min-height: 0; }
  .scope-conversion { align-items: flex-start; flex-direction: column; padding: 21px 0 0; }
  .scope-conversion .button { width: 100%; }
  .flow-section, .reviews-section { padding: 78px 0 84px; }
  .flow-heading { margin-bottom: 40px; }
  .flow-heading h2 { font-size: 40px; }
  .flow-heading > p { font-size: 14px; }
  .flow-grid { grid-template-columns: 1fr; }
  .flow-grid article { min-height: 0; padding: 28px 24px; }
  .flow-meta { margin-bottom: 0; }
  .flow-meta span { margin-bottom: 17px; }
  .flow-grid h3 { min-height: 0; font-size: 20px; }
  .project-grid { grid-template-columns: 1fr; }
  .project-card, .project-card:first-child { min-height: 390px; }
  .project-card:first-child img { object-position: center; }
  .reviews-heading { grid-template-columns: 1fr; gap: 30px; margin-bottom: 38px; }
  .reviews-heading h2 { font-size: 40px; }
  .google-rating { min-width: 0; width: 100%; }
  .review-card { min-width: 88%; min-height: 315px; padding: 27px 24px; }
  .review-card blockquote { font-size: 16px; }
  .review-controls { justify-content: flex-start; }
  .reviews-footnote { margin: 18px 0 0; }
  .audiences { padding-top: 78px; }
  .audiences-heading { margin-bottom: 40px; }
  .audiences-heading h2 { font-size: 40px; }
  .audiences-heading > p:last-child { font-size: 14px; }
  .audiences article { min-height: 0; padding: 48px 0; }
  .audiences article ul { min-height: 0; }
  .audiences article h3 { font-size: 34px; }
  .final-cta-image { background-position: center 18%; }
}

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