:root {
  --background: #ffffff;
  --foreground: #203134;
  --primary: #4cafa4;
  --primary-light: #dff4f2;
  --primary-dark: #2d7b74;
  --accent: #ce3570;
  --sand: #efe6d6;
  --sand-soft: #f7f1e7;
  --gold: #cfa13a;
  --blue-soft: #7fb0d2;
  --line: #9fc9e5;
  --muted: #64777a;
  --card: #ffffff;
  --shadow: 0 20px 45px rgba(32, 49, 52, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--foreground);
  background: var(--background);
  font-family: "Inter", system-ui, sans-serif;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(1200px, calc(100% - 36px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 16px 0;
  background: #f5f5f5;
  border-top: 4px solid var(--primary-dark);
}

.header-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 12px 14px 12px 22px;
  border-radius: 0 0 10px 10px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(32, 49, 52, 0.08);
}

.brand img {
  width: auto;
  height: 78px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--primary);
  border-radius: 8px;
  background: var(--primary-light);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--primary-dark);
}

.menu-toggle span + span {
  margin-top: 6px;
}

.mobile-nav {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 7px;
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--primary);
  box-shadow: 0 14px 28px rgba(76, 175, 164, 0.22);
}

.button-gold {
  background: var(--gold);
  box-shadow: 0 14px 28px rgba(207, 161, 58, 0.24);
}

.button-outline {
  color: var(--primary-dark);
  border: 1px solid var(--primary);
  background: transparent;
}

.hero {
  position: relative;
  padding-bottom: 72px;
  background: linear-gradient(90deg, #f8f8f8 0 50%, var(--sand-soft) 50% 100%);
}

.hero-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 660px;
  overflow: hidden;
  background: #fff;
}

.hero-copy {
  display: grid;
  align-content: center;
  padding: 70px 60px;
}

.eyebrow {
  color: var(--primary-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1,
.section-title,
.about-copy h2,
.cta-copy h2,
.blog-title {
  margin: 0;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero h1 {
  max-width: 11ch;
  margin-top: 34px;
  font-size: clamp(3.4rem, 6vw, 5rem);
}

.hero h1 strong,
.section-title strong,
.about-copy h2 strong,
.cta-copy h2 strong,
.blog-title strong {
  color: var(--primary);
}

.hero p {
  max-width: 520px;
  margin: 22px 0 28px;
  color: #263b3f;
  font-size: 1.05rem;
  line-height: 1.45;
}

.hero-image {
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.down-link {
  position: absolute;
  left: 50%;
  bottom: 30px;
  display: grid;
  gap: 0;
  transform: translateX(-50%);
}

.down-link span {
  width: 46px;
  height: 46px;
  border-right: 10px solid var(--primary);
  border-bottom: 10px solid var(--primary);
  transform: rotate(45deg);
}

.section {
  padding: 72px 0;
}

.services-band,
.benefits-band,
.footer-contact {
  background: var(--sand);
}

.section-title,
.blog-title {
  margin-bottom: 44px;
  text-align: center;
  font-size: clamp(2.1rem, 4vw, 3rem);
}

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

.service-card {
  padding: 30px;
  border-radius: 10px;
  color: #fff;
  background: var(--blue-soft);
  box-shadow: 0 18px 26px rgba(30, 70, 90, 0.15);
}

.card-line {
  width: 100px;
  height: 3px;
  margin-bottom: 18px;
  background: #fff;
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  margin-bottom: 20px;
}

.service-card h3 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  line-height: 1.05;
}

.service-card p {
  min-height: 72px;
  margin: 18px 0;
  line-height: 1.35;
}

.service-card a,
.blog-card a {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 6px;
  color: #fff;
  background: var(--gold);
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
}

.about-section {
  padding: 72px 0;
  background: #fff;
}

.about-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--sand);
}

.about-photo img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  object-position: top center;
}

.about-copy {
  align-self: center;
  padding: 70px 70px;
}

.about-copy h2 {
  margin-top: 18px;
  font-size: clamp(2.1rem, 4vw, 3rem);
}

.about-copy p {
  margin: 22px 0 0;
  line-height: 1.48;
}

.about-copy ul {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.about-copy li {
  margin: 6px 0;
}

.about-copy li::before {
  content: "✓";
  margin-right: 5px;
  color: var(--primary-dark);
  font-weight: 900;
}

.about-copy .button {
  margin-top: 28px;
}

.benefits-band {
  padding: 70px 0 82px;
}

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

.benefits-grid article {
  padding: 34px 26px 26px;
  border-radius: 18px;
  background: #fff;
  text-align: center;
}

.benefits-grid span {
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 999px;
  background: var(--blue-soft);
}

.benefits-grid span::after {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  margin: 11px auto 0;
  border-right: 7px solid #fff;
  border-bottom: 7px solid #fff;
  transform: rotate(45deg);
}

.benefits-grid h3 {
  margin: 22px 0 18px;
  color: var(--blue-soft);
  font-size: 1rem;
}

.benefits-grid p {
  line-height: 1.35;
}

.boxed-section {
  padding: 52px 28px;
  border: 1px solid var(--blue-soft);
  border-radius: 22px;
  background: #fff;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.review-grid button {
  padding: 0;
  border: 0;
  border-radius: 10px;
  background: #f4f4f4;
  overflow: hidden;
  cursor: zoom-in;
}

.review-grid img {
  width: 100%;
}

.center-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 32px;
}

