:root {
  --green: #063f21;
  --green-2: #0b6b34;
  --yellow: #fbff00;
  --brown: #724100;
  --cream: #eef3ff;
  --text: #1f2a24;
  --muted: #6d766f;
  --white: #fff;
  --blue: #1f365f;
  --blue-2: #1f365f;
  --blue-3: #18b4f9;
  --radius: 22px;
  --shadow: 0 22px 55px rgba(0, 0, 0, 0.16);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.55;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}
.topbar {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 5px 24px rgba(0, 0, 0, 0.08);
}
.nav {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand img {
  height: 48px;
}
.menu {
  display: flex;
  gap: 25px;
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
}
.menu a:hover {
  color: var(--blue-3);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--blue);
  color: var(--white);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  border: none;
  border-radius: 999px;
  padding: 15px 28px;
  box-shadow: 0 8px 0 rgba(0, 0, 0, 0.08);
  cursor: pointer;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn-small {
  padding: 10px 18px;
  font-size: 12px;
}
.btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--blue-3);
  color: var(--white);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  border: none;
  border-radius: 999px;
  padding: 15px 28px;
  box-shadow: 0 8px 0 rgba(0, 0, 0, 0.08);
  cursor: pointer;
}
.link-action {
  color: #fff;
  font-weight: 800;
  border-bottom: 2px solid var(--blue-3);
}
.menu-toggle {
  display: none;
  background: var(--blue);
  color: #fff;
  border: 0;
  border-radius: 10px;
  padding: 9px 12px;
  font-size: 22px;
}
.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  margin-top: 78px;
  color: #fff;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 48, 24, 0.82), rgba(0, 48, 24, 0.42)),
    url("../img/bgtopo.jpg") center/cover;
}
.hero:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 140px;
  background: var(--blue-3);
  clip-path: polygon(0 45%, 100% 18%, 100% 100%, 0 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  margin-top: -100px;
}
.eyebrow {
  font-size: 13px;
  color: var(--white);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.section-kicker {
  font-size: 13px;
  color: var(--blue-3);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.hero h1 {
  font-size: clamp(48px, 8vw, 80px);
  line-height: 0.92;
  margin: 18px 0;
  text-transform: uppercase;
  max-width: 720px;
}
.hero p {
  font-size: 20px;
  max-width: 650px;
}
.hero-actions {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  margin: 32px 0;
}
.microcopy {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-weight: 800;
}
.feature-strip {
  background: var(--blue-3);
  padding: 0 0 70px;
}
.cards-overlap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  transform: translateY(-12px);
  margin-bottom: -12px;
}
.image-card {
  background: #fff;
  border-radius: 18px;
  padding: 10px;
  box-shadow: var(--shadow);
  border-bottom: 8px solid var(--blue);
}
.image-card img {
  height: 210px;
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
}
.image-card h3 {
  text-align: center;
  color: var(--blue);
  font-size: 18px;
}
.section {
  padding: 100px 0;
}
.split,
.media-split,
.contact-grid,
.faq-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.split.reverse {
  grid-template-columns: 0.95fr 1.05fr;
}
.center {
  text-align: center;
}
.section h2 {
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.04;
  margin: 12px 0 18px;
}
.section-lead {
  max-width: 720px;
  margin: 0 auto 38px;
  color: var(--muted);
}
.problem {
  background: #fff;
}
.ttlcon {
    margin: 0 0 35px 0;
    text-align: center;
    color: #fff;
}
.stats-card {
  background: var(--blue);
  color: #fff;
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
  position: relative;
}
.stats-card:before {
  content: "";
  position: absolute;
  right: -22px;
  top: -22px;
  width: 110px;
  height: 110px;
  background: var(--blue-3);
  border-radius: 18px;
  z-index: -1;
}
.stats-card strong {
  font-size: 58px;
  color: var(--white);
  display: block;
}
.stats-card ul {
  margin: 22px 0 0;
  padding-left: 20px;
}
.services {
  background: var(--cream);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 42px;
}
.service-grid article {
  background: var(--blue);
  color: #fff;
  border-radius: 18px;
  padding: 32px 22px;
  min-height: 230px;
  box-shadow: var(--shadow);
}
.service-grid span {
  width: 58px;
  height: 58px;
  background: var(--blue-3);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 27px;
}
.service-grid h3 {
  font-size: 20px;
}
.nature {
  padding-bottom: 40px;
}
.media-card img {
  height: 550px;
  width: 100%;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.benefits-bar {
  background: var(--blue);
  color: #fff;
  border-radius: 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  transform: translateY(-45px);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.benefits-bar div {
  padding: 26px;
  background: rgba(0, 0, 0, 0.08);
}
.benefits-bar strong {
  color: var(--cream);
  display: block;
}
.authority {
  background: #fff;
}
.badge-card {
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: #fff;
  border-radius: 30% 30% 20px 20px;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 35px;
  box-shadow: var(--shadow);
}
.badge-card strong {
  font-size: 60px;
  color: var(--white);
}
.badge-card h4 {
  font-size: 38px;
  line-height: 40px;
}
.icon-row {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  font-weight: 800;
  color: var(--blue);
}
.gallery-band {
  background: var(--blue);
  padding: 80px 0;
  color: #fff;
  overflow: hidden;
}
.light-text h2 {
  color: #fff;
}
.gallery-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 45px 20px 0;
}
.gallery-row img {
  height: 245px;
  width: 100%;
  object-fit: cover;
  border-radius: 18px;
}
.offer {
  background: var(--cream);
}
.offer-box {
  background: #fff;
  border-radius: 28px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 0.75fr auto;
  gap: 30px;
  align-items: center;
  box-shadow: var(--shadow);
}
.offer-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-weight: 800;
  color: var(--blue);
}
.faq {
  background: #fff;
}
.accordion button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  border: 0;
  background: var(--blue);
  color: #fff;
  margin: 10px 0;
  border-radius: 10px;
  font-weight: 900;
  text-align: left;
}
.panel {
  display: none;
  padding: 0 20px 18px;
  color: var(--muted);
}
.panel.open {
  display: block;
}
.help-card {
  background: var(--blue);
  color: #fff;
  border-radius: 24px;
  padding: 16px 16px 28px;
  box-shadow: var(--shadow);
}
.help-card img {
  height: 300px;
  width: 100%;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 22px;
}
.help-card h3,
.help-card p {
  padding: 0 12px;
}
.contact-section {
  background: var(--cream);
}
.contact-visual {
  position: relative;
}
.contact-visual img {
  height: 680px;
  width: 100%;
  object-fit: cover;
  border-radius: 30px;
}
.blue-3-block {
  height: 190px;
  background: var(--blue-3);
  border-radius: 0 0 22px 22px;
  margin-top: 18px;
}
.lead-form {
  background: var(--blue);
  color: #fff;
  border-radius: 26px;
  padding: 42px;
  box-shadow: var(--shadow);
}
.lead-form .section-kicker {
  color: var(--blue-3);
}
.lead-form h2 {
  font-size: 38px;
  color: #fff;
}
.lead-form label {
  display: block;
  font-weight: 800;
  font-size: 13px;
  margin: 14px 0;
}
.lead-form input {
  width: 100%;
  margin-top: 7px;
  border: 0;
  border-radius: 999px;
  padding: 16px 18px;
  background: var(--white);
  color: #000000;
  outline: 2px solid transparent;
}
.lead-form input:focus {
  outline-color: var(--blue-3);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.lead-form small {
  display: block;
  margin-top: 16px;
  color: #d8efe0;
}
.footer {
  background: var(--blue);
  color: #fff;
  padding: 42px 0;
}
.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
footer#footer {
    background-size: cover;
    background-attachment: fixed;
    padding: 30px 0px 40px;
    min-height: 420px;
    position: relative;
    z-index: 9;
}
div#footer-sidebar, .footcopyrt {
    z-index: 19;
    position: relative;
}
.icon1 {
    background: #18b4f9;
    width: 60px;
    height: 60px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    --g: /20.56% 20.56% radial-gradient(#000 calc(71% - 1px),#0000 71%) no-repeat;
    mask: 100% 50% var(--g), 93.301% 75% var(--g), 75% 93.301% var(--g), 50% 100% var(--g), 25% 93.301% var(--g), 6.699% 75% var(--g), 0% 50% var(--g), 6.699% 25% var(--g), 25% 6.699% var(--g), 50% 0% var(--g), 75% 6.699% var(--g), 93.301% 25% var(--g), radial-gradient(100% 100%, #000 38.366%, #0000 calc(38.366% + 1px));
}
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: var(--shadow);
}
.row {
    display: flex;
    color: #fff;
}
.col-md-4 {
    width: 34%;
    padding: 0 20px;
}
.maskbottom {
    background: #0d244de6;
    mix-blend-mode: initial;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}
ul.iconsrede li a {
    color: #18b4f9;
    border: 2px solid;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    font-size: 20px;
    line-height: 19px;
}
ul.iconsrede li {
    display: inline-flex;
    padding-left: 0px;
}
ul.iconsrede {
    list-style: none;
    padding-left: 0px;
}
.nlojas a {
    display: block;
    color: #fff;
    padding: 10px 5px;
    transition: all .2s;
}
.nlojas a:hover {
    padding-left: 15px;
}


@media (max-width: 900px) {
  .menu,
  .nav > .btn {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .menu.open {
    display: flex;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 24px;
  }
  .hero {
    min-height: 690px;
  }
  .cards-overlap,
  .service-grid,
  .split,
  .media-split,
  .contact-grid,
  .faq-grid,
  .offer-box,
  .benefits-bar {
    grid-template-columns: 1fr;
  }
  .service-grid {
    gap: 16px;
  }
  .gallery-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .offer-box {
    text-align: center;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    flex-direction: column;
    text-align: center;
  }
  .hero h1 {
    font-size: 52px;
  }
  .section {
    padding: 70px 0;
  }
}
@media (max-width: 560px) {
  .gallery-row {
    grid-template-columns: 1fr;
  }
  .cards-overlap {
    transform: translateY(-40px);
  }
  .lead-form {
    padding: 28px;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .benefits-bar {
    transform: none;
    margin-top: 24px;
  }
  .section h2 {
    font-size: 34px;
  }
}
