:root {
  --green: #58ff1d;
  --green-dark: #218a3f;
  --lime: #cbf467;
  --pink: #eb1f74;
  --navy: #000729;
  --navy-soft: #10183a;
  --white: #ffffff;
  --fog: #f5f7f3;
  --line: #e4e9e2;
  --text: #182032;
  --muted: #5c6474;
  --shadow: 0 24px 64px rgba(0, 7, 41, 0.13);
  --radius: 26px;
  --container: min(1180px, calc(100% - 48px));
  --font-heading: "DM Sans", Arial, sans-serif;
  --font-body: "Nunito", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: var(--font-body);
}

body.menu-open {
  overflow: hidden;
}

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

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

p,
h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-heading);
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  height: 90px;
  background: var(--white);
  border-bottom: 1px solid rgba(228, 233, 226, 0.82);
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease,
    backdrop-filter 180ms ease;
}

.site-header.is-scrolled {
  background: var(--white);
  border-color: rgba(228, 233, 226, 0.82);
  box-shadow: 0 10px 28px rgba(0, 7, 41, 0.075);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.site-header.is-over-hero {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: none;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

@media (prefers-reduced-motion: reduce) {
  .site-header {
    transition: none;
  }
}

.header__inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
}

.brand {
  width: 136px;
  flex-shrink: 0;
}

.brand img {
  width: 100%;
  height: 69px;
  object-fit: contain;
}

.navigation {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 0.96rem;
  font-weight: 600;
}

.navigation > a:not(.button) {
  position: relative;
  padding: 9px 0;
}

.navigation > a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 2px;
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.navigation > a:not(.button):hover::after,
.navigation > a:not(.button):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 44px;
  height: 44px;
  padding: 10px 7px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 29px;
  margin: 7px 0;
  background: var(--navy);
  transition: transform 180ms ease, opacity 180ms ease;
}

.button {
  min-height: 50px;
  padding: 0 26px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 650;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
  box-shadow: none;
}

.button__icon {
  width: 19px;
  height: 19px;
  display: inline-block;
  object-fit: contain;
  flex: 0 0 19px;
}

.button:focus-visible,
.menu-toggle:focus-visible,
.journey-detail-button:focus-visible,
.carousel-arrow:focus-visible,
.footer a:focus-visible,
.floating-contact:focus-visible {
  outline: 3px solid rgba(235, 31, 116, 0.24);
  outline-offset: 3px;
}

.button--nav {
  min-height: 46px;
  padding-inline: 22px;
  color: var(--navy);
  background: var(--green);
}

.button--nav:hover,
.button--nav:focus-visible {
  background: var(--lime);
}

.button--primary {
  color: var(--navy);
  background: var(--green);
  box-shadow: none;
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--lime);
}

.button--ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  color: var(--navy);
  border-color: var(--green);
  background: var(--green);
}

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

.button--dark:hover,
.button--dark:focus-visible {
  color: var(--navy);
  background: var(--lime);
}

.button--dark:hover .button__icon,
.button--dark:focus-visible .button__icon {
  filter: brightness(0) saturate(100%) invert(3%) sepia(84%) saturate(2605%) hue-rotate(231deg) brightness(87%) contrast(110%);
}

.hero {
  position: relative;
  min-height: 668px;
  color: var(--white);
  isolation: isolate;
  overflow: hidden;
}

.hero__backdrop {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 7, 41, 0.79) 0%, rgba(0, 7, 41, 0.47) 44%, rgba(0, 7, 41, 0.16) 100%),
    url("assets/hero-bicho-grilo.webp") center right / cover no-repeat;
}

.has-managed-hero .hero__backdrop {
  background:
    linear-gradient(90deg, rgba(0, 7, 41, 0.79) 0%, rgba(0, 7, 41, 0.47) 44%, rgba(0, 7, 41, 0.16) 100%),
    var(--managed-hero-image) center right / cover no-repeat;
}

.hero__grid {
  min-height: 668px;
  display: grid;
  grid-template-columns: minmax(360px, 1fr) 387px;
  align-items: center;
  gap: 72px;
  padding: calc(48px + 90px) 0 48px;
}