.cta-section {
  padding: 0 0 72px;
  background: linear-gradient(180deg, #fff 0 72px, var(--sand) 72px 100%);
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border-radius: 0 0 28px 28px;
  background: #101010;
}

.cta-photo img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: top center;
}

.cta-copy {
  align-self: center;
  padding: 60px 54px;
  color: #fff;
}

.cta-copy h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.cta-copy ul {
  display: grid;
  gap: 18px;
  margin: 30px 0;
  padding: 0;
  list-style: none;
  font-weight: 700;
}

.blog-box {
  text-align: left;
}

.blog-title {
  margin-bottom: 20px;
  text-align: left;
}

.blog-card {
  display: grid;
  grid-template-columns: 370px 1fr;
  gap: 26px;
  max-width: 780px;
  padding: 26px;
  background: #fff;
  box-shadow: 0 8px 16px rgba(32, 49, 52, 0.12);
}

.blog-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.blog-card h3 {
  margin: 0 0 12px;
  font-size: 1.5rem;
}

.blog-card p {
  margin: 0 0 18px;
  line-height: 1.45;
}

.footer-contact {
  padding: 88px 0;
}

.footer-contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1.15fr;
  gap: 90px;
  padding: 70px 0;
  border-top: 1px solid var(--blue-soft);
  border-bottom: 1px solid var(--blue-soft);
}

.footer-logo {
  width: 160px;
  height: auto;
}

.footer-contact p {
  max-width: 360px;
  margin: 28px 0;
  font-weight: 700;
  line-height: 1.35;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-weight: 700;
}

.contact-list li::before {
  content: "✓";
  margin-right: 10px;
  color: var(--blue-soft);
}

.footer-contact h3 {
  margin: 0 0 24px;
  color: var(--blue-soft);
  font-size: 1.7rem;
}

.footer-contact a {
  display: block;
  margin-bottom: 24px;
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 8px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #8c9baa;
  background: #fff;
  outline: none;
}

.contact-form button {
  min-height: 42px;
  border: 0;
  color: #fff;
  background: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.site-footer {
  color: #fff;
  background: var(--blue-soft);
}

.site-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 54px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: #fff;
}

.whatsapp-float {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 50;
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: 999px;
  color: #fff;
  background: #22c55e;
  box-shadow: 0 16px 30px rgba(34, 197, 94, 0.3);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 18px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.75);
}

.modal-card {
  position: relative;
  width: min(900px, 100%);
  max-height: 90vh;
  padding: 12px;
  border-radius: 14px;
  background: #fff;
  overflow: auto;
}

.modal-card img {
  width: 100%;
  max-height: 85vh;
  object-fit: contain;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .mobile-nav {
    display: grid;
    max-height: 0;
    overflow: hidden;
    background: #fff;
    transition: max-height 0.25s ease;
  }

  .menu-open .mobile-nav {
    max-height: 520px;
  }

  .mobile-nav a {
    padding: 14px 24px;
    border-top: 1px solid #e8eef1;
    font-weight: 800;
    text-transform: uppercase;
  }

  .hero-panel,
  .about-panel,
  .cta-panel,
  .footer-contact-grid {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .benefits-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    background: #fff;
  }

  .hero-panel {
    min-height: auto;
  }

  .hero-copy,
  .about-copy,
  .cta-copy {
    padding: 42px 24px;
  }

  .hero-image img,
  .about-photo img,
  .cta-photo img {
    height: 480px;
  }

  .footer-contact-grid {
    gap: 36px;
  }

  .blog-card {
    grid-template-columns: 1fr;
  }

  .site-footer .container {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }
}
```css
/* ANIMAÇÕES */

.hidden {
  opacity: 0;
  transform: translateY(40px);
  transition: all .8s ease;
}

.show {
  opacity: 1;
  transform: translateY(0);
}

/* MAPA */

.location-box iframe {
  margin-top: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

/* FORM */

#form-status {
  margin-top: 12px;
  font-weight: 700;
}

.lgpd-box {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 10px;
  font-size: .9rem;
}

/* HOVER */

.service-card,
.benefits-grid article,
.review-grid button,
.button {
  transition: all .3s ease;
}

.service-card:hover,
.benefits-grid article:hover {
  transform: translateY(-6px);
}

/* SCROLLBAR */

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 30px;
}

/* INSTAGRAM FLOAT */

.instagram-float {
  position: fixed;
  bottom: 100px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #E1306C;
  border-radius: 50%;
  display: grid;
  place-items: center;
  z-index: 999;
  color: #fff;
  font-size: 26px;
  box-shadow: 0 10px 30px rgba(0,0,0,.2);
}
