:root {
  --primary: #124346;
  --primary-dark: #082b2f;
  --accent: #dd680e;
  --accent-dark: #b94f07;
  --text: #1f2933;
  --muted: #667085;
  --border: #e5e7eb;
  --soft: #f6f7f5;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(8, 43, 47, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 0;
  scrollbar-gutter: stable;
  overflow-y: scroll;
  /* Encaixa cada seção ao rolar (suave: não prende em seções altas) */
  scroll-snap-type: y proximity;
}

.hero,
main > section {
  scroll-snap-align: start;
}

html.is-jump-transition {
  scroll-behavior: auto;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background: var(--white);
}

body::after {
  content: "";
  position: fixed;
  z-index: 100;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 38%, rgba(221, 104, 14, 0.16), rgba(8, 43, 47, 0) 32%),
    rgba(8, 43, 47, 0.94);
  opacity: 0;
  transition: opacity 0.34s ease;
}

body.is-section-transitioning::after {
  opacity: 1;
}

main {
  transition: filter 0.34s ease, transform 0.34s ease;
}

body.is-section-transitioning main {
  filter: blur(3px);
  transform: scale(0.992);
}

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

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

.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

/* Sidebar lateral (rail) de vidro fosco — só ícones, texto em tooltip — desktop */
.site-header {
  position: fixed;
  z-index: 120;
  top: 50%;
  left: 18px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 20px 12px;
  color: #fff;
  border-radius: 26px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.brand {
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand img {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  object-fit: contain;
  padding: 6px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
  opacity: 0;
  visibility: hidden;
  transform: scale(0.85);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease, box-shadow 0.3s ease;
}

.site-header.is-branded .brand img {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.site-header.is-branded .brand:hover img {
  transform: scale(1.08);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}

.brand__mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  padding: 6px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.95);
}

.brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  position: relative;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  color: rgba(255, 255, 255, 0.88);
  transition: background 0.28s ease, color 0.28s ease;
}

.site-nav a svg {
  width: 26px;
  height: 26px;
  transition: transform 0.28s ease, color 0.28s ease;
}

/* Texto como tooltip — aparece só ao passar no ícone */
.site-nav a span {
  position: absolute;
  left: calc(100% + 16px);
  top: 50%;
  padding: 8px 13px;
  border-radius: 10px;
  background: rgba(8, 43, 47, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 650;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-50%) translateX(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.site-nav a span::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 50%;
  width: 10px;
  height: 10px;
  transform: translateY(-50%) rotate(45deg);
  background: rgba(8, 43, 47, 0.97);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.site-nav a:hover svg {
  transform: scale(1.12);
  color: var(--accent);
}

.site-nav a:hover span {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* Telas claras (Diferenciais, Plantas, Galeria, Localização, Parceiros):
   ícones escuros para contrastar com o fundo claro */
.site-header.on-light .site-nav a {
  color: var(--primary-dark);
}

.site-header.on-light .site-nav a:hover {
  background: rgba(8, 43, 47, 0.08);
  color: var(--accent);
}

.site-nav .nav-cta {
  margin-left: 8px;
  background: var(--accent);
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 2px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100svh;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
}

.hero__slides,
.hero__slide,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.035);
  transition: opacity 1.55s ease-in-out, transform 8s ease;
  will-change: opacity, transform;
}

.hero__slide.is-active {
  opacity: 1;
  transform: scale(1.01);
}

.hero__overlay {
  z-index: 1;
  background:
    radial-gradient(120% 90% at 22% 50%, rgba(8, 43, 47, 0.6), rgba(8, 43, 47, 0.12) 55%, rgba(8, 43, 47, 0) 75%),
    linear-gradient(90deg, rgba(8, 43, 47, 0.42), rgba(8, 43, 47, 0.1) 50%, rgba(8, 43, 47, 0)),
    linear-gradient(0deg, rgba(8, 43, 47, 0.38), rgba(8, 43, 47, 0) 55%);
  transition: opacity 0.6s ease;
}

/* Ao navegar para outras fotos do carrossel: imagem mais clara e
   escurecimento reforçado no rodapé para destacar a legenda centralizada */
.hero.is-browsing .hero__overlay {
  background:
    linear-gradient(0deg, rgba(8, 43, 47, 0.9) 0%, rgba(8, 43, 47, 0.55) 18%, rgba(8, 43, 47, 0) 46%);
}

.hero__content {
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.hero.is-browsing .hero__content {
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  pointer-events: none;
}

.hero__caption {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 84px;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  pointer-events: none;
}

.hero.is-browsing .hero__caption {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.hero__caption-title {
  margin: 0 auto;
  max-width: 900px;
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 850;
  line-height: 1.05;
  text-shadow: 0 4px 26px rgba(0, 0, 0, 0.78), 0 1px 4px rgba(0, 0, 0, 0.6);
}

.hero__caption-desc {
  margin: 14px auto 0;
  max-width: 680px;
  color: #fff;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  line-height: 1.5;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.82), 0 1px 3px rgba(0, 0, 0, 0.6);
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  justify-content: center;
  padding: 128px 0 74px;
  animation: heroContentIn 0.95s ease-out both;
}

.eyebrow {
  margin: 0 0 14px;
  color: #ffb877;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.75);
}

.hero h1,
.section h2,
.contact h2,
.location-grid h2 {
  margin: 0;
  color: inherit;
  font-weight: 850;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(3.8rem, 9vw, 7.8rem);
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.7), 0 1px 4px rgba(0, 0, 0, 0.5);
}

.hero__subtitle {
  margin: 16px 0 0;
  color: #ffba7d;
  font-size: clamp(1.25rem, 3vw, 2.05rem);
  font-weight: 750;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.72), 0 1px 4px rgba(0, 0, 0, 0.5);
}

.hero__text {
  max-width: 640px;
  margin: 18px 0 0;
  color: #fff;
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.68;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.78), 0 1px 3px rgba(0, 0, 0, 0.5);
}

