/* ===================================================================
   GREENLIFE RESIDENCIAL - LANDING PAGE
   =================================================================== */

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

html,
body,
h1,
h2,
h3,
h4,
p,
ul,
li,
figure {
  margin: 0;
  padding: 0;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
}

ul {
  list-style: none;
}

/* ---------- DESIGN TOKENS ---------- */
:root {
  --color-green-dark: #096a39;
  --color-green: #046938;
  --color-green-light: #8fc640;
  --color-green-light-2: #91c145;
  --color-blue: #384796;
  --color-yellow: #f8ac13;
  --color-black: #000000;
  --color-white: #ffffff;

  --font-heading: 'Mulish', sans-serif;
  --font-body: 'Mulish', sans-serif;
  --font-alt: 'Montserrat', sans-serif;

  --container-max: 1280px;
  --container-pad: 24px;

  --header-h: 90px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-black);
  background: var(--color-white);
  line-height: 1.5;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.3px;
  white-space: nowrap;
  border-radius: 999px;
  padding: 13px 28px;
  transition: transform .2s ease, background-color .2s ease, opacity .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn img {
  width: 16px;
  height: 16px;
}

.btn--yellow {
  background: var(--color-yellow);
  color: var(--color-white);
}

.btn--yellow:hover {
  opacity: 0.9;
}

.btn--solid {
  background: var(--color-green);
  color: var(--color-white);
}

.btn--solid:hover {
  background: var(--color-green-dark);
}

.btn--outline {
  background: transparent;
  border: 1px solid var(--color-white);
  color: var(--color-white);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* ===================================================================
   HEADER
   =================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
}

.header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--color-green);
  border-radius: 60px;
  padding: 14px 28px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.header__logo img {
  height: 32px;
  width: auto;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: center;
}

.header__nav a {
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.3px;
  white-space: nowrap;
  opacity: 0.9;
  transition: opacity .2s ease;
}

.header__nav a:hover {
  opacity: 1;
}

.header__cta {
  flex-shrink: 0;
}

.header__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  padding: 0;
  flex-shrink: 0;
}

.header__toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}

.header__toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header__toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.header__toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===================================================================
   HERO
   =================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-h) + 40px);
  padding-bottom: 0;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 105, 56, 0.55);
}

.hero__content {
  position: relative;
  width: 100%;
}

.hero__tag {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.hero__tag-bar {
  width: 7px;
  height: 18px;
  background: var(--color-yellow);
  flex-shrink: 0;
}

.hero__tag span:last-child {
  color: var(--color-white);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1px;
}

.hero__title {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-white);
  font-size: clamp(32px, 5vw, 60px);
  line-height: 1.15;
  max-width: 600px;
  margin-bottom: 28px;
}

.hero__title-italic {
  font-style: italic;
  color: var(--color-yellow);
}

.hero__desc {
  color: var(--color-white);
  font-size: clamp(15px, 1.6vw, 17px);
  max-width: 460px;
  line-height: 1.4;
  margin-bottom: 36px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 120px;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 56px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 30px 30px 0 0;
  padding: 32px 35px 40px 95px;
  width: max-content;
  max-width: calc(100% - 48px);
  backdrop-filter: blur(4px);
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}

.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 130px;
}

.hero__stat-number {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 48px;
  color: var(--color-green-dark);
  line-height: 1;
}

.hero__stat-number small {
  font-size: 24px;
  font-weight: 700;
}

