@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --white: #f1f2f8;
  --gray: #d7d9e4;
  --green: #37a331;
  --black: #0f1014;
  --blue: #1717c5;
  --danger: #b91c1c;
  --danger-bg: rgba(185, 28, 28, 0.1);
  --success: #166534;
  --success-bg: rgba(22, 101, 52, 0.1);
}

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--white);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: #fff;
  color: var(--black);
  padding: 10px 12px;
  border-radius: 10px;
  border: 2px solid rgba(15, 16, 20, 0.15);
  z-index: 9999;
}
.skip-link:focus {
  left: 10px;
}

.header-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  box-shadow: 0 2px 16px hsla(220, 32%, 8%, 0.3);
  z-index: 99;
}

.nav-container {
  height: 70px;
  padding: 0px 1.25em;
}

.nav-logo {
  width: 150px;
}

.nav-logo-link {
  display: inline-flex;
  align-items: center;
}

.nav-data {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-toggle {
  position: relative;
  width: 32px;
  height: 32px;
  background: transparent;
  border: 0;
}

.nav-burger,
.nav-close {
  position: absolute;
  width: max-content;
  height: max-content;
  inset: 0;
  margin: auto;
  font-size: 1.25em;
  cursor: pointer;
  transition:
    opacity 0.1s,
    transform 0.4s;
}

.nav-close {
  opacity: 0;
}

@media screen and (max-width: 1118px) {
  .nav-menu {
    position: absolute;
    left: 0;
    top: 4em;
    width: 100%;
    height: calc(100vh - 3.5em);
    overflow: auto;
    pointer-events: none;
    opacity: 0;
    transition:
      top 0.4s,
      opacity 0.3s;
  }

  .nav-menu::-webkit-scrollbar {
    width: 0;
  }

  .nav-list {
    background-color: var(--white);
    padding-top: 1em;
  }
}

.nav-link {
  color: var(--black);
  background-color: var(--white);
  font-weight: 600;
  padding: 1.25em 1.5em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s;
}

.nav-link:hover {
  background-color: var(--gray);
}

.show-menu {
  opacity: 1;
  top: 3.8em;
  pointer-events: initial;
}

.show-icon .nav-burger {
  opacity: 0;
  transform: rotate(90deg);
}

.show-icon .nav-close {
  opacity: 1;
  transform: rotate(90deg);
}

@media screen and (max-width: 348px) {
  .nav-link {
    padding-inline: 1em;
  }
}

@media screen and (min-width: 1118px) {
  .nav-container {
    height: calc(70px + 2em);
    display: flex;
    justify-content: space-between;
    width: 1200px;
    margin: 0 auto;
  }

  .nav-toggle {
    display: none;
  }

  .nav-list {
    height: 100%;
    display: flex;
    column-gap: 3em;
  }

  .nav-link {
    height: 100%;
    padding: 0;
    justify-content: initial;
    column-gap: 0.25em;
  }

  .nav-link:hover {
    background-color: transparent;
  }
}

.hero-container {
  width: 100%;
  margin-top: 70px;
}

@media (min-width: 1118px) {
  .hero-container {
    margin-top: calc(70px + 2em);
  }
}

/* FIX: Hero agora cresce com o conteúdo (sem cortar o formulário) */
.hero-slider {
  position: relative;
  min-height: 600px;
  height: auto;
  overflow: hidden;
}

@media (max-width: 768px) {
  .hero-slider {
    min-height: 650px;
  }
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center right;
  opacity: 0;
  transform: scale(1.04);
  transition:
    opacity 0.9s ease,
    transform 1.2s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(15, 16, 20, 0.78) 0%,
    rgba(15, 16, 20, 0.6) 35%,
    rgba(15, 16, 20, 0.2) 65%,
    rgba(15, 16, 20, 0) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.25rem 4.2rem;
  color: #fff;
}

.hero-title {
  font-size: 4em;
  font-weight: 700;
  max-width: 800px;
  line-height: 1.1;
}

.hero-subtitle {
  margin-top: 0.9rem;
  max-width: 600px;
  font-size: 1rem;
  line-height: 1.55;
  opacity: 0.9;
}

.hero-cta {
  margin-top: 1.3rem;
  display: inline-block;
  background: var(--green);
  color: #fff;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
}

.hero-checklist {
  margin-top: 1.2rem;
  display: grid;
  gap: 0.55rem;
  font-size: 0.9rem;
}

.hero-checklist i {
  color: var(--green);
  margin-right: 0.4rem;
  background-color: #37a3313a;
  width: 30px;
  height: 30px;
  border-radius: 1em;
  border: 1px solid var(--green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-scroll {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.hero-scroll span {
  width: 52px;
  height: 52px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bounce 1.4s infinite;
}

.hero-scroll i {
  color: #fff;
  font-size: 1.5rem;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}

@media (max-width: 768px) {
  .hero-content {
    padding: 3.1rem 1.25rem 4.6rem;
  }
  .hero-title {
    font-size: 2em;
    font-weight: 700;
    max-width: 520px;
    line-height: 1.1;
  }
  .hero-cta {
    font-weight: 600;
    font-size: 0.79em;
  }
}

/* CTA padrão: pulse bem sutil */
.cta-btn {
  will-change: transform;
  animation: ctaPulse 2.6s ease-in-out infinite;
  transform: translateZ(0);
}
@keyframes ctaPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}
@media (prefers-reduced-motion: reduce) {
  .cta-btn,
  .hero-scroll span {
    animation: none !important;
  }
}

/* FORM (base) */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.form-error {
  display: block;
  min-height: 1.1em;
  margin-top: 6px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.85);
}
.form-error.is-danger {
  color: #ffd1d1;
}

input {
  outline: none;
}

/* FIX: cada field vira coluna para evitar desalinhamento quando aparece erro */
.form-field {
  display: flex;
  flex-direction: column;
}

.form-field input {
  width: 100%;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.14);
  padding: 0.9rem 1.05rem;
  color: #fff;
  font-weight: 600;
}
.form-field input::placeholder {
  color: rgba(255, 255, 255, 0.78);
}
.form-field input:focus {
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 0 4px rgba(55, 163, 49, 0.25);
}
.form-field input[aria-invalid="true"] {
  border-color: rgba(255, 120, 120, 0.75);
  box-shadow: 0 0 0 4px rgba(185, 28, 28, 0.25);
}

/* HERO form */
.hero-form {
  margin-top: 1.4rem;
  max-width: 680px;
}

/* ✅ FIX AQUI: 4 campos + botão (desktop) */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr auto;
  gap: 10px;
  align-items: start;
}