.hero__actions,
.contact__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 800;
  transition: transform 0.28s ease, background 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

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

.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 14px 34px rgba(221, 104, 14, 0.28);
}

.btn--primary:hover {
  background: var(--accent-dark);
}

.btn--ghost {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(8, 43, 47, 0.32);
  color: #fff;
  backdrop-filter: blur(12px);
}

.btn--ghost:hover {
  background: rgba(18, 67, 70, 0.96);
  border-color: rgba(221, 104, 14, 0.7);
  color: #ffb877;
}

.hero__actions {
  margin-top: 34px;
}

.hero__metrics {
  display: grid;
  max-width: 1000px;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 56px;
}

.hero__metrics article {
  min-height: 104px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  padding: 18px;
  background: rgba(8, 43, 47, 0.34);
  backdrop-filter: blur(14px);
  cursor: default;
  transition: background 0.35s ease, border-color 0.35s ease, transform 0.35s ease,
    box-shadow 0.35s ease;
}

.hero__metrics article:hover {
  background: rgba(18, 67, 70, 0.96);
  border-color: rgba(221, 104, 14, 0.6);
  transform: translateY(-5px);
  box-shadow: 0 18px 38px rgba(8, 43, 47, 0.4);
}

.hero__metrics article:hover strong {
  color: #ffb877;
}

.hero__metrics strong,
.hero__metrics span {
  display: block;
}

.hero__metrics strong {
  color: #fff;
  font-size: 1.2rem;
  transition: color 0.35s ease;
}

.hero__metrics span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  line-height: 1.35;
}

.hero__arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.hero__arrow--prev {
  left: 24px;
}

.hero__arrow--next {
  right: 24px;
}