.hero__stat-label {
  font-size: 15px;
  color: var(--color-green-dark);
  line-height: 1.3;
  max-width: 160px;
}

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 1024px) {
  .header__nav {
    display: none;
  }

  .header__toggle {
    display: flex;
  }

  .header__cta {
    display: none;
  }

  .header__bar.is-open .header__nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    background: var(--color-green);
    border-radius: 24px;
    padding: 24px 28px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  }

  .header__bar.is-open .header__cta {
    display: inline-flex;
    position: absolute;
    top: calc(100% + 12px);
    right: 28px;
    margin-top: 168px;
  }

  .header__bar {
    position: relative;
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 74px;
  }

  .header {
    padding: 12px 20px;
  }

  .header__bar {
    padding: 12px 20px;
    border-radius: 40px;
  }

  .header__logo img {
    height: 26px;
  }

  .hero {
    padding-top: calc(var(--header-h) + 160px);
    align-items: flex-start;
    padding-bottom: 0;
  }

  .hero__title {
    font-size: 40px;
    margin-bottom: 12px;
  }

  .hero__desc {
    margin-bottom: 28px;
  }

  .hero__stats {
    padding: 24px 24px;
    gap: 28px 32px;
    border-radius: 24px;
  }

  .hero__stat-number {
    font-size: 38px;
  }

  .hero__actions {
    gap: 12px;
  }

  .btn {
    padding: 12px 22px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .hero__stats {
    flex-wrap: nowrap;
    gap: 10px;
    padding: 20px 16px;
    border-radius: 20px;
  }

  .hero__stat {
    min-width: 0;
    gap: 4px;
  }

  .hero__stat-number {
    font-size: 26px;
  }

  .hero__stat-number small {
    font-size: 15px;
  }

  .hero__stat-label {
    font-size: 11px;
    line-height: 1.25;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
  }
}

/* ===================================================================
   SHARED SECTION HEADING COMPONENTS
   =================================================================== */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  color: var(--color-green-dark);
  margin-bottom: 16px;
}

.eyebrow--light {
  color: var(--color-white);
}

.section-title {
  position: relative;
  display: block;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.25;
  color: var(--color-black);
  padding-left: 24px;
  margin-bottom: 28px;
  max-width: 460px;
}

.section-title--light {
  color: var(--color-white);
}

.section-title--center {
  margin-inline: auto;
  padding-left: 0;
  text-align: center;
  max-width: 880px;
}

.section-title--center .section-title__bar {
  position: static;
  display: inline-block;
  vertical-align: -4px;
  margin-right: 12px;
}

.section-title--center .section-title__dash {
  margin: 20px auto 0;
}

.section-title__bar {
  position: absolute;
  left: 0;
  top: 6px;
  width: 7px;
  height: 26px;
  background: var(--color-yellow);
}

.section-title__dash {
  display: block;
  width: 26px;
  height: 7px;
  background: var(--color-green-light);
  margin-top: 20px;
}

/* ===================================================================
   O PROJETO
   =================================================================== */
.projeto {
  position: relative;
  background: var(--color-green-dark);
  min-height: 640px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.projeto__media {
  position: absolute;
  inset: 0;
  width: 55%;
  height: 100%;
  z-index: 1;
}

.projeto__foto {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.projeto__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 55% 45%;
  width: 100%;
}

.projeto__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  grid-column: 2;
  color: var(--color-white);
  padding: 80px max(24px, calc((100vw - var(--container-max)) / 2 + var(--container-pad))) 80px 56px;
}

.projeto__text {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.4;
  max-width: 440px;
  padding-left: 24px;
  opacity: 0.95;
}

@media (max-width: 900px) {
  .projeto {
    flex-direction: column;
    min-height: 0;
  }

  .projeto__media {
    position: relative;
    width: 100%;
    height: 320px;
  }

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

  .projeto__content {
    grid-column: 1;
    padding: 48px 24px;
  }
}

@media (max-width: 480px) {
  .projeto__media {
    height: 260px;
  }

  .section-title {
    font-size: 28px;
  }

  .projeto__text {
    font-size: 16px;
  }
}

/* ===================================================================
   O CONDOMÍNIO (DIFERENCIAIS)
   =================================================================== */
.condominio {
  background: var(--color-blue);
  padding: 90px 0;
}

.condominio__head {
  text-align: center;
  margin-bottom: 56px;
}

.condominio__head .eyebrow {
  display: block;
}

.condominio__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: 32px 28px;
}

.feature-card--highlight {
  background: var(--color-white);
}

.feature-card--highlight .feature-card__title,
.feature-card--highlight .feature-card__text {
  color: var(--color-black);
}

.feature-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--color-blue);
  color: var(--color-white);
  margin-bottom: 24px;
}

.feature-card__icon svg {
  width: 22px;
  height: 22px;
}

.feature-card__title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 20px;
  color: var(--color-white);
  line-height: 1.3;
  margin-bottom: 16px;
}