.form-submit {
  border: 0;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  padding: 0.95rem 1.2rem;
  font-weight: 800;
  cursor: pointer;
  height: 46px;
  align-self: start;
  white-space: nowrap;
}
.form-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

@media (max-width: 980px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }
  .form-submit {
    grid-column: 1 / -1;
  }
}
@media (max-width: 520px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

/* POPUP (Hero sucesso) */
.popup {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 999;
  background: rgba(15, 16, 20, 0.55);
}
.popup.is-open {
  display: flex;
}
.popup-card {
  width: min(520px, 100%);
  background: #fff;
  border-radius: 16px;
  border: 2px solid rgba(55, 163, 49, 0.6);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
  padding: 18px 18px 16px;
  position: relative;
}
.popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid rgba(15, 16, 20, 0.15);
  background: #fff;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}
.popup-text {
  color: rgba(15, 16, 20, 0.85);
  font-weight: 700;
  padding-right: 44px;
}

/* SESSÃO: DIAGNÓSTICO */
.diag-container {
  background: var(--white);
  padding: 4.2rem 1.25rem 3.6rem;
}

.diag-wrap {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.diag-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--black);
  letter-spacing: -0.02em;
  margin-bottom: 2.2rem;
}

.diag-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: stretch;
  margin-bottom: 2.1rem;
}

@media (max-width: 1118px) {
  .diag-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .diag-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 420px) {
  .diag-grid {
    grid-template-columns: 1fr;
  }
}

.diag-card {
  background: #fff;
  border: 2px solid rgba(55, 163, 49, 0.9);
  border-radius: 14px;
  padding: 1.25rem 1.05rem 1.15rem;
  text-align: left;
  box-shadow: 0 10px 24px #0c1a0e05;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
  min-height: 210px;
  position: relative;
}

.diag-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px #0f14120e;
  border-color: rgba(55, 163, 49, 1);
}

.diag-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  border: 2px solid rgba(55, 163, 49, 0.95);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.diag-icon i {
  font-size: 1.55rem;
  color: var(--green);
  line-height: 1;
}

.diag-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.45rem;
  letter-spacing: -0.01em;
}

.diag-card-text {
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(15, 16, 20, 0.78);
}

.diag-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
  transition:
    transform 0.18s ease,
    filter 0.18s ease;
}

.diag-cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

/* SECTION BASE */
.how-container {
  background: var(--white);
  padding: 4.5rem 1.25rem;
}

.how-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.how-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--black);
  text-align: center;
  letter-spacing: -0.02em;
}

.how-flex {
  display: flex;
  gap: 2.2rem;
  align-items: flex-start;
}

.how-left {
  flex: 0 0 420px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15, 16, 20, 0.12);
}

.how-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 4 / 5;
}

.how-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.how-step {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  border: 2px solid var(--green);
  border-radius: 18px;
  padding: 1.2rem 1.3rem;
}

