﻿:root {
  --navy: #06265b;
  --deep: #021840;
  --green: #6ba919;
  --lime: #89ca35;
  --muted: #596c85;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--navy);
  background: #fff;
  font-family: Arial, sans-serif;
}
a {
  text-decoration: none;
  color: inherit;
}
.shell {
  width: min(1180px, calc(100% - 48px));
  margin: auto;
}

.header {
  height: 94px;
  display: flex;
  align-items: center;
  gap: 34px;
  position: relative;
  z-index: 3;
}
.logo {
  width: 210px;
  flex-shrink: 0;
  height: 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.logo img {
  width: 200px;
  height: auto;
  object-fit: contain;
}
.header nav {
  display: flex;
  gap: 27px;
  margin-left: auto;
}
.header nav a {
  position: relative;
  font-size: 0.85rem;
  text-transform: uppercase;
  font-weight: 800;
}
.header nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 2px;
  border-radius: 999px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}
.header nav a:hover::after,
.header nav a:focus-visible::after {
  transform: scaleX(1);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 25px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, #7dbb2e, #5d970f);
  font-size: 0.85rem;
  text-transform: uppercase;
  font-weight: 800;
  box-shadow: 0 10px 26px #47791f2e;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    filter 0.28s ease;
}
.btn:hover,
.btn:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px #47791f52;
  filter: brightness(1.08) saturate(1.08);
}
.btn:active {
  transform: translateY(-1px) scale(0.98);
  box-shadow: 0 8px 18px #47791f3d;
}
.btn.top {
  gap: 0px;
}
.btn.top img {
  width: 25px;
  height: 25px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: transform 0.25s ease;
}
.btn.top:hover img,
.btn.top:focus-visible img {
  transform: translateX(3px);
}
.header details {
  display: none;
}
.heroGrid {
  height: 550px;
  display: grid;
  grid-template-columns: 43% 57%;
  align-items: center;
}
.heroCopy span,
.heading span,
.techText span,
.finalGrid > div > span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  color: var(--green);
}
.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  margin: 12px 0 20px;
}
.hero h1 em {
  font-style: normal;
  color: var(--green);
}
.heroCopy > p {
  font-size: 1rem;
  line-height: 1.65;
  color: #38506d;
  max-width: 500px;
}
.actions {
  display: flex;
  align-items: center;
  gap: 23px;
  margin-top: 27px;
}
.video {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  padding: 13px 20px;
  border: 1px solid #96d447;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--lime), var(--green));
  box-shadow: 0 10px 26px #47791f3d;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-weight: 800;
  margin-top: 18px;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    filter 0.28s ease;
}
.video:hover,
.video:focus-visible {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 16px 32px #47791f59;
  filter: brightness(1.08) saturate(1.08);
}
.video:active {
  transform: translateY(-1px) scale(0.98);
  box-shadow: 0 8px 18px #47791f3d;
}
.video img {
  width: 25px;
  height: 25px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}