.feature-card__text {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 900px) {
  .condominio__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .condominio {
    padding: 64px 0;
  }

  .condominio__head {
    margin-bottom: 36px;
  }

  .condominio__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ===================================================================
   A UNIDADE
   =================================================================== */
.unidade {
  background: #f7f7f7;
  padding: 90px 0;
}

.unidade__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  column-gap: 64px;
  row-gap: 48px;
}

.unidade__content {
  grid-column: 1;
  grid-row: 1;
}

.unidade__text {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: rgba(0, 0, 0, 0.75);
  max-width: 460px;
  margin-bottom: 32px;
}

.unidade__badge {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--color-green-dark);
  border-radius: 16px;
  padding: 20px 90px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 22px;
  color: var(--color-green-dark);
}

.unidade__plans {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.unidade__plan {
  position: relative;
}

.unidade__plan img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.unidade__plan-tag {
  position: absolute;
  top: -16px;
  left: 24px;
  background: var(--color-green-dark);
  color: var(--color-white);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.5px;
  border-radius: 16px;
  padding: 8px 18px;
  z-index: 2;
}

.unidade__plan--upper .unidade__plan-tag {
  left: auto;
  right: 24px;
}

.unidade__tags {
  grid-column: 1 / -1;
  grid-row: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.unidade__room-tag {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-green-dark);
  border-radius: 14px;
  padding: 14px 20px;
  flex: 1;
  min-width: 140px;
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--color-green-dark);
  line-height: 1.5;
}

.unidade__room-tag strong {
  font-weight: 700;
  font-size: 15px;
}

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

  .unidade__content {
    grid-column: 1;
    grid-row: 1;
  }

  .unidade__plans {
    grid-column: 1;
    grid-row: 2;
  }

  .unidade__tags {
    grid-column: 1;
    grid-row: 3;
  }

  .unidade {
    padding: 64px 0;
  }
}

@media (max-width: 600px) {
  .unidade__tags {
    flex-direction: column;
  }

  .unidade__room-tag {
    min-width: 0;
  }

  .unidade__badge {
    font-size: 18px;
    padding: 16px 28px;
  }
}

/* ===================================================================
   A LOCALIZAÇÃO
   =================================================================== */
.localizacao__top {
  display: flex;
  background: var(--color-green-dark);
  overflow: hidden;
}

.localizacao__aerial {
  position: relative;
  flex: 1 1 60%;
  min-width: 0;
}

.localizacao__aerial>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.localizacao__content {
  flex: 1 1 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px max(24px, calc((100vw - var(--container-max)) / 2 + var(--container-pad))) 64px 56px;
  color: var(--color-white);
}

.localizacao__text {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
}

.localizacao__address {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-green-light);
}

.localizacao__address strong {
  color: var(--color-green-light);
}

.localizacao__map {
  position: relative;
}

.localizacao__map iframe {
  width: 100%;
  height: 620px;
  border: 0;
  display: block;
}