.hero__dots {
  position: absolute;
  z-index: 3;
  bottom: 24px;
  left: 50%;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.hero__dots button {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  cursor: pointer;
  transition: width 0.35s ease, background 0.35s ease, opacity 0.35s ease;
}

.hero__dots button.is-active {
  width: 30px;
  background: var(--accent);
}

/* Modo "telas": exibe uma seção por vez ao clicar no menu, sem rolagem entre elas */
body.screens main > section:not(.is-screen-active) {
  display: none;
}

body.screens main > section.is-screen-active {
  display: block;
  min-height: 100vh;
  animation: screenIn 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes screenIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.992);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.section {
  padding: clamp(24px, 4vh, 64px) 0;
  scroll-margin-top: 0;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero,
.contact {
  scroll-margin-top: 0;
}

.has-reveal .section,
.has-reveal .contact {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}

.has-reveal .section.is-visible,
.has-reveal .contact.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.section.is-current-section,
.contact.is-current-section,
.hero.is-current-section {
  animation: currentSectionIn 0.62s ease both;
}

.section--white {
  background: #fff;
}

.section--soft {
  background: var(--soft);
}

#localizacao {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  isolation: isolate;
}

/* A Localização só usa flex/centramento quando é a tela ativa,
   senão a regra de ID sobrescreveria o "display: none" das telas inativas */
body.screens main > section#localizacao.is-screen-active {
  display: flex;
  align-items: center;
}

/* Contato centralizado verticalmente (conteúdo curto, sem risco de corte) */
body.screens main > section.contact.is-screen-active {
  display: flex;
  flex-direction: column;
  justify-content: safe center;
}

/* Imagem de fundo (marca d'água) representando a localização */
#localizacao::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/images/local.jpeg") no-repeat center / cover;
  opacity: 0.035;
  pointer-events: none;
  z-index: -1;
}

.section-heading {
  max-width: 680px;
  margin: 0 auto clamp(20px, 3vh, 40px);
  text-align: center;
}

#plantas {
  padding-top: clamp(48px, 6vw, 72px);
  position: relative;
  isolation: isolate;
}

/* Planta em marca d'água preenchendo o fundo da seção */
#plantas::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/images/PLANTAI-TÉRREO.png") no-repeat center / cover;
  opacity: 0.035;
  pointer-events: none;
  z-index: -1;
}


#plantas .section-heading {
  margin-bottom: 30px;
}

#plantas .tabs {
  margin-bottom: 34px;
}

.section-heading h2,
.location-grid h2,
.contact h2 {
  color: var(--text);
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.section-heading p:not(.eyebrow),
.lead,
.contact p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.feature-grid,
.gallery-grid,
.partners-grid {
  display: grid;
  gap: 18px;
}

.feature-grid {
  grid-template-columns: repeat(3, 1fr);
}

.feature-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(221, 104, 14, 0.12);
  border-radius: 18px;
  padding: 28px 26px;
  background: linear-gradient(160deg, #fff7f0, #fffdfb 60%);
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.feature-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #ffae66);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.38s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(221, 104, 14, 0.35);
  box-shadow: var(--shadow);
}

.feature-card:hover::after {
  transform: scaleX(1);
}

.feature-card span {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 16px;
  color: var(--accent);
  background: linear-gradient(145deg, rgba(221, 104, 14, 0.16), rgba(221, 104, 14, 0.05));
  transition: background 0.32s ease, color 0.32s ease, transform 0.32s ease;
}

.feature-card span svg {
  width: 27px;
  height: 27px;
}

.feature-card:hover span {
  background: var(--accent);
  color: #fff;
  transform: scale(1.05);
}

.feature-card h3 {
  margin: 22px 0 8px;
  color: var(--primary);
  font-size: 1.12rem;
}

.feature-card p,
.floor__info p,
.location-list {
  color: var(--muted);
  line-height: 1.65;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 34px;
}

.tab {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 12px 20px;
  color: var(--text);
  background: #fff;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.28s ease, border-color 0.28s ease, color 0.28s ease, transform 0.28s ease;
}

.tab svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--accent);
  transition: color 0.28s ease;
}

.tab:hover {
  transform: translateY(-1px);
  border-color: rgba(18, 67, 70, 0.45);
}

.tab.is-active svg {
  color: #fff;
}

.tab.is-active {
  border-color: var(--primary);
  color: #fff;
  background: var(--primary);
}

