:root {
  --navy: #06245b;
  --blue: #0079c8;
  --cyan: #00a9c6;
  --aqua: #16c7d9;
  --ice: #f2fbfc;
  --ice-strong: #ddf7fa;
  --white: #ffffff;
  --text: #52677f;
  --green: #0b8f65;
  --border: rgba(0, 121, 200, 0.14);
  --shadow: 0 14px 40px rgba(6, 36, 91, 0.1);
  --shadow-small: 0 8px 24px rgba(6, 36, 91, 0.07);
  --container: 1200px;
  --header-offset: 92px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--white);
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
  font: inherit;
}

svg {
  display: block;
}

:focus-visible {
  outline: 3px solid rgba(22, 199, 217, 0.55);
  outline-offset: 3px;
}

section[id],
header[id] {
  scroll-margin-top: var(--header-offset);
}

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

.container {
  width: min(100% - 56px, var(--container));
  margin-inline: auto;
}

.section {
  padding: 80px 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  transform: translateY(-150%);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
  white-space: nowrap;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--navy);
  line-height: 1.13;
}

h1 {
  max-width: 650px;
  margin-bottom: 20px;
  font-size: clamp(2.8rem, 4.6vw, 4.75rem);
  font-weight: 800;
  letter-spacing: -0.045em;
}

h1 span,
.coverage h2 span {
  color: var(--cyan);
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 3vw, 3.1rem);
  font-weight: 800;
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
  font-weight: 800;
}