.loc-points {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--color-yellow);
  border-radius: 16px;
  padding: 24px 28px;
  width: min(90%, 460px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.loc-points__title {
  display: block;
  color: var(--color-white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.loc-points__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 20px;
}

.loc-points__item {
  display: flex;
  flex-direction: column;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-green-dark);
}

.loc-points__time {
  color: var(--color-white);
  font-size: 12px;
  margin-bottom: 2px;
}

.localizacao__actions {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 16px;
}

@media (max-width: 900px) {
  .localizacao__top {
    flex-direction: column;
  }

  .localizacao__aerial {
    aspect-ratio: 4 / 3;
  }

  .loc-points {
    width: min(94%, 420px);
  }

  .localizacao__map iframe {
    height: 480px;
  }
}

@media (max-width: 600px) {
  .localizacao__content {
    padding: 40px 24px;
  }

  .loc-points {
    padding: 18px 20px;
  }

  .loc-points__grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .localizacao__actions {
    flex-direction: column;
    width: 90%;
    bottom: 16px;
  }

  .localizacao__actions .btn {
    width: 100%;
  }

  .localizacao__map iframe {
    height: 420px;
  }
}

@media (max-width: 700px) {
  .localizacao__map {
    display: flex;
    flex-direction: column;
  }

  .loc-points {
    position: static;
    order: -1;
    transform: none;
    width: auto;
    margin: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  }

  .localizacao__actions {
    position: static;
    order: 1;
    transform: none;
    width: auto;
    margin: 16px;
  }

  .localizacao__map iframe {
    height: 360px;
    order: 0;
  }
}

/* ===================================================================
   O LAZER
   =================================================================== */
.lazer {
  position: relative;
  background: var(--color-white);
  min-height: 640px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.lazer__media {
  position: absolute;
  inset: 0;
  left: 45%;
  width: 55%;
  height: 100%;
}

.lazer__foto {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lazer__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 45% 55%;
  width: 100%;
}

.lazer__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  grid-column: 1;
  padding: 80px 56px 80px max(24px, calc((100vw - var(--container-max)) / 2 + var(--container-pad)));
}

.lazer__text {
  font-family: var(--font-body);
  font-size: 16px;
  padding-left: 24px;
  line-height: 1.55;
  color: rgba(0, 0, 0, 0.75);
  max-width: 420px;
}

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

@media (max-width: 900px) {
  .lazer {
    flex-direction: column;
    min-height: 0;
  }

  .lazer__media {
    position: relative;
    left: 0;
    width: 100%;
    height: 320px;
  }

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

  .lazer__content {
    grid-column: 1;
    padding: 48px 24px;
  }
}

@media (max-width: 480px) {
  .lazer__media {
    height: 260px;
  }
}

/* ===================================================================
   GALERIA
   =================================================================== */
.galeria {
  padding: 90px 0 100px;
  background: var(--color-white);
}

.galeria__tabs {
  display: flex;
  justify-content: flex-start;
  gap: 8px;
  margin-bottom: 0;
  padding-left: 10%;
}

.galeria__tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(56, 71, 150, 0.12);
  color: var(--color-blue);
  border: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.3px;
  padding: 16px 22px;
  border-radius: 16px 16px 0 0;
  transition: background-color .2s ease, color .2s ease;
}

.galeria__tab.is-active {
  background: var(--color-blue);
  color: var(--color-white);
}

.galeria__carousel {
  position: relative;
  max-width: 1600px;
  margin-left: max(24px, calc((100vw - var(--container-max)) / 2 + var(--container-pad)));
}

.galeria__track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 8px;
  scrollbar-width: none;
}

.galeria__track::-webkit-scrollbar {
  display: none;
}

.galeria__slide {
  flex: 0 0 auto;
  width: min(85%, 1280px);
  scroll-snap-align: start;
  border-radius: 32px;
  overflow: hidden;
}

.galeria__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}

.galeria__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-blue);
  color: var(--color-white);
  border: none;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  z-index: 3;
  transition: background-color .2s ease, transform .2s ease;
}

.galeria__arrow--prev {
  left: 20px;
}

.galeria__arrow--next {
  right: 20px;
}

.galeria__arrow:hover {
  background: var(--color-green-dark);
  transform: translateY(-50%) scale(1.05);
}

@media (max-width: 768px) {
  .galeria {
    padding: 56px 0 64px;
  }

  .galeria__tabs {
    flex-wrap: nowrap;
    padding-left: 0;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .galeria__tabs::-webkit-scrollbar {
    display: none;
  }

  .galeria__tab {
    font-size: 11px;
    padding: 12px 16px;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .galeria__arrow {
    width: 38px;
    height: 38px;
  }

  .galeria__arrow--prev {
    left: 10px;
  }

  .galeria__arrow--next {
    right: 10px;
  }

  .galeria__slide {
    width: min(88vw, 900px);
    border-radius: 20px;
  }
}

/* ===================================================================
   IMPLANTAÇÃO DO CONDOMÍNIO
   =================================================================== */
.implantacao {
  background: var(--color-blue);
  padding: 90px 0;
}

.implantacao .section-title {
  color: var(--color-white);
  margin-bottom: 40px;
  max-width: none;
}

.implantacao__media {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 32px;
}

.implantacao__media img {
  width: 100%;
  height: auto;
  display: block;
}

.impl-pin {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--color-yellow);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.35);
}

.impl-pin--static {
  position: static;
  transform: none;
  flex-shrink: 0;
}

.implantacao__legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
}

.implantacao__legend-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-white);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
}