.hero__copy {
  max-width: 585px;
}

.eyebrow {
  display: inline-flex;
  color: var(--green);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.eyebrow--green {
  color: var(--green-dark);
}

.eyebrow--pink {
  color: var(--pink);
}

.hero h1 {
  font-size: clamp(2.9rem, 5.4vw, 4.5rem);
  line-height: 1.04;
  letter-spacing: -0.06em;
  max-width: 560px;
}

.hero__copy h1 {
  margin-top: 0;
}

.hero__copy p {
  margin: 22px 0 38px;
  max-width: 500px;
  color: rgba(255, 255, 255, 0.87);
  font-size: 1.13rem;
  line-height: 1.65;
}

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

.lead-card {
  padding: 30px 28px;
  color: var(--text);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.lead-card__label {
  margin-bottom: 8px;
  color: var(--green-dark);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lead-card h2 {
  color: var(--navy);
  font-size: 1.52rem;
  line-height: 1.16;
  letter-spacing: -0.04em;
  margin-bottom: 22px;
}

.lead-card label {
  display: block;
  color: #31384a;
  font-size: 0.86rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.lead-card input,
.lead-card select {
  display: block;
  width: 100%;
  height: 48px;
  margin-top: 7px;
  padding: 0 13px;
  border: 1px solid #737a87;
  border-radius: 10px;
  color: var(--text);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.96rem;
  font-weight: 400;
}

.lead-card input:focus,
.lead-card select:focus {
  outline: 0;
  border: 2px solid var(--green-dark);
  padding-inline: 12px;
}

.lead-card__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.select-wrap {
  position: relative;
  display: block;
}

.select-wrap select {
  padding-right: 38px;
  appearance: none;
  cursor: pointer;
}

.select-wrap svg {
  position: absolute;
  top: 50%;
  right: 13px;
  width: 19px;
  height: 19px;
  pointer-events: none;
  fill: none;
  stroke: var(--navy);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform: translateY(-50%);
}

.lead-card__submit {
  width: 100%;
  margin-top: 7px;
}

.lead-card__submit:disabled {
  color: rgba(0, 7, 41, 0.42);
  background: #dfe5df;
  cursor: not-allowed;
}

.lead-card__submit:disabled:hover,
.lead-card__submit:disabled:focus-visible {
  color: rgba(0, 7, 41, 0.42);
  background: #dfe5df;
}

.form-message {
  min-height: 20px;
  margin-top: 13px;
  color: var(--green-dark);
  font-size: 0.87rem;
  text-align: center;
  font-weight: 600;
}

.form-message:empty {
  display: none;
}

.proof {
  position: relative;
  z-index: 2;
  margin-top: -1px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

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

.proof__item {
  padding: 30px clamp(16px, 3vw, 42px);
  border-right: 1px solid var(--line);
}

.proof__item:first-child {
  padding-left: 0;
}

.proof__item:last-child {
  border-right: 0;
}

.proof__item strong {
  display: block;
  color: var(--navy);
  font-size: 1.12rem;
  margin-bottom: 5px;
}

.proof__icon {
  width: 24px;
  height: 24px;
  display: block;
  margin-bottom: 15px;
  fill: none;
  stroke: var(--green-dark);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.proof__item span {
  color: var(--muted);
  font-size: 0.9rem;
}

.section {
  padding: 92px 0;
}

.section-heading {
  margin-bottom: 42px;
}

.section-heading h2,
.why h2,
.testimonial-intro h2,
.invitation h2 {
  color: var(--navy);
  font-size: clamp(2rem, 3vw, 2.65rem);
  line-height: 1.13;
  letter-spacing: -0.055em;
}

.section-heading p {
  max-width: 540px;
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.65;
}

.journeys {
  background: var(--fog);
}

.journeys .section-heading p {
  max-width: min(100%, 980px);
}

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

.journey-card {
  overflow: hidden;
  min-height: 282px;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 22px;
  box-shadow: 0 5px 22px rgba(0, 7, 41, 0.045);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.journey-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 42px rgba(0, 7, 41, 0.09);
}

.journey-card__visual {
  height: 138px;
  position: relative;
  padding: 16px;
  display: flex;
  align-items: start;
  justify-content: space-between;
  overflow: hidden;
  background-position: center;
  background-size: cover;
}

.journey-card__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 7, 41, 0.34), rgba(0, 7, 41, 0.05));
}

.journey-card__visual span {
  position: relative;
  z-index: 1;
  padding: 7px 12px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.73);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.journey-card__visual svg {
  position: absolute;
  bottom: 37px;
  right: 34px;
  fill: none;
  stroke: var(--navy);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.86;
}

.journey-icon {
  width: 64px;
  height: 64px;
}

.journey-card__visual--nature {
  background-image: linear-gradient(135deg, rgba(88, 255, 29, 0.28), rgba(0, 7, 41, 0.18)), url("assets/hero-bicho-grilo.webp");
  background-position: center 45%;
}

.journey-card__visual--memory {
  background-image: linear-gradient(135deg, rgba(203, 244, 103, 0.36), rgba(0, 7, 41, 0.2)), url("assets/hero-bicho-grilo.webp");
  background-position: center 35%;
}

.journey-card__visual--science {
  background: #77f84d;
}

.journey-card__visual--play {
  background-image: linear-gradient(135deg, rgba(235, 31, 116, 0.32), rgba(0, 7, 41, 0.2)), url("assets/hero-bicho-grilo.webp");
  background-position: center 52%;
}

.journey-card__visual--seasonal {
  background-image: linear-gradient(135deg, rgba(88, 255, 29, 0.25), rgba(235, 31, 116, 0.22)), url("assets/hero-bicho-grilo.webp");
  background-position: center 40%;
}

.journey-card__body {
  flex: 1;
  padding: 16px;
  min-height: 178px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.journey-card h3 {
  color: var(--navy);
  font-size: 1.12rem;
  margin-bottom: 0;
}

.journey-card p {
  margin: 0;
  min-height: 0;
  max-height: calc(1.45em * 3);
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.42;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.journey-detail-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  gap: 8px;
  margin-top: auto;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--green-dark);
  background: var(--white);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 170ms ease, border-color 170ms ease, color 170ms ease;
}

.journey-detail-button span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 150ms ease;
}

.journey-detail-button svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.journey-detail-button:hover,
.journey-detail-button:focus-visible {
  color: var(--navy);
  border-color: var(--lime);
  background: var(--lime);
}

.journey-detail-button:hover span,
.journey-detail-button:focus-visible span {
  transform: translateX(5px);
}

.journeys-pagination {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.journeys-pagination[hidden] {
  display: none;
}

.journeys-pagination button {
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy);
  background: var(--white);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 750;
  cursor: pointer;
  transition: background-color 170ms ease, border-color 170ms ease, color 170ms ease;
}

.journeys-pagination button:hover,
.journeys-pagination button:focus-visible,
.journeys-pagination button.is-active {
  color: var(--white);
  border-color: var(--pink);
  background: var(--pink);
}

.why {
  background: var(--white);
}

.why__grid {
  display: grid;
  grid-template-columns: 0.88fr 1fr;
  align-items: start;
  gap: 78px;
}

.why__copy p {
  max-width: 475px;
  margin: 19px 0 35px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.68;
}

.why .eyebrow {
  color: var(--green-dark);
}

.features {
  border-top: 1px solid var(--line);
}

.features article {
  display: grid;
  grid-template-columns: 78px 1fr;
  align-items: center;
  gap: 25px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.feature-number {
  color: var(--pink);
  font-size: 2.6rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.04em;
  text-align: center;
}

.features h3 {
  color: var(--navy);
  margin-bottom: 9px;
  font-size: 1.14rem;
}

.features p {
  color: var(--muted);
  line-height: 1.55;
}

.testimonials {
  overflow: hidden;
  background: linear-gradient(180deg, #f8fbf6 0%, var(--white) 100%);
  color: var(--text);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: minmax(0, 1080px);
  justify-content: center;
  gap: 34px;
}

.testimonial-intro {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.testimonial-intro h2 {
  color: var(--navy);
}

.review-stars {
  color: #f7ad00;
  letter-spacing: 1px;
}

.feedback-carousel {
  --review-gap: 22px;
  --review-card-width: calc((100% - var(--review-gap)) / 2);
  position: relative;
  min-width: 0;
  padding: 0 70px;
}

.carousel__viewport {
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
}

.carousel__track {
  display: flex;
  gap: var(--review-gap);
  align-items: stretch;
  min-height: 270px;
  padding-block: 2px;
  transition: transform 360ms ease;
}

.quote-card {
  flex: 0 0 var(--review-card-width);
  height: 270px;
  margin: 0;
  padding: 22px;
  display: flex;
  flex-direction: column;
  color: var(--text);
  background: #f7f9f6;
  border: 1px solid rgba(0, 7, 41, 0.08);
  border-radius: 26px;
  box-shadow: none;
}

.review-stars {
  margin-bottom: 14px;
  font-size: 1.24rem;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1;
  font-family: var(--font-heading);
}

.quote-card p {
  max-width: 610px;
  overflow-y: auto;
  padding-right: 4px;
  color: var(--navy);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
}

.quote-card a {
  margin-top: auto;
  color: #1a73e8;
  font-weight: 600;
}

.review-caption {
  margin-top: auto;
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
}

.review-caption::before {
  content: "— ";
}

.carousel-arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(0, 7, 41, 0.1);
  border-radius: 50%;
  color: var(--navy);
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 7, 41, 0.08);
  cursor: pointer;
  transform: translateY(-50%);
}

.carousel-arrow--prev {
  left: 0;
}

.carousel-arrow--next {
  right: 0;
}

.carousel-arrow:hover,
.carousel-arrow:focus-visible {
  color: var(--navy);
  background: var(--green);
}

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

.carousel__dots {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.carousel__dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 99px;
  background: #cfd7ce;
  cursor: pointer;
}

.carousel__dots button.is-active {
  width: 28px;
  background: var(--green-dark);
}

.tour-drawer[hidden] {
  display: none;
}

.tour-drawer {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: flex;
  justify-content: flex-end;
  padding: 0;
}

.tour-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 7, 41, 0.46);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.tour-modal__content {
  position: relative;
  width: min(720px, calc(100% - 24px));
  height: 100vh;
  max-height: 100vh;
  margin-left: auto;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-radius: 30px 0 0 30px;
  background: var(--white);
  box-shadow: var(--shadow);
  animation: drawerIn 220ms ease both;
}

.tour-modal__scroll {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
}

.tour-modal__close {
  position: absolute;
  z-index: 3;
  top: 22px;
  right: 22px;
  width: 43px;
  height: 43px;
  border: 0;
  border-radius: 50%;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  transition: background-color 170ms ease, color 170ms ease, transform 170ms ease;
}

.tour-modal__close:hover,
.tour-modal__close:focus-visible {
  color: var(--navy);
  background: #f1f3f2;
  transform: none;
}

.tour-modal__image {
  width: 100%;
  height: 190px;
  display: block;
  object-fit: cover;
}

.tour-modal__body {
  padding: 34px clamp(26px, 5vw, 58px) 44px;
}

.tour-modal__body h2 {
  margin-bottom: 16px;
  color: var(--navy);
  font-size: clamp(1.75rem, 3vw, 2.2rem);
  line-height: 1.16;
}

.tour-context {
  margin-bottom: 26px;
}

.tour-context p {
  margin: 0 0 11px;
  color: var(--muted);
  line-height: 1.62;
}

.tour-context p:last-child {
  margin-bottom: 0;
}

.tour-context__list {
  margin: 8px 0 0;
  padding-left: 21px;
  color: var(--muted);
  line-height: 1.55;
}

.tour-detail__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 19px;
  margin-bottom: 24px;
}

.tour-modal__body h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 1rem;
}

