:root {
  --navy: #001d4a;
  --navy-2: #002b62;
  --navy-3: #031b43;
  --blue: #0758c9;
  --bright-blue: #0b66d4;
  --cyan: #27c9ee;
  --green: #079436;
  --green-light: #10a64a;
  --white: #fff;
  --surface: #f5f8fb;
  --soft-blue: #eef4f9;
  --border: #d9e1ea;
  --text: #061b3e;
  --muted: #56677d;
  --shadow: 0 3px 10px rgba(0, 29, 74, .12);
  --radius: 10px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 4%, rgba(7, 88, 201, .06), transparent 28rem),
    #f1f4f7;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.45;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  object-fit: cover;
}

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

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

button {
  font: inherit;
}

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

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

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

.site-shell {
  width: min(calc(100% - 48px), 1200px);
  margin: 32px auto;
  overflow: hidden;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 9px 30px rgba(0, 29, 74, .14);
}

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

.section {
  padding-block: 34px;
}

.section-heading h2 {
  margin-bottom: 20px;
  color: var(--navy);
  font-size: clamp(23px, 2.4vw, 30px);
  line-height: 1.1;
}

.section-heading h2 span {
  color: var(--blue);
}

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

/* Header */
.site-header {
  position: relative;
  z-index: 20;
  display: flex;
  min-height: 88px;
  color: var(--white);
  background: var(--navy);
}

.brand-panel {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  flex: 0 0 252px;
  padding: 9px 24px 9px 30px;
  color: var(--navy);
  background: var(--white);
  clip-path: polygon(0 0, 82% 0, 100% 100%, 0 100%);
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 156px;
  min-height: 65px;
  line-height: 1;
}

.brand-gm {
  position: relative;
  color: #0758c9;
  font-size: 52px;
  font-weight: 900;
  letter-spacing: -9px;
}

.brand-gm span {
  color: var(--navy);
}

.brand-water {
  position: absolute;
  top: 1px;
  left: 61px;
  color: #0fbde5;
  font-size: 22px;
  transform: rotate(-12deg);
}

.brand-name {
  align-self: flex-end;
  margin: 0 0 7px 9px;
  color: currentColor;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: -.2px;
  line-height: .9;
  text-transform: uppercase;
}

.header-content {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-width: 0;
  padding: 14px 24px 14px 6px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.2vw, 34px);
  font-size: 13px;
  font-weight: 600;
}

.desktop-nav a {
  position: relative;
  padding-block: 10px;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  background: #2ea5ff;
  content: "";
  transform: scaleX(0);
  transition: transform .2s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  transform: scaleX(1);
}

.header-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  padding: 10px 14px;
  color: var(--white);
  background: var(--green);
  border-radius: 7px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.2);
  font-size: 13px;
  font-weight: 700;
}

.whatsapp-symbol {
  display: inline-grid;
  place-items: center;
  font-size: 20px;
  font-weight: 900;
  transform: rotate(-28deg);
}

.menu-toggle,
.mobile-nav {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  min-height: 452px;
  overflow: hidden;
  background: var(--white);
}

.hero-media {
  position: absolute;
  inset: 0 0 0 40%;
  overflow: hidden;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,.94) 11%, rgba(255,255,255,.45) 30%, transparent 55%);
  content: "";
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-position: 55% center;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 452px;
  padding-block: 44px;
}

.hero-copy {
  width: 51%;
}

.hero h1 {
  max-width: 650px;
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(35px, 4.1vw, 52px);
  font-weight: 800;
  letter-spacing: -1.8px;
  line-height: 1.03;
}

.hero h1 strong {
  color: var(--blue);
  font-weight: 800;
}

.hero-copy p {
  max-width: 575px;
  margin-bottom: 26px;
  color: #263c58;
  font-size: 15px;
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 22px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 12px rgba(0, 29, 74, .18);
}

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

.button-green:hover {
  background: var(--green-light);
}

