:root {
  --navy: #052f63;
  --navy-2: #073b72;
  --blue: #07559a;
  --aqua: #08aaa9;
  --turquoise: #18c5be;
  --pale: #eaf7fa;
  --light: #f4fafc;
  --ink: #15324d;
  --muted: #60778c;
  --white: #fff;
  --border: #dce9ee;
  --shadow: 0 12px 35px rgba(5, 47, 99, .10);
  --small-shadow: 0 6px 20px rgba(5, 47, 99, .08);
  --radius: 16px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 94px;
}

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

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

img {
  height: auto;
}

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

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

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

:focus-visible {
  outline: 3px solid #7bdde3;
  outline-offset: 3px;
}

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

h1,
h2,
h3 {
  color: var(--navy);
  line-height: 1.12;
  letter-spacing: -.025em;
}

h1 {
  max-width: 650px;
  margin-bottom: 22px;
  font-size: clamp(2.7rem, 4.4vw, 4.65rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  font-weight: 800;
}

h3 {
  font-size: 1.12rem;
}

p {
  color: var(--muted);
}

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

.section {
  padding-block: 72px;
}

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

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

.site-header {
  position: relative;
  z-index: 100;
  width: 100%;
  background: var(--white);
  border-bottom: 1px solid rgba(7, 59, 114, .08);
}

.site-header.is-sticky {
  position: sticky;
  top: 0;
  box-shadow: 0 8px 28px rgba(5, 47, 99, .09);
  animation: header-in .25s ease both;
}

@keyframes header-in {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

.header-inner {
  display: flex;
  min-height: 80px;
  align-items: center;
  gap: 30px;
  padding-block: 8px;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 68px;
  aspect-ratio: 1;
  object-fit: contain;
}

.main-nav {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: clamp(18px, 2.3vw, 34px);
}

.main-nav a {
  position: relative;
  color: var(--navy);
  font-size: .91rem;
  font-weight: 650;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--aqua);
  transform: scaleX(0);
  transition: transform .2s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  padding: 11px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 3px;
  background: var(--navy);
  transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 50px;
  padding: 13px 22px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 2px solid var(--aqua);
  border-radius: 10px;
  color: var(--white);
  background: var(--aqua);
  box-shadow: 0 8px 18px rgba(8, 170, 169, .18);
  font-weight: 750;
  line-height: 1.2;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover {
  background: #079493;
  border-color: #079493;
  box-shadow: 0 12px 24px rgba(8, 170, 169, .25);
  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 17px;
  font-size: .86rem;
}

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

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

.hero {
  overflow: hidden;
  background: linear-gradient(90deg, #f4fafc 0%, #fff 50%, #fff 100%);
}

.hero-grid {
  display: grid;
  min-height: 590px;
  grid-template-columns: .88fr 1.12fr;
  align-items: stretch;
}

.hero-content {
  display: flex;
  padding: 70px 44px 62px 0;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--aqua);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.hero-description {
  max-width: 575px;
  margin-bottom: 28px;
  color: #38566f;
  font-size: 1.12rem;
}

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

.trust-list {
  display: grid;
  margin: 38px 0 0;
  padding: 0;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  list-style: none;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-size: .8rem;
  font-weight: 700;
  line-height: 1.25;
}

.trust-list svg {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--blue);
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-media {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 0 0 0 46px;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 590px;
  object-fit: cover;
  object-position: center;
}

.differentials {
  padding-block: 45px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

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

.differential {
  display: flex;
  min-width: 0;
  padding: 6px 38px;
  align-items: center;
  gap: 20px;
}

.differential + .differential {
  border-left: 1px solid var(--border);
}

.differential:first-child {
  padding-left: 0;
}

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

.differential h2 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.differential p {
  margin: 0;
  font-size: .86rem;
  line-height: 1.5;
}

.line-icon {
  width: 62px;
  flex: 0 0 62px;
  color: var(--aqua);
}

.line-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.services {
  background: var(--light);
}

.section-heading {
  max-width: 750px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 13px;
}

.section-heading p:last-child {
  margin-bottom: 0;
  font-size: 1.03rem;
}

.section-heading.compact {
  margin-bottom: 32px;
}

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

.service-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--small-shadow);
  transition: transform .25s ease, box-shadow .25s ease;
}

.service-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.service-card > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-body {
  position: relative;
  min-height: 142px;
  padding: 20px 20px 18px 54px;
}

.service-body h3 {
  margin-bottom: 14px;
}

.service-body a {
  color: var(--aqua);
  font-size: .84rem;
  font-weight: 800;
}

.service-body a span {
  margin-left: 5px;
}

.mini-icon {
  position: absolute;
  top: 20px;
  left: 20px;
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  color: var(--blue);
  border: 1px solid #9dc1d6;
  border-radius: 6px;
  font-size: .85rem;
  font-weight: 800;
}

.institutional {
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(135deg, #052f63 0%, #064b87 62%, #087d98 100%);
}

.institutional-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 56px;
}

.institutional-media {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 20px 40px rgba(0, 19, 49, .25);
}

.institutional-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.eyebrow-light {
  color: #7bdde3;
}

.institutional-content h2,
.institutional-content p {
  color: var(--white);
}

.institutional-content h2 {
  max-width: 560px;
  margin-bottom: 18px;
}

.institutional-content > p:not(.eyebrow) {
  max-width: 590px;
  color: rgba(255, 255, 255, .82);
}

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

.audience-list li {
  display: flex;
  min-height: 56px;
  padding: 12px 15px;
  align-items: center;
  gap: 12px;
  color: var(--white);
  border: 1px solid rgba(123, 221, 227, .24);
  border-radius: 12px;
  background: rgba(255, 255, 255, .05);
  font-weight: 700;
}

.audience-list span {
  color: #48d7d3;
  font-size: 1.55rem;
}

.process {
  background: var(--white);
}

.process-grid {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(3, 1fr);
  gap: 74px;
  counter-reset: process;
  list-style: none;
}

.process-step {
  position: relative;
  text-align: center;
}

.process-step:not(:last-child)::after {
  position: absolute;
  top: 37px;
  right: -54px;
  width: 34px;
  height: 14px;
  content: "→";
  color: #8ca7bc;
  font-size: 1.6rem;
  line-height: 1;
}

.process-icon {
  display: grid;
  width: 78px;
  height: 78px;
  margin: 0 auto 20px;
  place-items: center;
  color: var(--navy);
  border: 2px solid #60d0d0;
  border-radius: 50%;
}

.process-icon svg {
  width: 44px;
  height: 44px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-step h3 {
  margin-bottom: 8px;
}

.process-step p {
  max-width: 290px;
  margin: 0 auto;
  font-size: .9rem;
}

.service-areas {
  background: var(--pale);
}

.area-grid {
  display: grid;
  grid-template-columns: 1.18fr .82fr;
  align-items: center;
  gap: 55px;
}

.map-card {
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(8, 170, 169, .16);
  border-radius: 24px;
  background: rgba(255, 255, 255, .56);
}

.regional-map {
  width: 100%;
}

.map-sea {
  fill: url("#sea");
}

.map-land {
  fill: #bce9de;
  stroke: #fff;
  stroke-width: 4;
}

.map-lines {
  fill: none;
  stroke: rgba(255, 255, 255, .8);
  stroke-width: 2.5;
}

.markers circle {
  fill: var(--blue);
  stroke: var(--white);
  stroke-width: 2;
}

.markers text {
  fill: var(--navy);
  font-size: 14px;
  font-weight: 750;
}

.area-content h2 {
  margin-bottom: 18px;
}

.area-highlight {
  margin: 24px 0;
  padding-left: 16px;
  color: var(--navy);
  border-left: 4px solid var(--aqua);
  font-weight: 750;
}

.audiences {
  background: var(--white);
}

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

.audience-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 4px 14px rgba(5, 47, 99, .06);
  transition: transform .25s ease, box-shadow .25s ease;
}

.audience-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.audience-card img,
.generated-visual {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.audience-card > span:last-child {
  display: block;
  padding: 14px 12px;
  color: var(--navy);
  text-align: center;
  font-weight: 800;
}

.generated-visual {
  position: relative;
  overflow: hidden;
}

.hotel-visual {
  background:
    linear-gradient(180deg, rgba(255,255,255,.06), transparent 55%),
    linear-gradient(180deg, #75d6e2 0 35%, #f2e3c8 35% 57%, #10aab7 57% 100%);
}

.hotel-visual::after {
  position: absolute;
  right: 0;
  bottom: 15%;
  left: 0;
  height: 26%;
  content: "";
  opacity: .55;
  background: repeating-linear-gradient(165deg, transparent 0 14px, rgba(255,255,255,.6) 15px 17px);
}

.building {
  position: absolute;
  top: 17%;
  display: block;
  height: 42%;
  border-radius: 3px 3px 0 0;
  background:
    repeating-linear-gradient(90deg, transparent 0 13px, #2f6680 14px 23px),
    linear-gradient(#fff, #d8e9ea);
  box-shadow: 0 5px 15px rgba(5, 47, 99, .15);
}

.building-one {
  left: 9%;
  width: 52%;
}

.building-two {
  right: 5%;
  width: 30%;
  height: 34%;
  top: 25%;
}

.palm {
  position: absolute;
  z-index: 2;
  color: #20745f;
  font-family: Georgia, serif;
  font-size: 4.2rem;
  line-height: 1;
  transform: rotate(180deg);
}

.palm-one {
  top: 22%;
  left: 2%;
}

.palm-two {
  top: 28%;
  right: 4%;
  font-size: 3rem;
}

.enterprise-visual {
  background:
    linear-gradient(90deg, rgba(255,255,255,.1), transparent),
    linear-gradient(145deg, #183b52, #688a94);
}

.enterprise-visual::before {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 20%;
  content: "";
  background: #b9c3c3;
}

.machine {
  position: absolute;
  bottom: 18%;
  display: block;
  border: 3px solid #a9bec3;
  border-radius: 8px 8px 3px 3px;
  background: linear-gradient(90deg, #52717a, #d2e1df 45%, #77969c);
  box-shadow: 0 8px 16px rgba(0, 0, 0, .25);
}

.machine::after {
  position: absolute;
  top: 18%;
  left: 19%;
  width: 60%;
  aspect-ratio: 1;
  content: "";
  border: 4px solid #294d5c;
  border-radius: 50%;
  background: #7d9fa6;
}

.machine-a {
  left: 7%;
  width: 25%;
  height: 42%;
}

.machine-b {
  left: 38%;
  width: 24%;
  height: 54%;
}

.machine-c {
  right: 7%;
  width: 25%;
  height: 46%;
}

.pipe {
  position: absolute;
  z-index: 2;
  display: block;
  border: 7px solid #dfe9e8;
  border-bottom: 0;
  border-radius: 15px 15px 0 0;
}

.pipe-a {
  top: 10%;
  left: 17%;
  width: 36%;
  height: 39%;
}

.pipe-b {
  top: 4%;
  right: 12%;
  width: 29%;
  height: 46%;
  border-color: #56c6c7;
}

.faq {
  background: #f8fbfc;
}

.faq-container {
  max-width: 960px;
}

.accordion {
  border-top: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item h3 {
  margin: 0;
}

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

.faq-item button span {
  position: relative;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
}

.faq-item button span::before,
.faq-item button span::after {
  position: absolute;
  top: 10px;
  left: 4px;
  width: 14px;
  height: 2px;
  content: "";
  border-radius: 2px;
  background: var(--aqua);
}

.faq-item button span::after {
  transform: rotate(90deg);
  transition: transform .2s ease;
}

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

.faq-answer {
  padding: 0 48px 20px 8px;
}

.faq-answer p {
  margin: 0;
}

.final-cta {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(135deg, #079eaa 0%, #16c8c0 100%);
}

.wave-decoration {
  position: absolute;
  right: -4%;
  bottom: -34px;
  width: 58%;
  height: 120px;
  opacity: .18;
  border: 18px solid var(--white);
  border-right: 0;
  border-left: 0;
  border-radius: 50%;
  transform: rotate(-5deg);
}

.final-cta-inner {
  position: relative;
  display: flex;
  min-height: 170px;
  padding-block: 38px;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.final-cta h2 {
  max-width: 680px;
  margin-bottom: 8px;
  color: var(--white);
}

.final-cta p {
  margin: 0;
  color: rgba(255, 255, 255, .88);
}

.button-white {
  flex: 0 0 auto;
  color: var(--aqua);
  background: var(--white);
  border-color: var(--white);
  box-shadow: 0 10px 25px rgba(5, 47, 99, .15);
}

.button-white:hover {
  color: var(--navy);
  background: var(--white);
  border-color: var(--white);
}

.site-footer {
  padding: 52px 0 22px;
  color: rgba(255, 255, 255, .8);
  background: var(--navy);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr .7fr;
  gap: 44px;
}

.footer-brand img {
  width: 86px;
  margin-bottom: 16px;
  object-fit: contain;
}

.footer-brand h2,
.footer-column h2 {
  color: var(--white);
  letter-spacing: 0;
}

.footer-brand h2 {
  margin-bottom: 9px;
  font-size: 1rem;
}

.footer-brand p {
  max-width: 290px;
  margin: 0;
  color: rgba(255, 255, 255, .68);
  font-size: .84rem;
}

.footer-column h2 {
  margin-bottom: 16px;
  font-size: .96rem;
}

.footer-column a,
.footer-column address {
  display: block;
  margin-bottom: 9px;
  color: rgba(255, 255, 255, .75);
  font-size: .86rem;
  font-style: normal;
}

.footer-column a:hover {
  color: #7bdde3;
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, .55);
  font-size: .78rem;
}

.whatsapp-float {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: max(22px, env(safe-area-inset-bottom));
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--white);
  border: 3px solid var(--white);
  border-radius: 50%;
  background: #18b77c;
  box-shadow: 0 10px 26px rgba(5, 47, 99, .3);
  transition: transform .2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.03);
}

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

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

  .header-inner {
    gap: 18px;
  }

  .main-nav {
    gap: 16px;
  }

  .main-nav a {
    font-size: .82rem;
  }

  .header-cta span {
    display: none;
  }

  .hero-grid {
    grid-template-columns: .95fr 1.05fr;
  }

  .hero-content {
    padding-right: 28px;
  }

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

  .differential {
    padding-inline: 22px;
  }

  .services-grid {
    gap: 18px;
  }

  .service-body {
    padding-left: 20px;
  }

  .mini-icon {
    position: static;
    margin-bottom: 10px;
  }

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

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

@media (max-width: 768px) {
  html {
    scroll-padding-top: 76px;
  }

  body {
    font-size: 15px;
  }

  .container {
    width: calc(100% - 40px);
  }

  .section {
    padding-block: 44px;
  }

  .header-inner {
    min-height: 72px;
    flex-wrap: wrap;
  }

  .brand img {
    width: 54px;
  }

  .menu-toggle {
    display: block;
    order: 3;
  }

  .header-cta {
    order: 2;
    margin-left: auto;
  }

  .header-cta span {
    display: inline;
  }

  .main-nav {
    display: none;
    width: 100%;
    margin: 0;
    padding: 8px 0 14px;
    order: 4;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-top: 1px solid var(--border);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    min-height: 46px;
    padding: 12px 4px;
    font-size: .94rem;
  }

  .main-nav a::after {
    display: none;
  }

  .hero {
    padding-bottom: 40px;
    background: var(--light);
  }

  .hero .container {
    width: 100%;
  }

  .hero-grid {
    display: flex;
    min-height: 0;
    flex-direction: column;
  }

  .hero-media {
    order: 1;
    border-radius: 0;
  }

  .hero-media img {
    width: 100%;
    min-height: 0;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center;
  }

  .hero-content {
    order: 2;
    padding: 35px 20px 0;
    text-align: center;
  }

  h1 {
    margin-inline: auto;
    font-size: clamp(2.15rem, 10vw, 2.55rem);
    line-height: 1.05;
  }

  h2 {
    font-size: clamp(1.7rem, 7.5vw, 2rem);
  }

  .eyebrow {
    font-size: .71rem;
  }

  .hero-description {
    margin-inline: auto;
    font-size: 1rem;
  }

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

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

  .trust-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .trust-list li {
    flex-direction: column;
    gap: 7px;
    text-align: center;
    font-size: .7rem;
  }

  .differentials {
    padding-block: 36px;
  }

  .differential-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .differential {
    padding: 22px 0;
  }

  .differential + .differential {
    border-top: 1px solid var(--border);
    border-left: 0;
  }

  .line-icon {
    width: 55px;
    flex-basis: 55px;
  }

  .section-heading {
    margin-bottom: 28px;
  }

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

  .service-card {
    display: grid;
    grid-template-columns: 42% 58%;
    align-items: stretch;
  }

  .service-card > img {
    height: 100%;
    aspect-ratio: auto;
  }

  .service-body {
    display: flex;
    min-height: 155px;
    padding: 16px;
    flex-direction: column;
    justify-content: center;
  }

  .service-body h3 {
    font-size: 1rem;
  }

  .institutional-grid,
  .area-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .institutional-content {
    text-align: left;
  }

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

  .process-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .process-step {
    display: grid;
    grid-template-columns: 66px 1fr;
    column-gap: 18px;
    text-align: left;
  }

  .process-icon {
    width: 66px;
    height: 66px;
    margin: 0;
    grid-row: 1 / 3;
  }

  .process-icon svg {
    width: 37px;
  }

  .process-step h3 {
    align-self: end;
  }

  .process-step p {
    max-width: none;
    margin: 0;
  }

  .process-step:not(:last-child)::after {
    top: auto;
    right: auto;
    bottom: -30px;
    left: 26px;
    content: "↓";
  }

  .area-content {
    text-align: center;
  }

  .area-highlight {
    text-align: left;
  }

  .audience-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .audience-card > span:last-child {
    padding: 11px 7px;
    font-size: .82rem;
  }

  .faq-item button {
    min-height: 58px;
    padding-block: 15px;
  }

  .final-cta-inner {
    min-height: 0;
    padding-block: 36px;
    flex-direction: column;
    text-align: center;
  }

  .final-cta-inner .button {
    width: 100%;
  }

  .wave-decoration {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    margin-top: 30px;
    padding-right: 65px;
  }

  .whatsapp-float {
    right: 18px;
    width: 54px;
    height: 54px;
  }
}

@media (max-width: 520px) {
  .header-cta {
    min-width: 46px;
    padding-inline: 11px;
  }

  .header-cta span {
    display: none;
  }

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

  .service-card {
    display: block;
  }

  .service-card > img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .service-body {
    min-height: 0;
    padding: 18px;
  }

  .mini-icon {
    float: left;
    margin: 0 10px 0 0;
  }

  .audience-cards {
    grid-template-columns: 1fr;
  }

  .map-card {
    padding: 5px;
  }

  .markers text {
    font-size: 12px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* 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}


/* Site Fácil IA V5.7.1 — imagens padronizadas */
.sf-uniform-media{display:block;width:100%;aspect-ratio:4/3;overflow:hidden;background:#f4f4f4}.sf-uniform-media>img,.sf-uniform-image{display:block!important;width:100%!important;height:100%!important;min-height:100%!important;max-height:none!important;aspect-ratio:4/3!important;object-fit:cover!important;object-position:center!important}.sf-uniform-card{height:100%}@media(max-width:767px){.sf-uniform-media,.sf-uniform-image{aspect-ratio:16/10!important}}

/* Site Fácil IA V5.7.7 — WhatsApp e ícones fiéis */
.sf-whatsapp-button{
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  gap:8px!important;
  min-height:44px!important;
  padding:11px 18px!important;
  border-radius:8px!important;
  background:#25D366!important;
  color:#fff!important;
  border:0!important;
  text-decoration:none!important;
  font-weight:800!important;
  line-height:1.1!important;
  box-shadow:none!important;
}
.sf-whatsapp-button:hover{filter:brightness(.96)}
.sf-whatsapp-floating{
  width:46px!important;
  height:46px!important;
  min-width:46px!important;
  min-height:46px!important;
  padding:0!important;
  border-radius:999px!important;
}
.sf-faithful-icon,.sf-wa-icon{
  display:inline-grid!important;
  place-items:center!important;
  flex:0 0 auto!important;
  width:20px!important;
  height:20px!important;
}
.sf-whatsapp-floating .sf-wa-icon{width:22px!important;height:22px!important}
.sf-faithful-icon svg,.sf-wa-icon svg,.sf-faithful-icon-host svg{
  width:100%!important;
  height:100%!important;
  display:block!important;
}
.sf-faithful-icon-host{
  display:grid!important;
  place-items:center!important;
  width:42px!important;
  height:42px!important;
  min-width:42px!important;
  min-height:42px!important;
  border-radius:999px!important;
  background:#0057c8!important;
  color:#fff!important;
}
.sf-faithful-icon-host svg{
  width:20px!important;
  height:20px!important;
  fill:none!important;
  stroke:currentColor!important;
  stroke-width:1.9!important;
  stroke-linecap:round!important;
  stroke-linejoin:round!important;
}
.sf-wa-icon svg{color:#fff!important}
@media(max-width:768px){
  .sf-whatsapp-button{min-height:42px!important;padding:10px 14px!important;font-size:13px!important}
  .sf-whatsapp-floating{width:44px!important;height:44px!important;padding:0!important}
}


/* Site Fácil IA V5.7.8 — transições suaves entre seções */
html{scroll-behavior:smooth}
.sf-motion-ready main>section,
.sf-motion-ready body>section,
.sf-motion-ready .sf-animate-section{
    opacity:0;
    transform:translate3d(0,28px,0);
    transition:opacity .72s cubic-bezier(.22,.61,.36,1),transform .72s cubic-bezier(.22,.61,.36,1);
    will-change:opacity,transform;
}
.sf-motion-ready main>section.sf-in-view,
.sf-motion-ready body>section.sf-in-view,
.sf-motion-ready .sf-animate-section.sf-in-view{
    opacity:1;
    transform:translate3d(0,0,0);
}
img{max-width:100%;height:auto}
@media(prefers-reduced-motion:reduce){
    html{scroll-behavior:auto}
    .sf-motion-ready main>section,
    .sf-motion-ready body>section,
    .sf-motion-ready .sf-animate-section{
        opacity:1!important;
        transform:none!important;
        transition:none!important;
    }
}