.how-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  border: 2px solid var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.how-icon i {
  font-size: 1.7rem;
  color: var(--green);
}

.how-text {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.how-text h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--black);
}

.how-text p {
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(15, 16, 20, 0.8);
}

.how-cta {
  margin-top: 1.6rem;
  align-self: flex-start;
  padding: 0.95rem 1.9rem;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  transition:
    transform 0.18s ease,
    filter 0.18s ease;
}

.how-cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

@media (max-width: 980px) {
  .how-flex {
    flex-direction: column;
    align-items: center;
  }

  .how-left {
    flex: none;
    width: 100%;
    max-width: 420px;
  }

  .how-right {
    width: 100%;
  }

  .how-cta {
    align-self: center;
    margin-left: 0;
  }
}

/* SESSÃO: POR QUE (FUNDO AZUL) */
.why-container {
  background: var(--blue);
  padding: 4.6rem 1.25rem 4.2rem;
}

.why-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  align-items: center;
}

.why-title {
  color: #fff;
  text-align: center;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 26ch;
}

.why-cards {
  width: 100%;
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}

.why-card {
  background: rgba(241, 242, 248, 0.98);
  border-radius: 14px;
  padding: 1.25rem 1.15rem 1.15rem;
  width: calc((100% - 64px) / 5);
  min-width: 190px;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

.why-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  border: 2px solid rgba(55, 163, 49, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-card-icon i {
  font-size: 1.55rem;
  color: var(--green);
}

.why-card-title {
  color: var(--black);
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
  margin-top: 0.15rem;
}

.why-card-text {
  color: rgba(15, 16, 20, 0.8);
  font-size: 0.92rem;
  line-height: 1.55;
}

.why-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.9rem;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
  transition:
    transform 0.18s ease,
    filter 0.18s ease;
}

.why-cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

@media (max-width: 1118px) {
  .why-card {
    width: calc((100% - 32px) / 3);
  }
}

@media (max-width: 760px) {
  .why-card {
    width: calc((100% - 16px) / 2);
  }
}

@media (max-width: 420px) {
  .why-card {
    width: 100%;
  }
}

/* FAQ */
.faq-container {
  background: var(--white);
  padding: 4.2rem 1.25rem 3.2rem;
}

.faq-wrap {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;
}

.faq-title {
  font-size: clamp(1.55rem, 2.6vw, 2.05rem);
  font-weight: 800;
  color: var(--black);
  text-align: center;
}

.faq-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-card {
  width: 100%;
  border: 2px solid rgba(55, 163, 49, 0.95);
  border-radius: 14px;
  background: transparent;
  overflow: hidden;
}

.faq-head {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 1.05rem 1.15rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
}

.faq-q {
  font-weight: 800;
  color: var(--black);
  font-size: 0.98rem;
}

.faq-ico {
  font-size: 1.35rem;
  color: var(--green);
  transition: transform 0.2s ease;
}

.faq-body {
  padding: 0 1.15rem 1.05rem;
  color: rgba(15, 16, 20, 0.78);
  line-height: 1.55;
  font-size: 0.95rem;
}

.faq-divider {
  height: 1px;
  background: rgba(55, 163, 49, 0.35);
  margin: 0 1.15rem 1rem;
}

.faq-card.is-open .faq-ico {
  transform: rotate(45deg);
}

.faq-note {
  text-align: center;
  color: rgba(15, 16, 20, 0.75);
  font-size: 0.92rem;
  line-height: 1.45;
  margin-top: 0.4rem;
}

.footer-sep {
  width: 100%;
  height: 1px;
  background: rgba(15, 16, 20, 0.12);
  margin-top: 1.2rem;
}

/* FORMULÁRIO FINAL */
.final-form-container {
  background: var(--white);
  padding: 3.6rem 1.25rem 3.6rem;
}
.final-form-wrap {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  align-items: center;
}
.final-form-title {
  font-size: clamp(1.55rem, 2.6vw, 2.05rem);
  font-weight: 800;
  color: var(--black);
  text-align: center;
}
.final-form-card {
  width: 100%;
  background: #fff;
  border-radius: 16px;
  border: 2px solid rgba(55, 163, 49, 0.35);
  box-shadow: 0 14px 40px rgba(15, 16, 20, 0.08);
  padding: 16px;
}

/* ✅ FIX AQUI: 4 campos + botão (desktop) */
.final-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr auto;
  gap: 10px;
  align-items: start;
}