.tour-detail__grid p {
  color: var(--muted);
  line-height: 1.5;
}

.tour-benefits {
  margin: 0 0 30px;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.7;
}

.tour-modal__footer {
  flex: 0 0 auto;
  z-index: 2;
  padding: 18px clamp(26px, 5vw, 58px);
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.tour-modal__footer .button {
  width: 100%;
}

@keyframes drawerIn {
  from {
    opacity: 0;
    transform: translateX(24px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.invitation {
  padding: 58px 0;
  color: var(--navy);
  background: var(--lime);
  border-top: 0;
}

.invitation__inner {
  display: grid;
  place-items: center;
  text-align: center;
}

.invitation .eyebrow {
  color: var(--navy);
  margin-bottom: 13px;
}

.invitation h2 {
  max-width: 760px;
  color: var(--navy);
}

.invitation__copy {
  display: grid;
  justify-items: center;
  gap: 18px;
  max-width: 760px;
}

.invitation__copy p {
  max-width: 620px;
  color: rgba(0, 7, 41, 0.78);
  font-size: 1.02rem;
  line-height: 1.65;
}

.invitation .button--primary {
  margin-top: 2px;
  color: var(--white);
  background: var(--navy);
  box-shadow: none;
}

.invitation .button--primary:hover,
.invitation .button--primary:focus-visible {
  color: var(--white);
  background: var(--pink);
}

.footer {
  padding: 44px 0 26px;
  color: var(--muted);
  background: #f7f9f6;
  border-top: 1px solid var(--line);
}

.footer__columns {
  display: grid;
  grid-template-columns: 1.35fr repeat(4, 1fr);
  align-items: start;
  gap: clamp(24px, 3.6vw, 54px);
}

.footer__brand-block {
  display: grid;
  gap: 15px;
}

.footer__logo {
  width: 118px;
  height: 76px;
  object-fit: contain;
  filter: brightness(0);
}

.footer__brand-block p {
  max-width: 230px;
  line-height: 1.55;
}

.footer h3 {
  margin: 0 0 16px;
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 800;
}

.footer__group,
.footer__brand-block {
  font-size: 0.9rem;
}

.footer__group {
  display: grid;
  gap: 13px;
}

.footer__group[aria-label="Conheça também"] {
  gap: 24px;
}

.footer a {
  width: fit-content;
  color: var(--muted);
  font-weight: 500;
  transition: color 170ms ease;
}

.footer a:hover,
.footer a:focus-visible {
  color: var(--green-dark);
}

.footer__admin {
  color: var(--green-dark);
}

.footer__certificates {
  margin-top: 44px;
  padding: 28px 0 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(22px, 4vw, 54px);
}

.footer__certificates h3 {
  margin-bottom: 10px;
}

.footer__certificates p {
  max-width: 430px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.footer__certificate-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(22px, 4vw, 46px);
  flex-wrap: wrap;
}

.footer__certificate {
  display: flex;
  align-items: center;
  min-height: 72px;
}

.footer__certificate img {
  width: 100%;
  max-width: 190px;
  max-height: 62px;
  object-fit: contain;
  object-position: center;
}

.footer__certificate img[src*="cadastur"] {
  mix-blend-mode: multiply;
}

.footer__social-row {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.footer__socials {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer__socials a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  background: #f7f9f6;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.footer__socials a:hover,
.footer__socials a:focus-visible {
  color: var(--white);
  background: var(--pink);
  border-color: var(--pink);
}

.footer__socials svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer__social-row p {
  font-size: 0.86rem;
}

.floating-contact {
  position: fixed;
  z-index: 8;
  bottom: 23px;
  right: 24px;
  width: 62px;
  height: 62px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--white);
  background: #25d366;
  box-shadow: 0 14px 32px rgba(0, 7, 41, 0.2);
  opacity: 1;
  pointer-events: auto;
  transform: none;
  visibility: visible;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease,
    background-color 180ms ease, box-shadow 180ms ease;
}

.floating-contact.is-visible {
  transform: none;
}

.floating-contact.is-visible:hover,
.floating-contact.is-visible:focus-visible {
  color: var(--white);
  background: var(--pink);
  box-shadow: 0 18px 38px rgba(235, 31, 116, 0.3);
}

.floating-contact .whatsapp-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

@media (max-width: 990px) {
  :root {
    --container: min(100% - 38px, 680px);
  }

  .site-header {
    height: 82px;
  }

  .hero__grid {
    padding-top: calc(42px + 82px);
  }

  .brand {
    width: 122px;
  }

  .brand img {
    height: 64px;
  }

  .menu-toggle {
    display: block;
    z-index: 12;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .navigation {
    position: fixed;
    top: 82px;
    right: 0;
    bottom: 0;
    left: 0;
    min-height: calc(100dvh - 82px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 30px max(20px, calc((100vw - 680px) / 2));
    color: var(--navy);
    background: rgba(255, 255, 255, 0.985);
    border-top: 1px solid var(--line);
    box-shadow: 0 24px 48px rgba(0, 7, 41, 0.1);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  .navigation.is-open {
    display: flex;
  }

  .navigation > a:not(.button) {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-size: 1.1rem;
  }

  .navigation .button {
    margin-top: 16px;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 38px;
    padding: calc(68px + 82px) 0 48px;
  }

  .hero__backdrop {
    background:
      linear-gradient(90deg, rgba(0, 7, 41, 0.84), rgba(0, 7, 41, 0.48)),
      url("assets/hero-bicho-grilo.webp") center / cover no-repeat;
  }

  .lead-card {
    max-width: 470px;
  }

  .why__grid,
  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  .proof__grid,
  .journeys__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof__item {
    padding-inline: 0 clamp(18px, 4vw, 30px);
    border-bottom: 1px solid var(--line);
  }

  .proof__item:nth-child(2n) {
    padding-left: clamp(18px, 4vw, 30px);
    border-right: 0;
  }

  .proof__item:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .invitation__inner {
    flex-direction: column;
    align-items: start;
  }

  .why__grid,
  .testimonials__grid {
    gap: 43px;
  }

  .feedback-carousel {
    --review-card-width: calc((100% - var(--review-gap)) / 2);
    padding-inline: 56px;
  }

  .footer__columns {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__certificates {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 701px) and (max-width: 1180px) {
  .journeys__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  :root {
    --container: calc(100% - 32px);
  }

  .navigation {
    inset-block-start: 82px;
    padding-inline: 16px;
  }

  .hero {
    min-height: auto;
  }

  .hero__grid {
    min-height: auto;
    padding: calc(53px + 82px) 0 30px;
  }

  .hero h1 {
    font-size: clamp(2.46rem, 14vw, 3.1rem);
  }

  .hero__copy p {
    margin-bottom: 30px;
    font-size: 1rem;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .lead-card {
    padding: 26px 19px 21px;
  }

  .proof__grid,
  .journeys__grid,
  .lead-card__row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .proof__item,
  .proof__item:nth-child(2n) {
    padding-inline: 0;
    border-right: 0;
  }

  .proof__item:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .proof__item:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 68px 0;
  }

  .section-heading {
    margin-bottom: 29px;
  }

  .quote-card {
    height: 286px;
    padding: 24px 22px;
  }

  .feedback-carousel {
    --review-card-width: 100%;
    padding-inline: 0;
  }

  .carousel__track {
    min-height: 286px;
  }

  .tour-drawer {
    padding: 0;
  }

  .tour-modal__content {
    display: flex;
    width: calc(100% - 14px);
    max-height: 100vh;
    border-radius: 22px 0 0 22px;
  }

  .tour-modal__body {
    padding: 28px 22px 32px;
  }

  .tour-modal__footer {
    padding: 14px 22px 18px;
  }

  .tour-modal__image {
    height: 160px;
  }

  .tour-detail__grid {
    grid-template-columns: 1fr;
  }

  .carousel-arrow {
    top: auto;
    bottom: -8px;
    transform: none;
  }

  .carousel-arrow--prev {
    left: 2px;
  }

  .carousel-arrow--next {
    right: 2px;
  }

  .carousel__dots {
    min-height: 52px;
    align-items: center;
  }

  .invitation {
    padding-block: 49px;
  }

  .footer__columns {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer__certificate-list {
    grid-template-columns: 1fr;
  }

  .footer__certificate img {
    max-width: 190px;
  }

  .footer__social-row {
    margin-top: 42px;
    align-items: flex-start;
    flex-direction: column;
  }

  .floating-contact {
    width: 58px;
    height: 58px;
  }
}