.section-heading {
  max-width: 750px;
  margin-bottom: 42px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading p:last-child {
  max-width: 680px;
  margin: 0 auto;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  color: var(--white);
  background: linear-gradient(135deg, var(--cyan), var(--aqua));
  border: 1px solid transparent;
  border-radius: 13px;
  box-shadow: 0 9px 20px rgba(0, 169, 198, 0.2);
  font-weight: 800;
  line-height: 1.2;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button:hover {
  box-shadow: 0 12px 25px rgba(0, 169, 198, 0.28);
  transform: translateY(-2px);
}

.button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-small {
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 0.82rem;
  white-space: nowrap;
}

.button-outline {
  color: var(--blue);
  background: var(--white);
  border-color: var(--blue);
  box-shadow: none;
}

.button-outline:hover {
  color: var(--white);
  background: var(--blue);
}

/* Header */
.site-header {
  position: relative;
  z-index: 100;
  width: 100%;
  background: var(--white);
  border-bottom: 1px solid rgba(6, 36, 91, 0.06);
  transition: box-shadow 220ms ease;
}

.site-header.is-sticky {
  position: sticky;
  top: 0;
  box-shadow: 0 8px 30px rgba(6, 36, 91, 0.09);
}

.header-inner {
  display: grid;
  min-height: 82px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
}

.brand-mark {
  width: 42px;
  height: 50px;
  flex: 0 0 auto;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  font-size: 0.93rem;
  letter-spacing: 0.045em;
  line-height: 1.05;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 1.8vw, 25px);
}

.primary-nav a {
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
}

.primary-nav a:hover {
  color: var(--cyan);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 10px;
  background: transparent;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px auto;
  background: var(--blue);
  border-radius: 5px;
  transition: transform 180ms ease, opacity 180ms ease;
}

/* Hero */
.hero {
  overflow: hidden;
  background: linear-gradient(120deg, #fff 32%, #f4fdfe 70%, #eafbfd 100%);
}

.hero-grid {
  display: grid;
  min-height: 600px;
  grid-template-columns: 46% 54%;
  align-items: center;
  gap: 35px;
  padding-top: 54px;
  padding-bottom: 72px;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 12px;
  color: var(--blue);
  background: rgba(221, 247, 250, 0.8);
  border: 1px solid rgba(0, 169, 198, 0.14);
  border-radius: 999px;
}

.pill svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.hero-lead {
  max-width: 600px;
  margin: 0;
  color: #435b75;
  font-size: 1.12rem;
}

.wave-line {
  width: 130px;
  height: 12px;
  margin: -8px 0 22px;
  background:
    radial-gradient(20px 9px at 10px -1px, transparent 10px, rgba(22, 199, 217, 0.55) 11px, transparent 12px)
    0 0 / 40px 12px repeat-x;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 28px;
}

.hero-indicators {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 27px;
}

.hero-indicators span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 700;
}

.hero-indicators svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--cyan);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-media {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 5 / 4;
  border-radius: 80px 24px 80px 80px;
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Trust strip */
.trust-section {
  position: relative;
  z-index: 3;
  padding-bottom: 5px;
  background: var(--white);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: -35px;
  padding: 24px 26px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.trust-item {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 14px;
  padding: 6px 24px;
  border-right: 1px solid rgba(6, 36, 91, 0.1);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item > svg {
  width: 39px;
  height: 39px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--blue);
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item strong {
  color: var(--navy);
  font-size: 0.88rem;
  line-height: 1.25;
}

.trust-item span {
  margin-top: 4px;
  color: var(--text);
  font-size: 0.72rem;
  line-height: 1.35;
}

/* Services */
.services {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.service-card {
  min-height: 260px;
  padding: 27px 22px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 21px;
  box-shadow: var(--shadow-small);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.service-card:hover {
  border-color: rgba(0, 169, 198, 0.42);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.service-icon {
  display: grid;
  width: 66px;
  height: 66px;
  margin-bottom: 21px;
  place-items: center;
  color: var(--blue);
  background: linear-gradient(135deg, var(--ice), var(--ice-strong));
  border-radius: 19px;
}

.service-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card p {
  margin: 0;
  font-size: 0.91rem;
  line-height: 1.6;
}

/* Differentials */
.differentials {
  padding: 36px 0;
  overflow: hidden;
  background: var(--ice);
}

.differentials-panel {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow-small);
}

.differential {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 8px 20px;
  border-right: 1px solid rgba(6, 36, 91, 0.1);
}

.differential:last-child {
  border-right: 0;
}

.differential svg {
  width: 39px;
  height: 39px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--blue);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.differential strong {
  color: var(--navy);
  font-size: 0.82rem;
  line-height: 1.35;
}

/* Coverage */
.coverage {
  overflow: hidden;
  background: linear-gradient(120deg, #fff, #eafbfd);
}

.coverage-grid {
  display: grid;
  grid-template-columns: 40% 60%;
  align-items: center;
  gap: 38px;
}

.coverage-copy > p:not(.eyebrow) {
  max-width: 500px;
}

.location-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 16px;
  margin: 25px 0 30px;
  padding: 0;
  list-style: none;
}

.location-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-size: 0.91rem;
  font-weight: 700;
}

.location-list svg {
  width: 19px;
  height: 19px;
  padding: 3px;
  fill: none;
  stroke: var(--white);
  stroke-width: 3;
  background: var(--cyan);
  border-radius: 50%;
}

.coverage-map {
  margin: 0;
}

.coverage-map img {
  width: 100%;
  object-fit: contain;
}

/* Results */
.results {
  background: var(--white);
}

.results-wrap {
  position: relative;
}

.results-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 23px;
}

.result-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 21px;
  box-shadow: var(--shadow-small);
}

.result-image {
  position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 2 / 1;
  background: var(--ice);
}

.result-image img {
  width: 300%;
  max-width: none;
  height: 100%;
  object-fit: fill;
}

.crop-one img {
  transform: translateX(0);
}

.crop-two img {
  transform: translateX(-33.333%);
}

.crop-three img {
  transform: translateX(-66.666%);
}

.before-label,
.after-label {
  position: absolute;
  bottom: 10px;
  z-index: 2;
  padding: 5px 11px;
  color: var(--white);
  background: rgba(6, 36, 91, 0.82);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1.2;
}

.before-label {
  left: 10px;
}

.after-label {
  right: 10px;
  background: rgba(0, 169, 198, 0.9);
}

.result-card h3 {
  margin: 20px 20px 7px;
}

.result-card p {
  margin: 0;
  padding: 0 20px 22px;
  font-size: 0.9rem;
}

.slider-button {
  display: none;
}

/* Segments */
.segments {
  background: var(--ice);
}

.segments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 23px;
}

.segment-card {
  display: flex;
  min-height: 210px;
  align-items: flex-start;
  gap: 19px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 21px;
  box-shadow: var(--shadow-small);
}

.segment-card > svg {
  width: 55px;
  height: 55px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--blue);
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.segment-card p {
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.segment-card a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  font-size: 0.86rem;
  font-weight: 800;
}

/* Testimonials */
.testimonials {
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 23px;
}

.testimonial-card {
  display: flex;
  min-height: 320px;
  flex-direction: column;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 21px;
  box-shadow: var(--shadow-small);
}

.stars {
  color: #f3aa18;
  font-size: 1.1rem;
  letter-spacing: 0.13em;
}

.testimonial-card blockquote {
  flex: 1;
  margin: 20px 0 25px;
  color: #344d68;
  font-size: 0.99rem;
  font-style: italic;
}

.testimonial-card footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  display: grid;
  width: 47px;
  height: 47px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
  font-weight: 800;
}