.video:hover img,
.video:focus-visible img {
  transform: scale(1.12);
}
.heroPic {
  height: 100%;
}
.benefits {
  margin-top: -80px;
  position: relative;
  z-index: 4;
  background: #fff;
  border-radius: 20px;
  padding: 25px 16px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
.benefits article {
  text-align: center;
  padding: 0 14px;
  border-right: 1px solid #dce6ed;
}
.benefits article:last-child {
  border: 0;
}
.benefits article > img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(56%) sepia(73%) saturate(484%) hue-rotate(41deg) brightness(92%) contrast(91%);
}
.benefits h3 {
  font-size: 0.85rem;
  text-transform: uppercase;
  min-height: 25px;
}
.benefits p {
  font-size: 0.75rem;
  line-height: 1.45;
  color: var(--muted);
}
.section {
  padding-top: 20px;
}
.heading h2 {
  font-size: 2.0625rem;
  text-transform: uppercase;
  margin: 5px 0;
}
.heading > p {
  margin: 0 0 26px;
  color: var(--muted);
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
}
.steps article {
  position: relative;
}
.scene {
  height: 150px;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(140deg, #eef4ee, #9fbea4);
}
.scene img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.step-arrow {
  position: absolute;
  z-index: 2;
  top: 72px;
  right: -40px;
  width: 30px;
  height: 30px;
  display: block;
  transform: translateY(-50%);
  filter: drop-shadow(0 1px 2px #06265b2e);
}
.s1 {
  background: linear-gradient(140deg, #e9f7ff, #8abce0);
}
.s2 {
  background: linear-gradient(140deg, #e7f2d9, #7bac62);
}
.s3 {
  background: linear-gradient(140deg, #dceeba, #4b8d48);
}
.steps h3 {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 1rem;
  margin: 13px 0 5px;
}
.steps h3 b {
  font-size: 1.3125rem;
  color: var(--green);
}
.steps article > p {
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--muted);
  /* margin-left: 39px; */
  margin-top: 5px;
}
.tower {
  position: relative;
  width: 65px;
  height: 270px;
  border-radius: 30px 30px 12px 12px;
  background: linear-gradient(90deg, #c9d4dc, #fff 48%, #d5e1e7);
  box-shadow: 0 12px 20px #051d4033;
  padding-top: 25px;
}
.tower > i {
  display: block;
  width: 42px;
  height: 31px;
  margin: 9px auto;
  background: linear-gradient(140deg, #8fd62f, #21831c);
  border-radius: 100% 0 100% 0;
  transform: rotate(25deg);
  box-shadow: -8px 5px #3f9d26;
}
.tower > b {
  position: absolute;
  bottom: -13px;
  left: -8px;
  right: -8px;
  height: 24px;
  border-radius: 7px;
  background: #e5edf1;
  box-shadow: 0 7px 16px #2ac8ff;
}
.tower.mini {
  width: 42px;
  height: 160px;
  border-radius: 20px 20px 8px 8px;
  padding-top: 17px;
}
.tower.mini > i {
  width: 25px;
  height: 16px;
  margin: 7px auto;
  box-shadow: -4px 3px #3f9d26;
}
.tower.mini > b {
  height: 14px;
  bottom: -7px;
}
.tech {
  margin-top: 40px;
  margin-bottom: 40px;
  padding: 0 0 68px;
  border-radius: 17px;
  overflow: hidden;
  position: relative;
  color: #fff;
  background: #011640;
  display: grid;
  grid-template-columns: 1.3fr 2fr 0.65fr;
  column-gap: 20px;
  align-items: center;
}
.techText {
  padding: 30px 0px 25px 30px;
}
.techText h2 {
  font-size: 1.6rem;
  line-height: 1.3;
  margin: 8px 0 14px;
}
.techText p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #d7e5f4;
}
.techText a {
  display: inline-block;
  border: 1px solid var(--lime);
  color: #9cdf4e;
  padding: 11px 20px;
  border-radius: 6px;
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 600;
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.techText a:hover,
.techText a:focus-visible {
  color: #fff;
  background: var(--green);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px #00000040;
}
.techArt {
  height: 285px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.techArt img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.tech ul {
  list-style: none;
  padding: 0;
  margin-right: 45px;
}
.tech li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.7rem;
  margin: 20px 0;
  color: #e6eef8;
}
.tech li img {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(73%) sepia(44%) saturate(725%) hue-rotate(38deg) brightness(92%) contrast(88%);
}
.stats {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 68px;
  background: #f8fbff;
  color: var(--navy);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stats div {
  display: grid;
  place-items: center;
  border: 1px solid #e1e1e1;
  padding: 8px;
}
.stats b {
  font-size: 1.5rem;
  color: var(--green);
}
.stats small {
  font-size: 0.7rem;
  font-weight: 600;
}
.apps {
  padding-bottom: 60px;
}
.uses {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 13px;
}
.use > img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 12px;
}
.use h3 {
  font-size: 0.75rem;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 5px 0 0 12px;
}
.use h3 i {
  font-style: normal;
  color: #fff;
  background: var(--green);
  border: 3px solid #fff;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  margin-top: -25px;
  position: relative;
}
.use h3 i img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.faq-cta-section {
  padding: 40px 0 40px;
}
.faq-cta {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  overflow: hidden;
  padding: 30px 34px;
}
.faq-cta::after {
  content: "?";
  position: absolute;
  right: 175px;
  top: 50%;
  color: #6ba9190d;
  font-size: 10rem;
  font-weight: 800;
  line-height: 1;
  transform: translateY(-50%) rotate(10deg);
  pointer-events: none;
}
.faq-cta__icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--lime), var(--green));
  box-shadow: 0 10px 22px #5d970f38;
  font-size: 2rem;
  font-weight: 800;
}
.faq-cta__content {
  position: relative;
  z-index: 1;
}
.faq-cta__content span {
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.faq-cta__content h2 {
  margin: 5px 0 6px;
  color: var(--navy);
  font-size: 1.55rem;
  text-transform: uppercase;
}
.faq-cta__content p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}
.faq-cta__button {
  position: relative;
  z-index: 1;
  gap: 10px;
  white-space: nowrap;
}
.faq-cta__button img {
  width: 19px;
  height: 19px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.final {
  background-color: #011740;
  color: #fff;
}
.finalGrid > div:first-child > h2:first-child {
  color: var(--green);
}
.finalGrid {
  min-height: 270px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) 380px minmax(0, 0.9fr);
  gap: 30px;
  align-items: stretch;
}
.finalGrid > div:first-child,
.finalGrid > aside {
  align-self: center;
}
.final h2 {
  font-size: 1.78rem;
  text-transform: uppercase;
  margin: 4px 0;
}
.final p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #d7e3f3;
}
.pills {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-top: 22px;
}
.pills small {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  text-transform: uppercase;
  font-size: 0.6rem;
  white-space: nowrap;
}
.pills small img {
  width: 35px;
  height: 35px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(59%) sepia(69%) saturate(536%) hue-rotate(40deg) brightness(91%) contrast(91%);
}
.finalPlants {
  width: 380px;
  height: 270px;
  align-self: center;
  overflow: hidden;
}
.finalPlants img {
  width: 380px;
  height: 270px;
  display: block;
}
.final aside {
  border: 1px solid #ffffff25;
  border-radius: 13px;
  padding: 22px;
}
.final aside h3 {
  text-transform: uppercase;
  font-size: 1.1875rem;
  margin: 0;
}
.final aside .btn {
  width: 100%;
  margin-top: 5px;
  gap: 10px;
}
.final aside .btn img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
footer {
  background: #011431;
  color: #fff;
  padding: 30px 0 15px;
}
.foot {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr;
  column-gap: 100px;
  row-gap: 20px;
}
.foot img {
  width: auto;
  height: 65px;
  object-fit: contain;
}
.foot p,
.foot a,
.foot span {
  display: block;
  font-size: 1rem;
  color: #aebed4;
  line-height: 1.5;
  margin: 6px 0;
}
.foot .footer-video {
  display: inline-flex;
  margin-top: 16px;
  padding: 12px 18px;
  color: #fff;
  line-height: 1;
}
.foot .footer-video img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}
.foot h4 {
  text-transform: uppercase;
  font-size: 0.85rem;
}
.footer-social__links {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 35px;
}
.foot .footer-social__links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0;
  border-radius: 50%;
  background: var(--green);
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}
.foot .footer-social__links a:hover,
.foot .footer-social__links a:focus-visible {
  background: var(--lime);
  transform: translateY(-2px);
}
.foot .footer-social__links a:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}
.foot .footer-social__links img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.footer-contact__list {
  display: grid;
  gap: 13px;
  margin-top: 18px;
}
.foot .footer-contact__list a {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0;
  line-height: 1.3;
  transition: color 0.2s ease;
}
.foot .footer-contact__list a:hover,
.foot .footer-contact__list a:focus-visible {
  color: #fff;
}
.foot .footer-contact__list img {
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(56%) sepia(73%) saturate(484%) hue-rotate(41deg) brightness(92%) contrast(91%);
}
.foot .footer-contact__list span {
  margin: 0;
  line-height: 1.3;
}
.foot .footer-contact__list strong {
  display: block;
  color: #fff;
  font-size: 0.72rem;
  text-transform: uppercase;
}
.copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 15px;
  border-top: 1px solid #6880a066;
  color: #6880a0;
  font-size: 0.85rem;
  margin-top: 22px;
}
.copy a {
  display: inline-flex;
  flex: 0 0 auto;
}
.copy img {
  display: block;
  width: auto;
  height: 30px;
  object-fit: contain;
}