.final-form .form-field input {
  background: #fff;
  border: 1px solid rgba(15, 16, 20, 0.18);
  color: var(--black);
}
.final-form .form-field input::placeholder {
  color: rgba(15, 16, 20, 0.55);
}
.final-form .form-error {
  color: rgba(15, 16, 20, 0.7);
}
.final-form .form-error.is-danger {
  color: var(--danger);
}
.final-submit {
  border: 0;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  padding: 0.95rem 1.2rem;
  font-weight: 800;
  cursor: pointer;
  height: 46px;
}
.final-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
.final-success {
  margin-top: 12px;
  width: 100%;
  border-radius: 14px;
  padding: 12px 14px;
  border: 2px solid rgba(22, 101, 52, 0.35);
  background: var(--success-bg);
  color: var(--success);
  font-weight: 800;
  text-align: center;
}

@media (max-width: 980px) {
  .final-grid {
    grid-template-columns: 1fr 1fr;
  }
  .final-submit {
    grid-column: 1 / -1;
  }
}
@media (max-width: 520px) {
  .final-grid {
    grid-template-columns: 1fr;
  }
}

/* FOOTER (novo) */
.footer-container {
  background: var(--white);
  color: var(--black);
  padding: 2.4rem 1.25rem 1.2rem;
  border-top: 3px solid rgba(55, 163, 49, 0.85);
}

.footer-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  max-width: 320px;
}

.footer-logo {
  width: 160px;
  filter: drop-shadow(0 10px 26px rgba(0, 0, 0, 0.35));
}

.footer-slogan {
  font-size: 0.92rem;
  color: var(--black);
  font-weight: 600;
  line-height: 1.35;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  width: min(520px, 100%);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-col-right {
  align-items: flex-end;
  text-align: right;
}

.footer-link {
  color: var(--black);
  font-weight: 650;
  font-size: 0.92rem;
}

.footer-link:hover {
  text-decoration: underline;
}

.footer-whats {
  display: inline-flex;
  gap: 0.55rem;
  align-items: center;
  color: var(--black);
}

.footer-whats i {
  font-size: 1.1rem;
  color: var(--green);
}

.footer-bottom {
  max-width: 1200px;
  margin: 1.2rem auto 0;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(85, 86, 87, 0.452);
  display: flex;
  justify-content: flex-end;
}

.footer-top {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(113, 146, 127, 0.18);
  background: rgba(153, 165, 150, 0.04);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(241, 242, 248, 0.92);
  transition:
    transform 0.18s ease,
    background 0.18s ease;
}

.footer-top:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.07);
}

.footer-top i {
  font-size: 1.2rem;
  color: var(--green);
}

@media (max-width: 900px) {
  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-grid {
    width: 100%;
  }

  .footer-col-right {
    align-items: flex-start;
    text-align: left;
  }

  .footer-bottom {
    justify-content: flex-start;
  }
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px;
  display: none;
  z-index: 1000;
}
.cookie-banner.is-open {
  display: block;
}
.cookie-card {
  max-width: 980px;
  margin: 0 auto;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  border: 2px solid rgba(15, 16, 20, 0.12);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.22);
  padding: 14px 14px 12px;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}
.cookie-text {
  color: rgba(15, 16, 20, 0.78);
  font-weight: 600;
  font-size: 0.92rem;
  line-height: 1.35;
}
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cookie-btn {
  border-radius: 999px;
  border: 1px solid rgba(15, 16, 20, 0.18);
  background: #fff;
  color: rgba(15, 16, 20, 0.85);
  font-weight: 800;
  padding: 0.7rem 1rem;
  cursor: pointer;
}
.cookie-all {
  background: var(--green);
  border-color: rgba(55, 163, 49, 0.65);
  color: #fff;
}
@media (max-width: 720px) {
  .cookie-card {
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-actions {
    justify-content: stretch;
  }
  .cookie-btn {
    width: 100%;
  }
}

@media screen and (max-width: 400px) {
  .hero-scroll span {
    width: 40px;
    height: 40px;
  }

  .hero-scroll i {
    color: #fff;
    font-size: 1.3rem;
  }
}

/* WhatsApp fixo lateral */
.wa-float {
  position: fixed;
  right: 18px;
  bottom: 16px; /* sobe um pouco pra não brigar com o "voltar ao topo" do footer */
  z-index: 1001;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 0.85rem 1.05rem;
  border-radius: 999px;

  background: var(--green);
  color: #fff;

  font-weight: 800;
  font-size: 0.92rem;
  line-height: 1;

  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
  border: 2px solid rgba(255, 255, 255, 0.18);

  transition:
    transform 0.18s ease,
    filter 0.18s ease;
}

.wa-float:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.wa-float i {
  font-size: 1.25rem;
  line-height: 1;
}

/* Texto some no mobile pra ficar clean */
@media (max-width: 520px) {
  .wa-float {
    padding: 0.85rem;
  }

  .wa-float-text {
    display: none;
  }
}