.avatar-green {
  background: var(--green);
}

.avatar-cyan {
  background: var(--cyan);
}

.testimonial-card footer strong,
.testimonial-card footer span {
  display: block;
}

.testimonial-card footer strong {
  color: var(--navy);
  font-size: 0.91rem;
}

.testimonial-card footer div span {
  font-size: 0.77rem;
}

.testimonial-note {
  max-width: 760px;
  margin: 20px auto 0;
  color: #6d7f91;
  font-size: 0.75rem;
  text-align: center;
}

/* FAQ */
.faq-section {
  background: var(--ice);
}

.faq-grid {
  display: grid;
  grid-template-columns: 38% 62%;
  align-items: start;
  gap: 65px;
}

.faq-intro p:not(.eyebrow) {
  max-width: 420px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 10px;
  color: var(--blue);
  font-weight: 800;
}

.text-link svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.accordion {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow-small);
}

.accordion-item + .accordion-item {
  border-top: 1px solid rgba(6, 36, 91, 0.09);
}

.accordion-item h3 {
  margin: 0;
}

.accordion-item button {
  display: flex;
  width: 100%;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 20px;
  color: var(--navy);
  background: var(--white);
  border: 0;
  text-align: left;
  font-weight: 800;
  cursor: pointer;
}

.accordion-item button span {
  position: relative;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.accordion-item button span::before,
.accordion-item button span::after {
  position: absolute;
  top: 9px;
  left: 3px;
  width: 14px;
  height: 2px;
  content: "";
  background: var(--blue);
  transition: transform 180ms ease;
}

.accordion-item button span::after {
  transform: rotate(90deg);
}

.accordion-item button[aria-expanded="true"] span::after {
  transform: rotate(0);
}

.accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 260ms ease;
}

.accordion-panel > p {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  padding: 0 20px;
}

.accordion-panel.open {
  grid-template-rows: 1fr;
}

.accordion-panel.open > p {
  padding-bottom: 19px;
}

/* Final CTA */
.final-cta-section {
  padding: 62px 0;
  overflow: hidden;
  background: var(--white);
}