.floor {
  display: none;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.95fr);
  gap: 24px;
  align-items: stretch;
}

.floor.is-active {
  display: grid;
  animation: floorIn 0.55s ease both;
}

.floor__image {
  display: block;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow);
}

.floor__image img {
  width: 100%;
  height: clamp(240px, 30vw, 380px);
  object-fit: contain;
  padding: 12px;
}

.floor__info {
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 24px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
}

.floor__info h3 {
  margin: 0 0 20px;
  color: var(--primary);
  font-size: 1.6rem;
}

.info-list {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.info-list span,
.location-list li {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 11px 13px;
  background: var(--soft);
  color: var(--text);
  font-weight: 650;
  line-height: 1.35;
}

details {
  margin: 14px 0;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 14px;
}

summary {
  cursor: pointer;
  font-weight: 800;
}

.gallery-grid {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 12px;
  scrollbar-width: thin;
  scrollbar-color: var(--primary) transparent;
}

.gallery-grid::-webkit-scrollbar {
  height: 8px;
}

.gallery-grid::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 999px;
}

.gallery-grid::-webkit-scrollbar-track {
  background: var(--border);
  border-radius: 999px;
}

.gallery-item {
  flex: 0 0 clamp(260px, calc((100% - 28px) / 2.4), 420px);
}

.gallery-grid a,
.gallery-item,
.location-image {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: var(--soft);
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
}

.gallery-item {
  display: block;
  padding: 0;
  border: 0;
  cursor: pointer;
}

/* Card de vídeo: miniatura + botão de play */
.gallery-item--video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 43, 47, 0.18);
  transition: background 0.3s ease;
}

.gallery-item--video:hover::after {
  background: rgba(8, 43, 47, 0.32);
}

.play-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 64px;
  height: 64px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: rgba(221, 104, 14, 0.95);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s ease, background 0.3s ease;
}

.play-badge::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 11px 0 11px 19px;
  border-color: transparent transparent transparent #fff;
}

.gallery-item--video:hover .play-badge {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--accent);
}

.gallery-grid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  transition: transform 0.65s ease;
}

.gallery-grid a:hover img,
.gallery-item:hover img {
  transform: scale(1.045);
}

.location-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Painéis (abas) da galeria */
.gallery-panel {
  display: none;
  position: relative;
}

.gallery-panel.is-active {
  display: block;
  animation: floorIn 0.55s ease both;
}