@media (max-width: 768px) {
  .implantacao {
    padding: 56px 0;
  }

  .implantacao .section-title {
    margin-bottom: 24px;
  }

  .implantacao__legend {
    justify-content: flex-start;
    gap: 20px 32px;
  }
}

/* ===================================================================
   FICHA TÉCNICA
   =================================================================== */
.ficha {
  position: relative;
  background: var(--color-green-light-2);
  min-height: 620px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.ficha__media {
  position: absolute;
  inset: 0;
  left: 48%;
  width: 52%;
  height: 100%;
}

.ficha__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ficha__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 48% 52%;
  width: 100%;
}

.ficha__content {
  grid-column: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 40px 80px max(24px, calc((100vw - var(--container-max)) / 2 + var(--container-pad)));
}

.ficha .section-title {
  color: var(--color-white);
}

.ficha__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.ficha__col {
  font-family: var(--font-body);
}

.ficha__col dt {
  font-weight: 700;
  font-size: 15px;
  color: var(--color-white);
  margin-bottom: 4px;
  margin-top: 20px;
}

.ficha__col dt:first-child {
  margin-top: 0;
}

.ficha__col dd {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.ficha__col-extra {
  margin-top: 20px;
}

@media (max-width: 900px) {
  .ficha {
    flex-direction: column;
    min-height: 0;
  }

  .ficha__media {
    position: relative;
    left: 0;
    width: 100%;
    height: 320px;
  }

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

  .ficha__content {
    grid-column: 1;
    padding: 48px 24px;
  }

  .ficha__cols {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

/* ===================================================================
   CTA FINAL + FORMULÁRIO
   =================================================================== */
.cta {
  background: var(--color-green-dark);
  padding: 100px 0;
}

.cta__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.cta .section-title {
  color: var(--color-white);
  max-width: 480px;
}

.cta__text {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-white);
  max-width: 500px;
  margin-bottom: 20px;
}

.cta__text strong {
  color: var(--color-green-light);
}

.cta__text--highlight {
  color: var(--color-green-light);
  font-weight: 700;
}

.cta__form-card {
  background: var(--color-white);
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.cta__form-title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 30px;
  letter-spacing: 0.5px;
  color: var(--color-black);
  margin-bottom: 8px;
}

.cta__form-subtitle {
  font-family: var(--font-alt);
  font-size: 13px;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 28px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-field label {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 0.5px;
  color: var(--color-black);
}

.form-field input,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-black);
  background: rgba(9, 106, 57, 0.12);
  border: none;
  border-radius: 20px;
  padding: 10px 20px;
  resize: none;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: 2px solid var(--color-green-dark);
}

.cta__form-footer {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.cta__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.3;
  color: var(--color-black);
  flex: 1;
  min-width: 200px;
}

.cta__checkbox input {
  margin-top: 3px;
  accent-color: var(--color-green-dark);
}

.cta__checkbox a {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .cta {
    padding: 64px 0;
  }

  .cta__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cta__form-card {
    padding: 32px 24px;
  }
}

@media (max-width: 480px) {
  .cta__form-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .cta__form-footer .btn {
    width: 100%;
  }
}

/* ===================================================================
   FOOTER
   =================================================================== */
.footer {
  background: var(--color-blue);
  padding: 56px 0 32px;
}

.footer__logo img {
  height: 40px;
  width: auto;
  margin-bottom: 32px;
}

.footer__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer__contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.footer__contact {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-white);
  font-family: var(--font-alt);
  font-size: 13px;
  transition: opacity .2s ease;
}

.footer__contact:hover {
  opacity: 0.8;
}

.footer__contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--color-yellow);
  color: var(--color-white);
  flex-shrink: 0;
}

.footer__credit {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-white);
  font-family: var(--font-alt);
  font-size: 15px;
}

.footer__credit-brand {
  font-weight: 700;
  font-style: italic;
}

.footer__bottom {
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-alt);
  font-size: 13px;
}

@media (max-width: 600px) {
  .footer {
    padding: 40px 0 24px;
  }

  .footer__logo img {
    height: 32px;
    margin-bottom: 24px;
  }

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

  .footer__contacts {
    flex-direction: column;
    gap: 14px;
  }
}