/* Formulário de reserva */
body.modal-open {
  overflow: hidden;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.video-modal[hidden] {
  display: none;
}
.video-modal {
  position: fixed;
  z-index: 2100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
}
.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: #011431e6;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.video-modal__dialog {
  position: relative;
  width: min(960px, 100%);
  border: 1px solid #ffffff4d;
  border-radius: 18px;
  background: #000;
  box-shadow: 0 28px 80px #00000080;
}
.video-modal__player {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: inherit;
}
.video-modal__player iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-modal__close {
  position: absolute;
  z-index: 1;
  top: -16px;
  right: -16px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 2px solid #fff;
  border-radius: 50%;
  color: var(--navy);
  background: #fff;
  box-shadow: 0 5px 20px #00000059;
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
  transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}
.video-modal__close:hover,
.video-modal__close:focus-visible {
  color: #fff;
  background: var(--green);
  transform: rotate(90deg);
}
.reservation-modal[hidden] {
  display: none;
}
.reservation-modal {
  position: fixed;
  z-index: 2000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
}
.reservation-modal__backdrop {
  position: absolute;
  inset: 0;
  background: #011431cc;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.reservation-modal__dialog {
  position: relative;
  width: min(610px, 100%);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: 36px;
  border: 1px solid #ffffff4d;
  border-radius: 20px;
  background: radial-gradient(circle at 100% 0, #89ca3526, transparent 34%), #fff;
  box-shadow: 0 28px 80px #00000059;
}
.reservation-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: var(--navy);
  background: #edf4f8;
  cursor: pointer;
  font-size: 1.65rem;
  line-height: 1;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    transform 0.2s ease;
}
.reservation-modal__close:hover,
.reservation-modal__close:focus-visible {
  color: #fff;
  background: var(--green);
  transform: rotate(90deg);
}
.reservation-modal__heading {
  padding-right: 42px;
}
.reservation-modal__heading > span {
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.reservation-modal__heading h2 {
  margin: 7px 0 9px;
  color: var(--navy);
  font-size: 1.75rem;
  line-height: 1.2;
  text-transform: uppercase;
}
.reservation-modal__heading p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}
.reservation-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
  margin-top: 25px;
}
.reservation-form__field {
  display: grid;
  gap: 7px;
}
.reservation-form__field label {
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}
.reservation-form__field label b {
  color: var(--green);
}
.reservation-form__field input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid #cfdce6;
  border-radius: 9px;
  outline: 0;
  color: var(--navy);
  background: #f9fcfe;
  font: inherit;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}