.gallery-nav {
  position: absolute;
  top: calc(50% - 6px);
  transform: translateY(-50%);
  z-index: 4;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.gallery-nav:hover {
  background: var(--primary);
  color: #fff;
}

.gallery-nav--prev {
  left: -10px;
}

.gallery-nav--next {
  right: -10px;
}

.gallery-nav[hidden] {
  display: none;
}

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

.location-list {
  display: grid;
  gap: 10px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.partners-grid {
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.partners-grid article {
  display: flex;
  min-height: 214px;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1.5px solid var(--border);
  border-radius: 18px;
  padding: 20px 16px;
  background: #fff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.partners-grid article:hover {
  border-color: var(--accent);
  box-shadow: 0 16px 34px rgba(221, 104, 14, 0.18);
  transform: translateY(-5px);
}

.partners-grid img {
  width: 100%;
  height: 118px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

/* Logos com muita margem vazia na arte original — ampliados para equilibrar */
.partners-grid img.partner-logo--lg {
  transform: scale(1.6);
}

.partners-grid article:hover img {
  transform: scale(1.06);
}

.partners-grid article:hover img.partner-logo--lg {
  transform: scale(1.68);
}

.partners-grid a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1.5px solid rgba(18, 140, 62, 0.4);
  border-radius: 999px;
  padding: 8px 16px;
  color: #128c3e;
  font-size: 0.92rem;
  font-weight: 700;
  background: #fff;
  transition: background 0.28s ease, color 0.28s ease, border-color 0.28s ease;
}

.partners-grid a::before {
  content: "";
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M.057 24l1.687-6.163a11.867 11.867 0 01-1.587-5.946C.16 5.335 5.495 0 12.05 0a11.817 11.817 0 018.413 3.488 11.824 11.824 0 013.48 8.414c-.003 6.557-5.338 11.892-11.893 11.892a11.9 11.9 0 01-5.688-1.448L.057 24zm6.597-3.807c1.676.995 3.276 1.591 5.392 1.592 5.448 0 9.886-4.434 9.889-9.885.002-5.462-4.415-9.89-9.881-9.892-5.452 0-9.887 4.434-9.889 9.884a9.84 9.84 0 001.51 5.26l-.999 3.648 3.978-1.607zm11.387-5.464c-.074-.124-.272-.198-.57-.347-.297-.149-1.758-.868-2.031-.967-.272-.099-.47-.149-.669.149-.198.297-.768.967-.941 1.165-.173.198-.347.223-.644.074-.297-.149-1.255-.462-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.297-.347.446-.521.151-.172.2-.296.3-.495.099-.198.05-.372-.025-.521-.075-.148-.669-1.611-.916-2.206-.242-.579-.487-.501-.669-.51l-.57-.01c-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.095 3.2 5.076 4.487.709.306 1.263.489 1.694.626.712.226 1.36.194 1.872.118.571-.085 1.758-.719 2.006-1.413.248-.695.248-1.29.173-1.414z'/%3E%3C/svg%3E")
    no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M.057 24l1.687-6.163a11.867 11.867 0 01-1.587-5.946C.16 5.335 5.495 0 12.05 0a11.817 11.817 0 018.413 3.488 11.824 11.824 0 013.48 8.414c-.003 6.557-5.338 11.892-11.893 11.892a11.9 11.9 0 01-5.688-1.448L.057 24zm6.597-3.807c1.676.995 3.276 1.591 5.392 1.592 5.448 0 9.886-4.434 9.889-9.885.002-5.462-4.415-9.89-9.881-9.892-5.452 0-9.887 4.434-9.889 9.884a9.84 9.84 0 001.51 5.26l-.999 3.648 3.978-1.607zm11.387-5.464c-.074-.124-.272-.198-.57-.347-.297-.149-1.758-.868-2.031-.967-.272-.099-.47-.149-.669.149-.198.297-.768.967-.941 1.165-.173.198-.347.223-.644.074-.297-.149-1.255-.462-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.297-.347.446-.521.151-.172.2-.296.3-.495.099-.198.05-.372-.025-.521-.075-.148-.669-1.611-.916-2.206-.242-.579-.487-.501-.669-.51l-.57-.01c-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.095 3.2 5.076 4.487.709.306 1.263.489 1.694.626.712.226 1.36.194 1.872.118.571-.085 1.758-.719 2.006-1.413.248-.695.248-1.29.173-1.414z'/%3E%3C/svg%3E")
    no-repeat center / contain;
}

.partners-grid a:hover,
.partners-grid article:hover a {
  background: #128c3e;
  border-color: #128c3e;
  color: #fff;
}

.contact {
  padding: clamp(40px, 6vh, 80px) 0;
  color: #fff;
  background: var(--primary-dark);
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Imagem de fundo da seção de Contato */
.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/images/obra/DJI_0751.JPG") no-repeat center / cover;
  opacity: 0.2;
  pointer-events: none;
  z-index: -1;
}

.contact h2,
.contact p {
  color: #fff;
}

.contact p {
  opacity: 0.82;
}

.contact__inner {
  align-items: center;
  justify-content: center;
  gap: clamp(32px, 6vw, 72px);
}

.contact__brand {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: clamp(200px, 22vw, 280px);
  height: clamp(200px, 22vw, 280px);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.contact__brand img {
  width: 78%;
  object-fit: contain;
}

.contact__content {
  max-width: 620px;
}

.contact__list {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.contact__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  font-weight: 600;
}

.contact__list a {
  color: #fff;
  transition: color 0.25s ease;
}

.contact__list a:hover {
  color: #ffb877;
}

.contact__icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 12px;
  color: var(--accent);
  background: rgba(255, 255, 255, 0.1);
}

.contact__icon svg {
  width: 20px;
  height: 20px;
}

.floating-whatsapp {
  position: fixed;
  z-index: 120;
  right: 24px;
  bottom: 24px;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(145deg, #29bd5b, #128c3e);
  box-shadow: 0 12px 30px rgba(8, 43, 47, 0.28), 0 0 0 6px rgba(41, 189, 91, 0.16);
  /* Oculto até o usuário chegar na seção de Plantas */
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(0.85);
  transition: opacity 0.4s ease, transform 0.4s ease, box-shadow 0.3s ease;
  pointer-events: none;
}

.floating-whatsapp.is-visible {
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
}

.floating-whatsapp:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 18px 38px rgba(8, 43, 47, 0.32), 0 0 0 8px rgba(41, 189, 91, 0.2);
}

.floating-whatsapp svg {
  width: 30px;
  height: 30px;
}

@media (max-width: 980px) {
  body {
    padding-left: 0;
  }

  /* No mobile o cabeçalho volta a ser uma barra no topo */
  .site-header {
    inset: 0 0 auto;
    top: 0;
    left: 0;
    bottom: auto;
    width: auto;
    height: auto;
    transform: none;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    overflow: visible;
    padding: 14px clamp(16px, 4vw, 32px);
    border: 0;
    border-radius: 0;
    background: rgba(8, 43, 47, 0.96);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
  }

  /* No mobile o cabeçalho é sempre escuro → ícones claros */
  .site-header.on-light .site-nav a {
    color: rgba(255, 255, 255, 0.88);
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 12px;
    background: rgba(8, 43, 47, 0.98);
    box-shadow: var(--shadow);
    transform-origin: top;
  }

  .site-nav.is-open {
    display: flex;
    animation: menuIn 0.28s ease both;
  }

  /* Links voltam a ser linha com ícone + texto no dropdown mobile */
  .site-nav a {
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    padding: 13px 14px;
    border-radius: 12px;
  }

  .site-nav a span {
    position: static;
    padding: 0;
    border: 0;
    background: none;
    box-shadow: none;
    opacity: 1;
    transform: none;
  }

  .site-nav a span::before {
    display: none;
  }

  .hero__arrow {
    display: none;
  }

  .hero__metrics,
  .feature-grid,
  .floor,
  .gallery-grid,
  .location-grid,
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .floor__image img {
    height: auto;
    min-height: 280px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 1160px);
  }

  .site-header {
    padding: 12px;
  }

  .brand__mark {
    width: 40px;
    height: 40px;
  }

  .hero {
    min-height: 84svh;
  }

  .hero__content {
    min-height: 84svh;
    padding: 110px 0 72px;
  }

  .hero h1 {
    font-size: clamp(3.15rem, 18vw, 4.35rem);
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__metrics,
  .feature-grid,
  .gallery-grid,
  .location-grid,
  .partners-grid {
    grid-template-columns: 1fr;
  }

  .hero__metrics {
    margin-top: 30px;
  }

  .hero__metrics article {
    min-height: auto;
  }

  .section {
    padding: 64px 0;
  }

  .section-heading {
    margin-bottom: 32px;
    text-align: left;
  }

  .tabs {
    justify-content: flex-start;
  }

  .tab {
    flex: 1 1 auto;
  }

  .floor__info,
  .feature-card {
    padding: 20px;
  }

  .contact__inner {
    align-items: flex-start;
  }

  .contact__inner .btn {
    width: 100%;
  }

  .floating-whatsapp {
    width: 56px;
    height: 56px;
    right: 14px;
    bottom: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

@keyframes heroContentIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floorIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes menuIn {
  from {
    opacity: 0;
    transform: translateY(-8px) scaleY(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scaleY(1);
  }
}

@keyframes currentSectionIn {
  from {
    opacity: 0.72;
    transform: translateY(18px) scale(0.992);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Modal de planta ampliada */
.plan-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 48px);
  background: rgba(8, 43, 47, 0.42);
  backdrop-filter: blur(5px);
  animation: planModalIn 0.28s ease both;
}

.plan-modal[hidden] {
  display: none;
}

.plan-modal__figure {
  margin: 0;
  max-width: min(1400px, 98vw);
  max-height: 96vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.plan-modal__img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  animation: planModalImgIn 0.3s ease both;
  transition: opacity 0.4s ease;
}

/* Crossfade ao navegar entre as imagens do modal */
.plan-modal__img.is-swapping {
  opacity: 0;
}

.plan-modal__caption {
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.plan-modal__close {
  position: absolute;
  top: clamp(12px, 2vw, 24px);
  right: clamp(12px, 2vw, 24px);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background 0.25s ease, transform 0.25s ease;
}

.plan-modal__close:hover {
  background: rgba(255, 255, 255, 0.24);
  transform: scale(1.05);
}

.plan-modal__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background 0.25s ease, transform 0.25s ease;
}

.plan-modal__nav:hover {
  background: rgba(255, 255, 255, 0.26);
}

.plan-modal__nav--prev {
  left: clamp(12px, 3vw, 36px);
}

.plan-modal__nav--next {
  right: clamp(12px, 3vw, 36px);
}

.plan-modal__nav--prev:hover {
  transform: translateY(-50%) translateX(-2px);
}

.plan-modal__nav--next:hover {
  transform: translateY(-50%) translateX(2px);
}

.plan-modal__nav[hidden] {
  display: none;
}

@keyframes planModalIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes planModalImgIn {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Modal de vídeo (YouTube) */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 48px);
  background: rgba(8, 43, 47, 0.7);
  backdrop-filter: blur(8px);
  animation: planModalIn 0.28s ease both;
}

.video-modal[hidden] {
  display: none;
}

.video-modal__frame {
  position: relative;
  width: min(1100px, 96vw);
  aspect-ratio: 16 / 9;
  max-height: 86vh;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  animation: planModalImgIn 0.3s ease both;
}

.video-modal__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}


/* ==========================================================================
   Planta interativa (mosaico de lojas) — Fase 1
   ========================================================================== */
.iplan {
  position: fixed;
  inset: 0;
  z-index: 240;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(6px, 1.4vw, 18px);
  background: rgba(8, 43, 47, 0.82);
  backdrop-filter: blur(4px);
}
.iplan[hidden] {
  display: none;
}
.iplan__shell {
  display: flex;
  flex-direction: column;
  width: min(1700px, 100%);
  max-height: 100%;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.iplan__bar {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 12px 16px;
  background: var(--primary);
  color: var(--white);
}
.iplan__title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
}
.iplan__legend {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-left: auto;
  font-size: 0.82rem;
}
.iplan__key {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.iplan__key::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.6);
}
.iplan__key--disp::before { background: rgba(255, 255, 255, 0.18); }
.iplan__key--pre::before { background: #f59e0b; border-color: #f59e0b; }
.iplan__key--res::before { background: #0284c7; border-color: #0284c7; }
.iplan__close {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}
.iplan__close:hover { background: rgba(255, 255, 255, 0.28); }
.iplan__body {
  display: flex;
  min-height: 0;
  flex: 1;
}
.iplan__stage {
  position: relative;
  flex: 1;
  min-width: 0;
  align-self: flex-start;
  overflow: auto;
  background: var(--soft);
}
.iplan__img {
  display: block;
  width: 100%;
  height: auto;
  user-select: none;
}
.iplan__hotspots {
  position: absolute;
  inset: 0;
}
.iplan__hotspot {
  position: absolute;
  border: 1.5px solid transparent;
  border-radius: 3px;
  background: transparent;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
  padding: 0;
}
.iplan__hotspot:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: #fff;
  box-shadow: 0 0 0 2.5px #fff, 0 0 0 4px rgba(0, 0, 0, 0.45);
  z-index: 5;
}
.iplan__hotspot:focus-visible {
  outline: 3px solid #ffd60a;
  outline-offset: 1px;
}
.iplan__hotspot--pre {
  background: rgba(245, 158, 11, 0.55);
  border-color: #d97706;
}
.iplan__hotspot--res {
  background: rgba(2, 132, 199, 0.6);
  border-color: #075985;
}
.iplan__hotspot.is-selected {
  background: rgba(255, 214, 10, 0.35);
  border-color: #ffd60a;
  box-shadow: 0 0 0 2px rgba(255, 214, 10, 1), 0 0 14px rgba(255, 214, 10, 0.85);
  z-index: 6;
}
.iplan__panel {
  flex: 0 0 280px;
  padding: 20px;
  border-left: 1px solid var(--border);
  overflow-y: auto;
}
.iplan__panel-empty {
  color: var(--muted);
  font-size: 0.92rem;
}
.iplan__badge {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--border);
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.iplan__badge--pre { background: #fde3b3; color: #92400e; }
.iplan__badge--res { background: #d7f0fd; color: #075985; }
.iplan__loja {
  margin: 12px 0 4px;
  font-size: 1.4rem;
}
.iplan__meta {
  margin: 0 0 18px;
  color: var(--muted);
}
.iplan__cta { width: 100%; }
.iplan__unavailable {
  margin: 0;
  padding: 10px 12px;
  border-radius: 10px;
  background: #fef3f2;
  color: #b42318;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
}

/* Formulário de pré-reserva */
.iplan__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
/* Garante que o atributo [hidden] esconda mesmo (display:flex/grid o sobrescreveria) */
.iplan__form[hidden],
.iplan__success[hidden],
.iplan__panel-content[hidden] {
  display: none;
}
/* O botão usa .btn (display:inline-flex), que ignora [hidden] sem o !important */
.iplan__cta[hidden] {
  display: none !important;
}
.iplan__form-title {
  margin: 0 0 2px;
  font-size: 1.05rem;
}
.iplan__field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
}
.iplan__field input {
  font: inherit;
  font-weight: 400;
  padding: 9px 11px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
}
.iplan__field input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(221, 104, 14, 0.15);
}
.iplan__step-label {
  margin: 4px 0 0;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
}
.iplan__imobs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.iplan__imob {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 6px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  text-align: center;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.iplan__imob img {
  width: 100%;
  height: 36px;
  object-fit: contain;
}
.iplan__imob span {
  font-size: 0.66rem;
  line-height: 1.2;
  color: var(--muted);
}
.iplan__imob:hover {
  border-color: var(--accent);
}
.iplan__imob.is-selected {
  border-color: var(--accent);
  background: #fff7f0;
  box-shadow: 0 0 0 2px var(--accent) inset;
}
.iplan__imob.is-selected span {
  color: var(--accent-dark);
  font-weight: 700;
}
.iplan__form-error {
  margin: 0;
  padding: 8px 10px;
  border-radius: 8px;
  background: #fef3f2;
  color: #b42318;
  font-size: 0.82rem;
}
.iplan__form-actions {
  display: flex;
  gap: 10px;
  margin-top: 8px;
  align-items: stretch;
}
.iplan__form-actions .btn {
  padding: 13px 12px;
  border-radius: 12px;
  font-size: 0.92rem;
  line-height: 1.15;
}
.iplan__btn-voltar {
  flex: 0 0 36%;
}
.iplan__btn-confirmar {
  flex: 1;
  font-weight: 700;
}
.iplan__btn-confirmar:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}
.iplan__field input.is-invalid {
  border-color: #d92d20;
  box-shadow: 0 0 0 3px rgba(217, 45, 32, 0.14);
}

/* Sucesso */
.iplan__success {
  text-align: center;
  padding-top: 14px;
}
.iplan__success-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #e7f7ed;
  color: #067647;
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.iplan__success h4 {
  margin: 0 0 8px;
  font-size: 1.25rem;
}
.iplan__success p {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0 0 18px;
}

@media (max-width: 820px) {
  .iplan__body { flex-direction: column; }
  .iplan__panel {
    flex: 0 0 auto;
    border-left: 0;
    border-top: 1px solid var(--border);
  }
  .iplan__legend { width: 100%; margin-left: 0; }
}