.final-cta {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 1.3fr auto;
  align-items: center;
  gap: 40px;
  overflow: hidden;
  padding: 44px 48px;
  color: var(--white);
  background: linear-gradient(120deg, var(--blue), var(--aqua));
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.final-cta::before,
.final-cta::after {
  position: absolute;
  z-index: -1;
  content: "";
  pointer-events: none;
  border: 2px solid rgba(255, 255, 255, 0.13);
  border-radius: 46% 54% 44% 56%;
}

.final-cta::before {
  inset: -80% 44% 28% -15%;
  transform: rotate(8deg);
  animation: water-reflection 16s ease-in-out infinite alternate;
}

.final-cta::after {
  inset: 45% -10% -85% 40%;
  transform: rotate(-9deg);
  animation: water-reflection 20s ease-in-out infinite alternate-reverse;
}

.final-cta h2 {
  max-width: 650px;
  margin-bottom: 10px;
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.final-cta p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.final-actions {
  display: flex;
  gap: 12px;
}

.button-white {
  color: var(--blue);
  background: var(--white);
  box-shadow: none;
}

.button-glass {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.75);
  box-shadow: none;
}

@keyframes water-reflection {
  to {
    transform: rotate(3deg) translate3d(25px, 10px, 0);
  }
}

/* Footer */
.site-footer {
  background: var(--white);
  border-top: 1px solid rgba(6, 36, 91, 0.07);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 50px;
  padding-top: 52px;
  padding-bottom: 38px;
}

.footer-brand p {
  max-width: 320px;
  margin: 20px 0 10px;
  font-size: 0.88rem;
}

.coverage-note {
  color: var(--blue);
  font-size: 0.83rem;
}

.footer-group {
  border: 0;
}

.footer-group summary {
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  list-style: none;
  text-transform: uppercase;
  pointer-events: none;
}

.footer-group summary::-webkit-details-marker {
  display: none;
}

.footer-group nav {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 15px;
}

.footer-group a {
  font-size: 0.82rem;
}

.footer-group a:hover,
.footer-bottom a:hover {
  color: var(--cyan);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding-top: 20px;
  padding-bottom: 24px;
  border-top: 1px solid rgba(6, 36, 91, 0.1);
  box-shadow: inset 0 -8px 0 -2px var(--cyan);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.75rem;
}

.footer-bottom nav {
  display: flex;
  gap: 18px;
  font-size: 0.75rem;
}

.floating-whatsapp {
  position: fixed;
  z-index: 90;
  right: 18px;
  bottom: 18px;
  display: none;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--green);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 9px 25px rgba(6, 36, 91, 0.25);
}

.floating-whatsapp svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal-right {
  transform: translateX(24px);
}

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

.services-grid .reveal:nth-child(2),
.trust-strip .reveal:nth-child(2),
.differentials-panel .reveal:nth-child(2) {
  transition-delay: 70ms;
}

.services-grid .reveal:nth-child(3),
.trust-strip .reveal:nth-child(3),
.differentials-panel .reveal:nth-child(3) {
  transition-delay: 140ms;
}

.services-grid .reveal:nth-child(4),
.trust-strip .reveal:nth-child(4),
.differentials-panel .reveal:nth-child(4) {
  transition-delay: 210ms;
}

.services-grid .reveal:nth-child(6),
.differentials-panel .reveal:nth-child(5) {
  transition-delay: 70ms;
}

.services-grid .reveal:nth-child(7) {
  transition-delay: 140ms;
}

.services-grid .reveal:nth-child(8) {
  transition-delay: 210ms;
}