.reservation-form__field input:hover {
  border-color: #a6bac9;
}
.reservation-form__field input:focus {
  border-color: var(--green);
  background: #fff;
  box-shadow: 0 0 0 4px #6ba9191f;
}
.reservation-form__trap {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}
.reservation-form__submit {
  grid-column: 1/-1;
  width: 100%;
  min-height: 50px;
  gap: 10px;
  border: 0;
  cursor: pointer;
}
.reservation-form__submit img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}
.reservation-form__submit:disabled {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}
.reservation-form__status {
  grid-column: 1/-1;
  min-height: 20px;
  margin: -5px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.5;
}
.reservation-form__status:not(:empty) {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 13px 15px;
  border: 1px solid currentColor;
  border-radius: 10px;
  box-shadow: 0 5px 16px rgb(6 38 91 / 8%);
  animation: reservation-status-in 0.25s ease-out;
}
.reservation-form__status:not(:empty)::before {
  display: grid;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
}
.reservation-form__status.is-success {
  color: #376b08;
  background: #f1f9e8;
  border-color: #9fcf6c;
}
.reservation-form__status.is-success::before {
  content: "\2713";
  background: #579414;
}
.reservation-form__status.is-error {
  color: #9b1c12;
  background: #fff1f0;
  border-color: #e8a39d;
}
.reservation-form__status.is-error::before {
  content: "!";
  background: #bd2c20;
}
@keyframes reservation-status-in {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 560px) {
  .reservation-modal {
    padding: 14px;
  }
  .reservation-modal__dialog {
    max-height: calc(100vh - 28px);
    padding: 28px 20px 24px;
    border-radius: 16px;
  }
  .reservation-modal__heading {
    padding-right: 36px;
  }
  .reservation-modal__heading h2 {
    font-size: 1.4rem;
  }
  .reservation-form {
    grid-template-columns: 1fr;
  }
  .reservation-form__submit,
  .reservation-form__status {
    grid-column: auto;
  }
}
@media (max-width: 1100px) {
  .steps {
    gap: 52px;
  }
  .step-arrow {
    right: -44px;
  }
}
@media (max-width: 920px) {
  .header nav {
    gap: 13px;
  }
  .header nav a {
    font-size: 0.5625rem;
  }
  .benefits {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 22px;
  }
  .benefits article:nth-child(3) {
    border: 0;
  }
  .hero h1 {
    font-size: 3rem;
  }
  .uses {
    grid-template-columns: repeat(3, 1fr);
  }
  .use:nth-child(n + 4) {
    display: none;
  }
}
@media (max-width: 720px) {
  .shell {
    width: min(100% - 30px, 560px);
  }
  .hero {
    min-height: auto;
    padding-bottom: 70px;
    background:
      linear-gradient(#f9fdffdd, #f9fdff88),
      url("../img/planta-hero.png") 68% bottom/auto 420px no-repeat;
  }
  .header {
    height: 80px;
  }
  .header nav,
  .top {
    display: none;
  }
  .header details {
    display: block;
    margin-left: auto;
    position: relative;
  }
  .header summary {
    list-style: none;
    background: var(--navy);
    color: #fff;
    padding: 10px 12px;
    border-radius: 7px;
    font-size: 1.25rem;
  }
  .header details div {
    position: absolute;
    right: 0;
    top: 48px;
    width: 230px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #dce8f1;
    border-radius: 14px;
    padding: 42px 12px 12px;
    box-shadow: 0 18px 45px #001a4938;
  }
  .header details[open] div {
    animation: mobile-menu-in 0.22s ease-out;
  }
  .mobile-menu__close {
    position: absolute;
    top: 9px;
    right: 9px;
    display: grid;
    width: 28px;
    height: 28px;
    padding: 0;
    place-items: center;
    border: 0;
    border-radius: 50%;
    color: var(--navy);
    background: #edf3f7;
    cursor: pointer;
    font-size: 1.25rem;
    line-height: 1;
    transition:
      background-color 0.2s ease,
      transform 0.2s ease;
  }
  .mobile-menu__close:hover,
  .mobile-menu__close:focus-visible {
    background: #dce8ef;
    outline: 2px solid #6ba91966;
    outline-offset: 2px;
    transform: rotate(5deg);
  }
  .header details a {
    position: relative;
    display: block;
    margin-bottom: 3px;
    padding: 11px 13px;
    border-radius: 8px;
    text-transform: uppercase;
    font-size: 0.6875rem;
    font-weight: 700;
    cursor: pointer;
    transition:
      color 0.2s ease,
      background 0.2s ease,
      box-shadow 0.2s ease,
      transform 0.2s ease;
  }
  .header details a:not(.mobile-reservation) {
    border-bottom: 1px solid #e7eef3;
  }
  .header details a:not(.mobile-reservation)::after {
    content: "\203A";
    position: absolute;
    top: 50%;
    right: 12px;
    color: var(--green);
    font-size: 1.15rem;
    opacity: 0;
    transform: translate(-5px, -52%);
    transition:
      opacity 0.2s ease,
      transform 0.2s ease;
  }
  .header details a:not(.mobile-reservation):hover,
  .header details a:not(.mobile-reservation):focus,
  .header details a:not(.mobile-reservation):focus-visible,
  .header details a:not(.mobile-reservation):active {
    color: #fff;
    background: linear-gradient(135deg, #7dbb2e, #5d970f);
    box-shadow:
      inset 4px 0 0 #b8ec70,
      0 6px 14px #47791f2b;
    outline: 0;
    transform: translateX(4px);
  }
  .header details a:not(.mobile-reservation):hover::after,
  .header details a:not(.mobile-reservation):focus::after,
  .header details a:not(.mobile-reservation):focus-visible::after,
  .header details a:not(.mobile-reservation):active::after {
    color: #fff;
    opacity: 1;
    transform: translate(0, -52%);
  }
  .header details .mobile-reservation {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 6px;
    margin-bottom: 0;
    padding: 11px 12px;
    color: #fff;
    border-radius: 7px;
  }
  @keyframes mobile-menu-in {
    from {
      opacity: 0;
      transform: translateY(-8px) scale(0.98);
    }
    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }
  .heroGrid {
    height: 560px;
    display: block;
    padding-top: 35px;
  }
  .heroCopy {
    text-align: center;
  }
  .hero h1 {
    font-size: 2.4375rem;
  }
  .heroCopy > p {
    font-size: 0.9375rem;
  }
  .actions {
    justify-content: center;
    flex-direction: column;
    gap: 15px;
  }
  .benefits {
    grid-template-columns: repeat(2, 1fr);
    margin-top: -40px;
  }
  .benefits article:nth-child(3) {
    border-right: 1px solid #dce6ed;
  }
  .benefits article:nth-child(even) {
    border: 0;
  }
  .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 23px;
  }
  .step-arrow {
    right: -30px;
  }
  .steps article:nth-child(even) .step-arrow {
    display: none;
  }
  .tech {
    grid-template-columns: 1fr;
  }
  .techText {
    padding: 30px 24px 0;
  }
  .techArt {
    height: 225px;
  }
  .tech ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0 25px 15px;
  }
  .uses {
    grid-template-columns: 1fr 1fr;
  }
  .use:nth-child(4) {
    display: block;
  }
  .faq-cta {
    grid-template-columns: auto minmax(0, 1fr);
  }
  .faq-cta__button {
    grid-column: 2;
    justify-self: start;
  }
  .finalGrid {
    grid-template-columns: 1fr;
    padding: 40px 0;
  }
  .finalPlants {
    display: none;
  }
  .foot {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .foot > div:first-child {
    grid-column: 1/-1;
  }
}

/* Página FAQ */
.faq-hero {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  padding-top: 150px;
  color: #fff;
  background:
    linear-gradient(90deg, #021840f2 0%, #06265bd9 52%, #06265b4d 100%),
    url("../img/hero-plannta.webp") 62% 48% / cover no-repeat;
}
.faq-hero .header {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 28px rgba(2, 24, 64, 0.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.faq-hero::after {
  content: "?";
  position: absolute;
  right: 7%;
  bottom: -95px;
  color: #ffffff12;
  font-size: 25rem;
  font-weight: 800;
  line-height: 1;
}
.faq-hero__content {
  position: relative;
  z-index: 1;
  padding-top: 70px;
  padding-bottom: 150px;
}
.faq-hero__content > span,
.faq-page__intro > span,
.faq-support span {
  color: var(--lime);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.faq-hero h1 {
  max-width: 680px;
  margin: 10px 0 16px;
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  line-height: 1.05;
  text-transform: uppercase;
}
.faq-hero__content > p {
  max-width: 620px;
  margin: 0;
  color: #dbe7f5;
  font-size: 1.03rem;
  line-height: 1.7;
}
.faq-hero__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}
.faq-hero__link img {
  width: 26px;
  height: 26px;
  filter: brightness(0) saturate(100%) invert(56%) sepia(73%) saturate(484%) hue-rotate(41deg) brightness(92%) contrast(91%);
}
.faq-page {
  padding: 75px 0 80px;
  background: linear-gradient(180deg, #f7fbff 0%, #fff 38%);
  scroll-margin-top: 100px;
}
.faq-page__layout {
  max-width: 1000px;
}
.faq-page__intro {
  max-width: 640px;
  margin-bottom: 32px;
}
.faq-page__intro > span {
  color: var(--green);
}
.faq-page__intro h2 {
  margin: 8px 0 10px;
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  line-height: 1.15;
  white-space: nowrap;
  text-transform: uppercase;
}
.faq-page__intro p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}
.faq-list {
  display: grid;
  gap: 12px;
}
.faq-item {
  overflow: hidden;
  border: 1px solid #dde7ef;
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 7px 22px #06265b0a;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}
.faq-item[open] {
  border-color: #80b93b70;
  box-shadow: 0 13px 30px #436f1517;
  transform: translateY(-1px);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 22px;
  color: var(--navy);
  cursor: pointer;
  font-family: "Plus Jakarta Sans", "Inter", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
  list-style: none;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary b {
  display: inline-block;
  min-width: 30px;
  margin-right: 7px;
  color: var(--green);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}
.faq-item__icons {
  display: grid;
  flex: 0 0 25px;
  place-items: center;
  width: 25px;
  height: 25px;
}
.faq-item__icons img {
  grid-area: 1/1;
  width: 25px;
  height: 25px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(56%) sepia(73%) saturate(484%) hue-rotate(41deg) brightness(92%) contrast(91%);
  transition:
    opacity 0.2s ease,
    transform 0.25s ease;
}
.faq-item__close,
.faq-item[open] .faq-item__open {
  opacity: 0;
  transform: rotate(-45deg) scale(0.7);
}
.faq-item[open] .faq-item__close {
  opacity: 1;
  transform: rotate(90deg) scale(1);
}
.faq-item__answer {
  padding: 0 77px 22px 59px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.75;
}
.faq-item__answer p {
  margin: 0;
}
.faq-item__answer ul {
  margin: 0;
  padding-left: 20px;
}
.faq-item__contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}
.faq-item__contact img {
  width: 19px;
  height: 19px;
  filter: brightness(0) saturate(100%) invert(56%) sepia(73%) saturate(484%) hue-rotate(41deg) brightness(92%) contrast(91%);
}
.faq-support {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  margin-top: 45px;
  padding: 32px 36px;
  border-radius: 17px;
  color: #fff;
  background: linear-gradient(120deg, #021840, #07306e);
  box-shadow: 0 18px 38px #02184024;
}
.faq-support h2 {
  margin: 6px 0 8px;
  font-size: 1.45rem;
  text-transform: uppercase;
}
.faq-support p {
  max-width: 570px;
  margin: 0;
  color: #c8d7e9;
  font-size: 0.88rem;
  line-height: 1.6;
}
.faq-support .btn {
  flex: 0 0 auto;
  gap: 9px;
  white-space: nowrap;
}
.faq-support .btn img {
  width: 19px;
  height: 19px;
  filter: brightness(0) invert(1);
}
@media (max-width: 720px) {
  .faq-hero {
    min-height: 430px;
    padding-top: 80px;
    background-position: 67% center;
  }
  .faq-hero__content {
    padding-top: 75px;
  }
  .faq-page {
    padding: 55px 0 60px;
    scroll-margin-top: 80px;
  }
  .faq-page__intro h2 {
    font-size: clamp(1.15rem, 5.2vw, 1.9rem);
  }
  .faq-item summary {
    padding: 18px;
    font-size: 0.88rem;
  }
  .faq-item__answer {
    padding: 0 55px 20px 18px;
  }
  .faq-support {
    align-items: flex-start;
    flex-direction: column;
    padding: 28px 24px;
  }
  .faq-support .btn {
    width: 100%;
  }
}
@media (max-width: 450px) {
  .hero h1 {
    font-size: 2.125rem;
  }
  .benefits {
    padding: 20px 8px;
  }
  .steps,
  .uses {
    grid-template-columns: 1fr;
  }
  .step-arrow {
    display: none;
  }
  .use:nth-child(n) {
    display: block;
  }
  .tech ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 1fr;
    gap: 0;
    margin: 0;
    padding: 0 20px 15px;
  }
  .tech li {
    min-width: 0;
    min-height: 78px;
    margin: 0;
    padding: 12px 8px;
    gap: 9px;
    line-height: 1.3;
  }
  .stats b {
    font-size: 1.125rem;
  }
  .stats small {
    font-size: 0.5rem;
    text-align: center;
  }
  .foot {
    grid-template-columns: 1fr;
    gap: 20px;
    row-gap: 20px;
  }
  .foot > div:first-child {
    grid-column: auto;
  }
  .faq-cta {
    grid-template-columns: 1fr;
    justify-items: start;
    padding: 26px 24px;
  }
  .faq-cta__button {
    grid-column: auto;
    width: 100%;
  }
  .copy {
    flex-direction: column;
    align-items: center;
    gap: 0;
    text-align: center;
  }
  .copy a {
    margin-top: 20px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .btn,
  .video,
  .video img,
  .techText a {
    transition: none;
  }
}
.hero {
  min-height: 900px;
  background:
    linear-gradient(to bottom, transparent 70%, #fff 100%),
    url("../img/hero-plannta.webp") 57% center/cover no-repeat;
}
@media (max-width: 720px) {
  .hero {
    min-height: auto;
    background:
      linear-gradient(to bottom, transparent 65%, #fff 100%),
      url("../img/hero-plannta-mobile.webp") center bottom/100% auto no-repeat;
  }
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-latin-300-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
}
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/plus-jakarta-sans-latin-400-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}
body {
  font-family: "Inter", Arial, sans-serif;
}
h1,
h2,
h3,
h4,
.btn,
.header nav,
.video,
.heroCopy span,
.heading span,
.techText span,
.finalGrid > div > span {
  font-family: "Plus Jakarta Sans", "Inter", Arial, sans-serif;
}

/* Menu fixo */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: none;
  transform: none;
  z-index: 1000;
  padding: 0;
  border: 0;
  border-radius: 0;
  transition:
    height 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease,
    backdrop-filter 0.25s ease;
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 34px;
}
.header.is-scrolled {
  top: 0;
  height: 100px;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 0;
  box-shadow: 0 8px 28px rgba(2, 24, 64, 0.16);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.hero {
  padding-top: 150px;
}

/* Hero proporcional em notebooks e monitores desktop */
@media (min-width: 1200px) and (max-width: 2559px) {
  .hero {
    padding-top: 94px;
    background:
      linear-gradient(to bottom, transparent 70%, #fff 100%),
      url(../img/hero-plannta.webp) 57% center / cover no-repeat;
  }
}

/* Ajuste do conteúdo do hero em 1360 × 768 e 1440 × 900 */
@media (min-width: 1200px) and (max-width: 1600px) {
  .hero {
    min-height: 650px;
  }
  .heroGrid {
    height: 526px;
    grid-template-columns: 40% 60%;
    padding-bottom: 50px;
  }
  .heroCopy {
    max-width: 470px;
    transform: translateY(-45px);
  }
  .hero h1 {
    margin: 8px 0 14px;
    font-size: clamp(2.85rem, 3.5vw, 3.15rem);
    line-height: 1.08;
  }
  .heroCopy > p {
    max-width: 450px;
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.5;
  }
  .hero .video {
    margin-top: 14px;
  }
}

@media (min-width: 1360px) and (max-width: 1440px) and (min-height: 768px) and (max-height: 900px) {
  .benefits {
    margin-top: -50px;
  }
}

/* Hero em telas 4K e monitores de alta resolução */
@media (min-width: 2560px) and (min-height: 1400px) {
  .hero {
    min-height: 42.5532vw;
    padding-top: 180px;
    background:
      linear-gradient(to bottom, transparent 72%, #fff 100%),
      url("../img/hero-plannta.webp") center top / 100% auto no-repeat;
  }
  .hero .header {
    height: 130px;
  }
  .hero .header-inner,
  .hero .heroGrid {
    width: min(3200px, calc(100% - 160px));
  }
  .hero .header-inner {
    gap: 52px;
  }
  .hero .logo {
    width: 280px;
    height: 110px;
  }
  .hero .logo img {
    width: 265px;
  }
  .hero .header nav {
    gap: 38px;
  }
  .hero .header nav a,
  .hero .btn.top {
    font-size: 1.05rem;
  }
  .hero .btn.top {
    padding: 15px 25px;
  }
  .heroGrid {
    height: calc(42.5532vw - 180px);
    grid-template-columns: 42% 58%;
  }
  .heroCopy span {
    font-size: 1rem;
  }
  .hero h1 {
    margin: 18px 0 28px;
    font-size: 5.25rem;
    line-height: 1.15;
  }
  .heroCopy > p {
    max-width: 720px;
    font-size: 1.35rem;
    line-height: 1.7;
  }
  .hero .video {
    gap: 13px;
    margin-top: 30px;
    font-size: 1.05rem;
  }
  .hero .video img {
    width: 34px;
    height: 34px;
  }
}
#beneficios,
#sistema,
#tecnologia,
#aplicacoes,
#contato {
  scroll-margin-top: 105px;
}
@media (max-width: 720px) {
  .header {
    top: 0;
    width: 100%;
    height: 80px;
    padding: 0;
    border-radius: 0;
  }
  .header-inner {
    gap: 16px;
  }
  .header.is-scrolled {
    top: 0;
    height: 66px;
    border-radius: 0;
  }
  .header .logo {
    width: 118px;
    height: 66px;
  }
  .header .logo img {
    width: 112px;
    height: 84px;
  }
  .header details div {
    max-height: calc(100vh - 90px);
    overflow-y: auto;
    border: 1px solid #dce8f1;
  }
  .hero {
    padding-top: 70px;
  }
  #beneficios,
  #sistema,
  #tecnologia,
  #aplicacoes,
  #contato {
    scroll-margin-top: 88px;
  }
}