.button-outline {
  color: var(--blue);
  background: rgba(255,255,255,.88);
  border-color: var(--blue);
}

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

/* Contact */
.contact-strip,
.why-choose,
.trust-strip,
.final-cta,
.site-footer {
  color: var(--white);
  background: var(--navy-2);
}

.contact-strip {
  margin: 0 28px;
  overflow: hidden;
  border-radius: 9px;
  background:
    radial-gradient(circle at 95% 20%, rgba(56, 181, 255, .14), transparent 190px),
    var(--navy-2);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  width: 100%;
}

.contact-item {
  display: flex;
  min-height: 86px;
  align-items: center;
  gap: 13px;
  padding: 15px 28px;
}

.contact-item + .contact-item {
  border-left: 1px solid rgba(255,255,255,.34);
}

.contact-item strong,
.contact-item small {
  display: block;
}

.contact-item strong {
  font-size: 15px;
  line-height: 1.25;
}

.contact-item small {
  margin-top: 3px;
  color: rgba(255,255,255,.82);
  font-size: 12px;
}

.round-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  flex: 0 0 38px;
  color: var(--white);
  border-radius: 50%;
}

.round-icon svg {
  width: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.round-icon svg path:first-child:only-child {
  fill: currentColor;
  stroke: none;
}

.green-icon {
  color: #3ef372;
  border: 2px solid #3ef372;
}

.blue-icon {
  background: var(--blue);
  box-shadow: 0 0 14px rgba(31,150,255,.6);
}

/* Quick benefits */
.quick-benefits {
  padding: 12px 28px 0;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.quick-grid article {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px;
}

.quick-grid article + article {
  border-left: 1px solid var(--border);
}

.quick-grid p {
  margin: 0;
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
}

.quick-icon {
  display: grid;
  width: 32px;
  height: 36px;
  place-items: center;
  flex: 0 0 32px;
  color: var(--blue);
  font-size: 36px;
  font-weight: 800;
}

.quick-icon svg {
  width: 27px;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.6;
}

.quick-icon svg path:not(:first-child) {
  fill: none;
}

/* Services */
.services {
  padding-top: 38px;
}

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

.service-card {
  min-width: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.service-body {
  position: relative;
  display: flex;
  gap: 10px;
  min-height: 146px;
  padding: 19px 13px 15px;
}

.service-icon {
  position: absolute;
  top: -24px;
  left: 13px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0,29,74,.25);
  font-size: 26px;
  font-weight: 800;
}

.service-icon svg {
  width: 23px;
  fill: var(--white);
}

.service-body h3 {
  margin: 10px 0 7px;
  color: var(--navy);
  font-size: 16px;
  line-height: 1.08;
}

.service-body p {
  margin: 0;
  color: #344a65;
  font-size: 11.5px;
  line-height: 1.4;
}

.card-arrow {
  display: none;
}

/* Why choose */
.water-section {
  position: relative;
  overflow: hidden;
}

.water-bubbles {
  position: absolute;
  right: -45px;
  bottom: -80px;
  width: 350px;
  height: 230px;
  opacity: .28;
  background:
    radial-gradient(circle at 15% 50%, transparent 0 7px, #62cfff 8px 10px, transparent 11px),
    radial-gradient(circle at 31% 25%, transparent 0 5px, #fff 6px 7px, transparent 8px),
    radial-gradient(circle at 55% 55%, transparent 0 12px, #33a9eb 13px 16px, transparent 17px),
    radial-gradient(circle at 76% 28%, transparent 0 8px, #fff 9px 10px, transparent 11px),
    radial-gradient(ellipse at bottom, #0d78ce 0 23%, transparent 24%);
  transform: rotate(-8deg);
}

.why-layout {
  position: relative;
  z-index: 1;
  padding-block: 24px;
}

.why-layout h2 {
  margin-bottom: 18px;
  font-size: 23px;
}

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

.why-grid article {
  display: grid;
  place-items: center;
  min-height: 112px;
  padding: 8px 20px;
  text-align: center;
}

.why-grid article + article {
  border-left: 1px solid rgba(255,255,255,.35);
}

.why-grid span {
  min-height: 47px;
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
}

.why-grid p {
  margin: 7px 0 0;
  font-size: 14px;
  font-weight: 700;
}

/* Area */
.area-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  align-items: center;
  gap: 30px;
}

.area-copy {
  padding-left: 24px;
}

.area-copy h2 {
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 25px;
}

.area-copy h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 23px;
}

.area-copy p {
  max-width: 390px;
  color: #40536c;
  font-size: 14px;
}

.map-wrap {
  min-height: 270px;
}

.minas-map {
  width: 100%;
  max-height: 290px;
}

.map-shape {
  fill: #0754b8;
  stroke: #073f98;
  stroke-width: 5;
  stroke-linejoin: round;
}

.map-lines {
  fill: none;
  stroke: #20b9e6;
  stroke-width: 2;
  opacity: .8;
}

.target circle {
  fill: none;
  stroke: #2fd5f5;
  stroke-width: 2;
}

.target .target-core {
  fill: #fff;
  stroke: #40edff;
  stroke-width: 7;
}

/* Gallery */
.gallery {
  padding-top: 16px;
}

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

.gallery figure {
  margin: 0;
}

.gallery img {
  width: 100%;
  aspect-ratio: 5 / 3;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.gallery figcaption {
  padding: 9px 4px 0;
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

/* About */
.about {
  padding-top: 28px;
}

.about-layout {
  display: grid;
  grid-template-columns: .9fr 1.5fr;
  align-items: stretch;
  gap: 30px;
  padding: 24px;
  background: linear-gradient(120deg, #f7f9fb, #fff);
  border-radius: 8px;
}

.about-copy {
  align-self: center;
}

.about-copy h2 {
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 24px;
}

.about-copy p {
  margin-bottom: 12px;
  color: #354b67;
  font-size: 13px;
}

.about-media {
  overflow: hidden;
  border-radius: 8px;
}

.about-media img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-position: center;
}

/* Trust */
.trust-content {
  display: flex;
  align-items: center;
  gap: 25px;
  min-height: 96px;
  padding-inline: 24px;
}

.trust-icon {
  font-size: 45px;
}

.trust-content p {
  margin: 0;
  font-size: 17px;
  line-height: 1.35;
}

/* FAQ */
.faq-container {
  max-width: 1060px;
}

.accordion {
  display: grid;
  gap: 7px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 7px;
  box-shadow: 0 2px 5px rgba(0,29,74,.05);
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  display: grid;
  grid-template-columns: 27px 1fr 24px;
  width: 100%;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  color: var(--navy);
  background: var(--white);
  border: 0;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  text-align: left;
}

.faq-item button:hover {
  background: var(--soft-blue);
}

.question-icon {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
  font-size: 12px;
}

.faq-chevron {
  color: var(--blue);
  font-size: 20px;
  text-align: center;
  transition: transform .2s ease;
}

.faq-item button[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 54px 14px;
  color: var(--muted);
  background: var(--white);
  font-size: 13px;
}

.faq-answer p {
  margin: 0;
}

/* Final CTA */
.final-cta {
  margin: 0 6px;
  border-radius: 14px 14px 0 0;
}

.final-cta-layout {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 170px;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: 28px 50px;
}

.final-cta h2 {
  margin-bottom: 10px;
  font-size: 31px;
  line-height: 1.05;
}

.final-cta p {
  margin: 0;
  color: rgba(255,255,255,.86);
  font-size: 13px;
}

.button-large {
  min-width: 330px;
  min-height: 62px;
  font-size: 21px;
}

/* Footer */
.site-footer {
  padding: 29px 0 12px;
  background: var(--navy);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr 1.15fr .85fr;
}

.footer-grid > div {
  min-height: 125px;
  padding: 0 28px;
}

.footer-grid > div:first-child {
  padding-left: 0;
}

.footer-grid > div + div {
  border-left: 1px solid rgba(255,255,255,.28);
}

.brand-light {
  color: var(--white);
}

.brand-light .brand-gm,
.brand-light .brand-gm span {
  color: var(--white);
}

.footer-brand p {
  margin: 5px 0 0;
  color: rgba(255,255,255,.85);
  font-size: 12px;
}

.footer-column h2,
.footer-nav strong,
.social-links strong {
  display: block;
  margin-bottom: 18px;
  font-size: 14px;
}

.footer-column p,
.footer-column a {
  margin: 0;
  color: rgba(255,255,255,.84);
  font-size: 12px;
  line-height: 1.55;
}

.footer-symbol {
  margin-right: 7px;
  color: #3bf174;
  font-size: 18px;
}

.footer-lower {
  display: flex;
  justify-content: center;
  gap: 70px;
  padding: 22px 0 16px;
  border-top: 1px solid rgba(255,255,255,.16);
}

.footer-nav div {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 5px 30px;
}

.footer-nav a {
  color: rgba(255,255,255,.8);
  font-size: 12px;
}

.social-links div {
  display: flex;
  gap: 14px;
}

.social-links a {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
  font-size: 19px;
  font-weight: 800;
}

.social-links a:first-child {
  background: #f02b68;
}

.copyright {
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.2);
  text-align: center;
}

.copyright p {
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 11px;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
  display: grid;
  width: 55px;
  height: 55px;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 7px 18px rgba(0,0,0,.25);
  font-size: 29px;
}

/* Tablet */
@media (max-width: 1024px) {
  .site-shell {
    width: calc(100% - 24px);
    margin-block: 12px;
  }

  .brand-panel {
    flex-basis: 205px;
    padding-left: 18px;
  }

  .desktop-nav {
    gap: 14px;
    font-size: 11px;
  }

  .header-whatsapp span:last-child {
    display: none;
  }

  .hero-copy {
    width: 58%;
  }

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

  .contact-item {
    padding-inline: 18px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  body {
    background: #edf2f6;
  }

  .site-shell {
    width: min(calc(100% - 20px), 430px);
    margin: 10px auto;
    border-radius: 14px;
  }

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

  .section {
    padding-block: 25px;
  }

  .site-header {
    display: grid;
    grid-template-columns: 1fr auto;
    min-height: 70px;
  }

  .brand-panel {
    flex-basis: auto;
    min-width: 150px;
    padding: 5px 8px 5px 14px;
    color: var(--white);
    background: var(--navy);
    clip-path: none;
  }

  .brand {
    width: 125px;
    min-height: 56px;
  }

  .brand-gm {
    color: var(--white);
    font-size: 43px;
  }

  .brand-gm span {
    color: var(--white);
  }

  .brand-water {
    left: 50px;
    font-size: 18px;
  }

  .brand-name {
    margin-left: 7px;
    font-size: 8px;
  }

  .header-content {
    gap: 15px;
    padding: 10px 14px 10px 8px;
  }

  .desktop-nav {
    display: none;
  }

  .header-whatsapp {
    width: 36px;
    height: 36px;
    justify-content: center;
    padding: 0;
    background: transparent;
    border: 2px solid #35dc68;
    border-radius: 50%;
  }

  .header-whatsapp span:last-child {
    display: none;
  }

  .menu-toggle {
    display: grid;
    width: 34px;
    height: 34px;
    place-content: center;
    gap: 5px;
    padding: 0;
    background: transparent;
    border: 0;
    cursor: pointer;
  }

  .menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--white);
    transition: transform .2s, opacity .2s;
  }

  .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);
  }

  .mobile-nav {
    grid-column: 1 / -1;
    padding: 5px 14px 14px;
    background: var(--navy);
    border-top: 1px solid rgba(255,255,255,.14);
  }

  .mobile-nav:not([hidden]) {
    display: grid;
  }

  .mobile-nav a {
    padding: 10px;
    border-bottom: 1px solid rgba(255,255,255,.12);
    font-size: 13px;
  }

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

  .hero-media {
    position: relative;
    inset: auto;
    order: 0;
    width: 100%;
    aspect-ratio: 16 / 7.2;
  }

  .hero-media::after {
    background: linear-gradient(0deg, rgba(255,255,255,.18), transparent 40%);
  }

  .hero-media img {
    object-position: 56% 55%;
  }

  .hero-content {
    order: 1;
    min-height: 0;
    padding-block: 14px 20px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero h1 {
    margin-bottom: 9px;
    font-size: 28px;
    letter-spacing: -.8px;
    line-height: 1.02;
  }

  .hero-copy p {
    margin-bottom: 13px;
    font-size: 12px;
    line-height: 1.35;
  }

  .hero-actions {
    display: grid;
    gap: 7px;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 40px;
    padding: 8px 14px;
    font-size: 12px;
  }

  .contact-strip {
    margin: 0 10px;
  }

  .contact-grid {
    display: block;
    width: 100%;
  }

  .contact-item {
    min-height: 54px;
    gap: 10px;
    padding: 8px 12px;
  }

  .contact-item + .contact-item {
    border-top: 1px solid rgba(255,255,255,.28);
    border-left: 0;
  }

  .contact-item strong {
    font-size: 11px;
  }

  .contact-item small {
    margin-top: 0;
    font-size: 9px;
  }

  .round-icon {
    width: 29px;
    height: 29px;
    flex-basis: 29px;
  }

  .round-icon svg {
    width: 17px;
  }

  .quick-benefits {
    padding: 9px 8px 0;
  }

  .quick-grid {
    width: 100%;
    box-shadow: none;
  }

  .quick-grid article {
    display: grid;
    min-height: 74px;
    align-content: center;
    gap: 3px;
    padding: 5px 2px;
    text-align: center;
  }

  .quick-grid p {
    font-size: 8px;
    line-height: 1.1;
  }

  .quick-icon {
    width: 24px;
    height: 29px;
    margin: auto;
    font-size: 27px;
  }

  .quick-icon svg {
    width: 21px;
  }

  .services {
    padding-top: 20px;
  }

  .section-heading h2 {
    margin-bottom: 14px;
    font-size: 21px;
  }

  .services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .service-card {
    display: grid;
    grid-template-columns: 72px 1fr;
    min-height: 58px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,29,74,.08);
  }

  .service-card > img {
    width: 72px;
    height: 100%;
    min-height: 58px;
    aspect-ratio: auto;
    border-radius: 0;
  }

  .service-body {
    position: static;
    min-height: 58px;
    align-items: center;
    gap: 7px;
    padding: 6px 8px;
  }

  .service-icon {
    position: static;
    width: 29px;
    height: 29px;
    flex: 0 0 29px;
    border-width: 1px;
    font-size: 16px;
  }

  .service-icon svg {
    width: 15px;
  }

  .service-body h3 {
    margin: 0;
    font-size: 11px;
    line-height: 1.12;
  }

  .service-body p {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .card-arrow {
    display: block;
    margin-left: auto;
    color: var(--blue);
    font-size: 20px;
  }

  .why-layout {
    width: 100%;
    padding: 15px 9px;
  }

  .why-layout h2 {
    margin-bottom: 8px;
    font-size: 15px;
    text-align: center;
  }

  .why-grid article {
    min-height: 78px;
    padding: 4px;
  }

  .why-grid span {
    min-height: 30px;
    font-size: 27px;
  }

  .why-grid p {
    margin-top: 3px;
    font-size: 8px;
    line-height: 1.2;
  }

  .area-layout {
    grid-template-columns: .95fr 1.05fr;
    gap: 7px;
  }

  .area-copy {
    padding-left: 0;
  }

  .area-copy h2 {
    margin-bottom: 8px;
    font-size: 18px;
  }

  .area-copy h3 {
    margin-bottom: 6px;
    font-size: 13px;
  }

  .area-copy p {
    margin: 0;
    font-size: 9px;
    line-height: 1.35;
  }

  .map-wrap {
    min-height: 115px;
  }

  .gallery {
    padding-top: 12px;
  }

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

  .gallery figcaption {
    padding-top: 5px;
    font-size: 9px;
    line-height: 1.15;
  }

  .about {
    padding-top: 18px;
  }

  .about-layout {
    grid-template-columns: 1.1fr .9fr;
    gap: 8px;
    width: 100%;
    padding: 14px;
    border-radius: 0;
  }

  .about-copy h2 {
    margin-bottom: 7px;
    font-size: 15px;
    line-height: 1.1;
  }

  .about-copy p {
    margin-bottom: 8px;
    font-size: 8.5px;
    line-height: 1.4;
  }

  .about-copy p:nth-of-type(2) {
    display: none;
  }

  .about-copy .button {
    min-height: 31px;
    padding: 6px 10px;
    font-size: 9px;
  }

  .about-media img {
    min-height: 150px;
  }

  .trust-content {
    min-height: 90px;
    gap: 15px;
    padding-inline: 14px;
  }

  .trust-icon {
    font-size: 34px;
  }

  .trust-content p {
    font-size: 11px;
    line-height: 1.35;
  }

  .faq {
    padding-block: 18px;
  }

  .faq .section-heading {
    text-align: center;
  }

  .faq-item button {
    grid-template-columns: 22px 1fr 20px;
    gap: 6px;
    padding: 8px 9px;
    font-size: 9px;
  }

  .question-icon {
    width: 17px;
    height: 17px;
    font-size: 9px;
  }

  .faq-answer {
    padding: 0 38px 10px;
    font-size: 9px;
  }

  .final-cta {
    margin: 0;
    border-radius: 10px 10px 0 0;
  }

  .final-cta-layout {
    display: block;
    min-height: 0;
    padding: 23px 18px;
  }

  .final-cta h2 {
    margin-bottom: 8px;
    font-size: 20px;
  }

  .final-cta p {
    margin-bottom: 15px;
    font-size: 9px;
  }

  .button-large {
    width: auto;
    min-width: 0;
    min-height: 40px;
    padding: 8px 16px;
    font-size: 11px;
  }

  .site-footer {
    padding-top: 18px;
  }

  .footer-grid {
    display: block;
  }

  .footer-grid > div,
  .footer-grid > div:first-child {
    min-height: 0;
    padding: 13px 0;
  }

  .footer-grid > div + div {
    border-top: 1px solid rgba(255,255,255,.18);
    border-left: 0;
  }

  .footer-brand {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .footer-brand .brand {
    width: 125px;
  }

  .footer-brand p {
    font-size: 10px;
    text-align: right;
  }

  .footer-column h2 {
    margin-bottom: 7px;
    font-size: 11px;
  }

  .footer-column p,
  .footer-column a {
    font-size: 10px;
  }

  .footer-lower {
    display: block;
    padding: 15px 0;
  }

  .footer-nav {
    margin-bottom: 16px;
  }

  .footer-nav strong,
  .social-links strong {
    margin-bottom: 9px;
    font-size: 11px;
  }

  .footer-nav div {
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
  }

  .footer-nav a {
    font-size: 9px;
  }

  .social-links a {
    width: 27px;
    height: 27px;
    font-size: 16px;
  }

  .copyright p {
    font-size: 8px;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 48px;
    height: 48px;
    font-size: 25px;
  }
}

@media (max-width: 360px) {
  .hero h1 {
    font-size: 25px;
  }

  .about-layout {
    grid-template-columns: 1fr;
  }

  .about-media {
    order: -1;
  }

  .about-media img {
    min-height: 130px;
    aspect-ratio: 16 / 7;
  }

  .area-layout {
    grid-template-columns: 1fr;
  }

  .map-wrap {
    min-height: 150px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !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.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;
    }
}