@media (max-width: 1050px) {
  .header-inner {
    grid-template-columns: auto auto 1fr;
  }

  .menu-toggle {
    display: block;
    grid-column: 3;
    justify-self: end;
  }

  .header-cta {
    display: none;
  }

  .primary-nav {
    position: absolute;
    top: 100%;
    right: 28px;
    left: 28px;
    display: none;
    max-height: calc(100vh - 100px);
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    overflow-y: auto;
    padding: 10px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: var(--shadow);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a {
    min-height: 46px;
    padding: 12px 14px;
    border-radius: 9px;
  }

  .primary-nav a:hover {
    background: var(--ice);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero-grid {
    grid-template-columns: 48% 52%;
  }

  h1 {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
  }

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

  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(-n+2) {
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(6, 36, 91, 0.1);
  }

  .trust-item:nth-child(n+3) {
    padding-top: 20px;
  }

  .differentials-panel {
    grid-template-columns: repeat(3, 1fr);
  }

  .differential:nth-child(3) {
    border-right: 0;
  }

  .differential:nth-child(n+4) {
    margin-top: 15px;
    padding-top: 20px;
    border-top: 1px solid rgba(6, 36, 91, 0.1);
  }

  .footer-grid {
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 25px;
  }
}

@media (max-width: 768px) {
  :root {
    --header-offset: 78px;
  }

  body {
    font-size: 15.5px;
  }

  .container {
    width: min(100% - 40px, var(--container));
  }

  .section {
    padding: 54px 0;
  }

  .header-inner {
    min-height: 74px;
  }

  .brand-mark {
    width: 35px;
    height: 43px;
  }

  .brand-copy {
    font-size: 0.8rem;
  }

  .primary-nav {
    right: 20px;
    left: 20px;
  }

  .hero {
    background: linear-gradient(180deg, #fff, #eafbfd);
  }

  .hero-grid {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 31px;
    padding-top: 42px;
    padding-bottom: 34px;
  }

  h1 {
    max-width: 650px;
    font-size: clamp(2.15rem, 10vw, 2.9rem);
    line-height: 1.07;
  }

  h2 {
    font-size: clamp(1.75rem, 8vw, 2.15rem);
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
  }

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

  .hero-indicators {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .hero-media {
    aspect-ratio: 4 / 3;
    border-radius: 26px;
  }

  .trust-section {
    padding-top: 22px;
  }

  .trust-strip {
    margin-top: 0;
    padding: 18px 12px;
  }

  .trust-item {
    align-items: flex-start;
    padding-inline: 12px;
  }

  .trust-item > svg {
    width: 30px;
    height: 30px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
  }

  .differentials {
    padding: 32px 0;
  }

  .differentials-panel {
    grid-template-columns: repeat(2, 1fr);
    padding: 15px;
  }

  .differential,
  .differential:nth-child(3) {
    min-height: 120px;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding: 15px;
    border: 0;
    text-align: center;
  }

  .differential:nth-child(odd) {
    border-right: 1px solid rgba(6, 36, 91, 0.1);
  }

  .differential:nth-child(n+3) {
    margin: 0;
    border-top: 1px solid rgba(6, 36, 91, 0.1);
  }

  .differential:last-child {
    grid-column: 1 / -1;
    border-right: 0;
  }

  .coverage-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 37px;
  }

  .coverage-map {
    order: 2;
  }

  .results-wrap {
    padding: 0 3px;
  }

  .results-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 3px 1px 18px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--cyan) var(--ice);
  }

  .result-card {
    min-width: min(85vw, 420px);
    scroll-snap-align: start;
  }

  .slider-button {
    position: absolute;
    z-index: 4;
    top: 30%;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    color: var(--white);
    background: rgba(6, 36, 91, 0.8);
    border: 2px solid var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow-small);
    cursor: pointer;
  }

  .slider-button.previous {
    left: -12px;
  }

  .slider-button.next {
    right: -12px;
  }

  .segments-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .segment-card {
    min-height: 0;
  }

  .testimonial-card {
    min-height: 0;
  }

  .faq-grid {
    gap: 30px;
  }

  .final-cta-section {
    padding: 48px 0;
  }

  .final-cta {
    grid-template-columns: 1fr;
    padding: 38px 22px;
    text-align: left;
  }

  .final-actions {
    flex-direction: column;
  }

  .final-actions .button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-top: 42px;
  }

  .footer-brand {
    margin-bottom: 10px;
  }

  .footer-group {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 12px;
  }

  .footer-group summary {
    position: relative;
    min-height: 48px;
    padding: 14px 42px 14px 15px;
    pointer-events: auto;
    cursor: pointer;
  }

  .footer-group summary::after {
    position: absolute;
    top: 13px;
    right: 16px;
    content: "+";
    color: var(--blue);
    font-size: 1.2rem;
    line-height: 1;
  }

  .footer-group[open] summary::after {
    content: "−";
  }

  .footer-group nav {
    margin: 0;
    padding: 0 15px 16px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-bottom nav {
    flex-wrap: wrap;
  }

  .floating-whatsapp.is-visible {
    display: flex;
  }
}

@media (max-width: 420px) {
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-item,
  .trust-item:nth-child(n+3),
  .trust-item:nth-child(2) {
    padding: 15px 10px;
    border-right: 0;
    border-bottom: 1px solid rgba(6, 36, 91, 0.1);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .location-list {
    grid-template-columns: 1fr;
  }

  .segment-card {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal,
  .reveal-right {
    opacity: 1;
    transform: none;
  }
}

/* Site Fácil IA: proteção de integridade visual */
html,body{max-width:100%;overflow-x:clip}main>section{position:relative;isolation:isolate;clear:both}img{max-width:100%;height:auto}img[src*="assets/"]{object-fit:contain}
