html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
  overflow-x: hidden !important;
}
html {
  width: 100%;
  overflow-x: hidden;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
}

a:hover {
  color: #fff;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

/* GERAL */

*:focus {
  outline: none;
  border: none;
}

body {
  font-family: "Sora", sans-serif;
  background: var(--Secundary-Light, #fff);
}

body.home {
  /* background-color: #5A3CDB; */
}

.container {
  padding: 0 20px;
}

*::selection {
  background-color: #5a3cdb;
  color: #fff;
}

svg.prev,
svg.next {
  transition: all 0.5s;
  cursor: pointer;
}

svg.prev:hover,
svg.next:hover {
  transform: scale(1.2);
}

section {
  max-width: 1920px;
  margin: 0 auto;
  background-position: center;
}

.botao {
  padding: 15px 32px;
  border-radius: 30px;
  height: fit-content;
  background: var(--Primary-Brown, #934111);
  color: var(--Primary-Light, #fff);
  leading-trim: both;
  text-edge: cap;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 16.8px */
  letter-spacing: 2.52px;
  text-transform: uppercase;
  width: fit-content;
  transition: all 0.5s;
  border: 1px solid transparent;
}

.botao:hover {
  background: #3c2e31;
}

.yes-mobile {
  display: none;
}

/* HEADER */

header {
  padding: 33px 0 20px 0;
  z-index: 50;
  transition: all 0.5s;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

header.header-scroll {
  background: #583de1;
  padding: 14px 0;
  box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px;
}

header .container {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: start;
  transition: all 0.5s;
}

header .container .wrapper-header-desk {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 30px;
  align-items: start;
  transition: all 0.5s;
  width: 100%;
}

header.header-scroll .container .wrapper-header-desk {
  align-items: center;
}

header.header-scroll .container {
  align-items: center;
  transition: all 0.5s;
}

header .wrapper-header-desk nav ul {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 10px;
}

header .wrapper-header-desk ul li {
  position: relative !important;
  transition: all 0.5s;
  border-radius: 10px;
  overflow: hidden;
}

header .wrapper-header-desk nav:last-child ul {
  justify-content: start;
}

header .wrapper-header-desk nav:last-child ul li:last-child {
  backdrop-filter: none;
}

header .wrapper-header-desk nav:last-child ul li:last-child a {
  border-radius: 8px;
  background: var(--Primary-Light, #d8d700);
  backdrop-filter: blur(17px);
  color: var(--Primary-Dark, #0a0069);
}

header .wrapper-header-desk ul li::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  transition: all 0.5s;
  bottom: 0;
  width: 0px;
  height: 1px;
  background: #333e20;
}

header .wrapper-header-desk ul li:hover::after,
header .wrapper-header-desk ul li.active::after {
  width: 100%;
}

header.header-scroll .wrapper-header-desk ul li.active a {
  font-size: 16px;
}

header .wrapper-header-desk ul li.active a,
header .wrapper-header-desk ul li:hover a {
  background-color: #00026d;
}

header .wrapper-header-desk ul a {
  color: var(--100, #fff);
  leading-trim: both;
  text-edge: cap;
  font-family: Sora;
  font-size: 18.642px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  padding: 14px 18px;
  transition: all 0.5s;
  display: block;
  position: relative;
  z-index: 2;
}

header .wrapper-header-desk ul li::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(65px);
}

header .wrapper-header {
  position: relative;
  display: none;
}

header .wrapper-header .menu-toggle {
  border-radius: 100px;
  background: var(--100, #fff);
  cursor: pointer;
  width: 48px;
  height: 48px;
  transition: all 0.5s;
  border: none;
  padding: 0;
}

header .wrapper-header .menu-toggle > svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s;
}

header .wrapper-header .menu-toggle .close {
  opacity: 0;
}

header .wrapper-header .menu-toggle.toggle-active .close {
  opacity: 1;
}

header .wrapper-header .menu-toggle.toggle-active .open {
  opacity: 0;
}

header .wrapper-header .menu {
position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    max-width: 320px;
    height: 100%;
    border-radius: 0;
    border: 0;
    overflow: hidden;
    padding: 70px 32px;
    transition: all 0.5s;
    background: #fff;
    transform: translateX(-110%);
    opacity: 0;
}

header .wrapper-header .menu.active {
  transform: translateX(0%);
  opacity: 1;
}

header .wrapper-header .menu ul {
  list-style: none;
  padding: 0;
    margin: 40px 0 0 0;
}

header .wrapper-header .menu ul li {
  padding: 10px 0;
}

header .wrapper-header .menu ul li a {
color: var(--100, #0a0069);
    font-family: Sora, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 140%;
  letter-spacing: 2.52px;
  text-transform: uppercase;
  display: block;
  text-align: start;
  transition: all 0.5s;
}

header .wrapper-header .menu ul li a:hover {
  color: #8f7b50;
}

header .logo svg {
  transition: all 0.5s;
  width: fit-content;
}

header.header-scroll .logo svg {
  width: 80px;
  height: 65px;
}

header.header-scroll .logo svg path {
  transition: all 0.5s;
}

header.header-scroll .logo svg path:last-child {
  fill: #fff;
}

@media (max-width: 1200px) {
header .wrapper-header-desk ul a {
  font-size: 16px;
    padding: 14px;
}
}


/* ---- MOBILE ---- */
@media (max-width: 991px) {
header .container .wrapper-header-desk .menu {
  display: none;
}

header .container .wrapper-header-desk {
  justify-content: center;
}


header .container .wrapper-header-desk .logo {
  margin-right: -48px;
}

header .wrapper-header {
  display: block;
}
}

/* TOPO */

/*
.topo {
	background-image: url(../images/bg-topo.webp);
	height: 887px;
	padding-top: 220px;
	position: relative;
} 
*/

.topo {
  background-image: url(../images/TOPO.png);
  position: relative;
  padding-top: 60px;
  height: 850px;
  width: auto;
}

.elementos-elipse {
  position: absolute;
  top: 190px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 5;
}

.texto-lote {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding-top: 30px;
}

.texto-lote p {
  color: var(--Primary-Dark, #0a0069);
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-family: Sora;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.lote-150 {
  width: 260px;
  height: auto;
}

.localizacaoo {
  display: flex;
  align-items: center;
  gap: 5px;
}

.localizacaoo p {
  color: var(--Primary-Dark, #0a0069);
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-family: Sora;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.familia {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  object-fit: cover;
  z-index: 5;
}

.casa {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  object-fit: cover;
  z-index: 5;
}

.logo-altavista {
  position: absolute;
  top: 650px; /* ajuste conforme o layout, testei uma base aproximada */
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  width: 381px;
  height: 112.854px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  z-index: 10;
}

.logo-altavista {
  animation: none !important;
  transition: none !important;
  transform: translateX(-50%) !important;
  opacity: 1 !important;
}

.botao-conheca {
  position: absolute;
  top: 450px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  padding: 18px 32px;
  justify-content: center;
  align-items: center;
  gap: 10.357px;
  border-radius: 6.214px;
  background: rgba(10, 0, 105, 0.8);
  box-shadow: -11px 8px 14px 0px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10.2px);
  font-family: "Sora", sans-serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #fff;
  text-decoration: none;
  z-index: 10;
}

.botao-conheca {
  animation: none !important;
  transition: none !important;
  transform: translateX(-50%) !important;
  opacity: 1 !important;
}

.topo .infos .estagio {
  color: var(--Primary-Dark, #00444f);
  font-family: "Archivo", serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 18.2px */
  letter-spacing: 8.4px;
  text-transform: uppercase;
  position: relative;
  padding-left: 50px;
}

.topo .infos .estagio::after {
  position: absolute;
  left: 0;
  width: 30px;
  height: 1px;
  content: "";
  display: block;
  background: rgba(0, 0, 0, 0.1);
  top: 50%;
  transform: translateY(-50%);
}

.topo .infos .custom-logo-link {
  margin: 72px 0;
  display: block;
}

.topo .infos .box-infos-topo {
  padding: 0 0 0 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-left: 1px solid var(--600, rgba(0, 0, 0, 0.1));
}

.topo .infos .box-infos-topo .item {
  display: flex;
  gap: 22px;
  align-items: center;
}

.topo .infos .box-infos-topo .item p {
  color: var(--Primary-Dark, #00444f);
  font-family: Sora;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 18.2px */
  letter-spacing: 8.4px;
  text-transform: uppercase;
}

.topo .infos h1 {
  color: red;
  leading-trim: both;
  text-edge: cap;
  font-family: Vonca;
  font-size: 72px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%; /* 79.2px */
  text-transform: uppercase;
}

.topo .botao:hover {
  background: #00444f;
}

/* =======================
   DIFERENCIAIS - SEÇÃO
======================= */

.diferenciais {
  background-image: url(../images/DIFERENCIAIS.png);
  position: relative;
  padding-top: 100px;
  height: 850px;
  z-index: 8;
}

.diferenciais h3 {
  color: var(--Primary-Light, #d8d700);
  font-family: Sora;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 1.08px;
  text-transform: uppercase;
  padding-top: 50px;
}

.diferenciais h2 {
  color: var(--100, #fff);
  font-family: Sora;
  font-size: 48px;
  font-weight: 700;
  line-height: 110%;
  margin: 48px 0;
}

.diferenciais h2::first-line {
  font-weight: 400;
}

.texto-diferenciais {
  color: var(--100, #fff);
  font-family: Sora, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 140%;
  margin-top: 20px;
  max-width: 425px;
}

.diferenciais .box-diferenciais {
  padding: 10px 0;
  border-radius: 20px;
  border: none;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

/* =======================
   SLICK SLIDER
======================= */

.slider-diferenciais {
  margin-top: 40px;
}

.slick-list {
  overflow: hidden !important; /* mantém o controle do slick */
  padding-top: 40px; /* espaço extra para permitir ícone acima */
}

.slick-track {
  overflow: visible !important; /* Permite que o ícone "saia" do card */
}

.diferenciais .slick-dots {
  display: none !important; /* Remove os dots */
}

/* =======================
   ITEM - CARD
======================= */

.item-diferencial {
  position: relative;
  overflow: visible; /* Permite o ícone sair do card */
  background: white;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 160px; /* Ajuste conforme desejado */
  height: 180px;
  margin: 0 9px; /* Gap de 18px total */
}

.item-diferencial .box-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.item-diferencial .box-item .icone {
  position: absolute;
  top: -36px; /* Ícone acima do card */
  width: 48px;
  height: 48px;
  border-radius: 4px;
  background: var(--Primary-Light, #d8d700);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.item-diferencial .box-item .icone img {
  max-width: 33px;
  max-height: 33px;
}

.item-diferencial .box-item p {
  color: var(--Primary-Dark, #0a0069);
  text-align: center;
  font-family: Sora;
  font-size: 14px;
  font-weight: 400;
  line-height: 120%;
  margin-top: 20px; /* Ajuste conforme o visual */
}

.item-diferencial .box-item p b,
.item-diferencial .box-item p strong,
.item-diferencial .box-item p bold {
  display: block;
  color: var(--Primary-Dark, #0a0069);
  font-family: Sora;
  font-size: 24px;
  font-weight: 700;
  line-height: 120%;
}

/* =======================
   CONTROLES DE NAVEGAÇÃO
======================= */

.diferenciais .infos-bottom {
  position: absolute;
  top: 45%;
  right: -60px; /* Ajuste conforme o espaço desejado */
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.diferenciais .infos-bottom .nav-diferenciais {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.diferenciais .infos-bottom .nav-diferenciais svg {
  cursor: pointer;
  background: var(--Primary-Light, #d8d700);
  padding: 10px;
  border-radius: 8px;
  width: 40px;
  height: 40px;
  transition: all 0.5s;
}

.diferenciais .infos-bottom .nav-diferenciais svg:hover {
  background: #c5c500;
}

.diferenciais .infos-bottom .nav-diferenciais svg path {
  stroke-width: 1.5px;
  stroke: var(--Primary-Dark, #0a0069);
}

.item-diferencial.icone-mais {
  display: flex;
  width: 48px;
  height: 48px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  position: absolute;
  left: 350px;
  bottom: 56px;
  background: none;
  box-shadow: none;
  border: none;
  z-index: 100;
  display: none;
}

/* --- */

/* VÍDEOS */

.videos {
  background-image: url(../images/VIDEOS.png);
  height: 850px;
  padding-top: 100px;
  position: relative;
  z-index: 7;
  overflow: hidden;
  padding-left: 0;
  padding-right: 0;
}

.videos .container {
  max-width: 1050px;
  display: flex;
  flex-direction: column; /* de row para column */
  align-items: center;
  gap: 30px;
  justify-content: center; /* centraliza */
  padding-top: 50px;
}

.videos h3 {
  color: var(--Primary-Light, #d8d700);
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-family: Sora;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.08px;
  text-transform: uppercase;
}

.subtitulo-videos {
  color: var(--100, #fff);
  leading-trim: both;
  text-edge: cap;
  font-family: Sora;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
}

.subtitulo-videos strong {
  font-weight: 700;
}

.videos .slick-prev,
.videos .slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--Primary-Light, #d8d700);
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5;
  padding: 0;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.videos .slick-prev:hover,
.videos .slick-next:hover {
  background: #c5c500;
}

.videos .slick-prev {
  left: -60px; /* ajusta conforme espaço lateral */
}

.videos .slick-next {
  right: -60px; /* ajusta conforme espaço lateral */
}

.videos .nav-videos svg:hover {
  background: #c5c500;
}

.videos .nav-videos svg path {
  stroke: var(--Primary-Dark, #0a0069);
  stroke-width: 1.5px;
}

/* A PARTIR DE AGORA É O CÓDIGO CSS DA SEÇÃO QUE JÁ TINHA */

.videos h3::after {
  position: absolute;
  left: 0;
  width: 30px;
  height: 1px;
  content: "";
  display: block;
  background: rgba(255, 255, 255, 0.1);
  top: 50%;
  transform: translateY(-50%);
}

.videos .nav-videos {
  display: flex;
  align-items: center;
  gap: 30px;
}

.videos .slider-videos {
  margin-top: 64px;
  width: 100%;
  max-width: unset; /* remove o limite de largura */
}

.videos .slider-videos .slick-list {
  overflow: visible;
}

.videos .box-video {
  padding: 0 10px; /* pode reduzir ou ajustar */
  height: 500px;
}

.videos .video-item {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  height: 450px;
}

.videos .video-item img {
  width: 100%;
  transition: 0.3s;
  height: 100%;
  object-fit: cover;
  filter: blur(5px);
  transform: scale(1.04);
  transition: all 0.5s;
}

.videos .video-item a::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.2);
  width: 100%;
  height: 100%;
  transition: all 0.5s;
}

.videos .video-item:hover a::after {
  background: rgb(0 0 0 / 48%);
}

.videos .video-item .info {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  justify-content: center;
}

.videos .video-item:hover img {
  transform: scale(1.07);
}

.videos .video-item .play-button {
  width: 80px;
  height: 80px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #fff;
}

.videos .video-item p {
  color: var(--100, #fff);
  text-align: center;
  font-family: Sora;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 18.2px */
  letter-spacing: 8.4px;
  text-transform: uppercase;
}

.videos {
  position: relative; /* Para posicionar as setas */
  overflow: hidden;
}

.videos .nav-videos {
  margin: 0 auto;
  height: 0;
  width: 100%;
  max-width: 1210px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  position: relative;
  z-index: 3;
}

.videos .nav-videos svg {
  cursor: pointer;
  background: var(--Primary-Light, #d8d700);
  padding: 10px;
  border-radius: 8px;
  width: 40px;
  height: 40px;
  transition: all 0.5s;
  position: absolute;
  bottom: -330px;
}

.videos .nav-videos .prev {
  left: 25px;
}

.videos .nav-videos .next {
  right: 25px;
}

.videos .nav-videos svg path {
  stroke: var(--Primary-Dark, #0a0069);
  stroke-width: 1.5px;
}

.videos .box-video {
  padding: 0 10px; /* reduz o espaço lateral */
  width: 970px; /* ou ajuste conforme desejado */
}

.videos .video-item {
  height: 400px; /* mantém ou reduz a altura */
}

/* TODOS os slides - menores, desfocados e escuros */
.videos .slider-videos .slick-slide {
  transform: scale(0.95) translateY(55px);
  filter: blur(2px) brightness(0.5);
  opacity: 0.7;
  transition: all 0.5s;
}

/* SLIDE CENTRAL - sem blur, normal, maior */
.videos .slider-videos .slick-center {
  transform: scale(1);
  filter: none;
  opacity: 1;
  z-index: 2;
}

.videos .slider-videos .slick-slide .video-item {
  height: 380px;
  transition: all 0.5s;
  margin-bottom: -35px;
}

.videos .slider-videos .slick-center .video-item {
  height: 500px;
}

/* Por padrão, todos os slides são rebaixados */
.videos .slider-videos .slick-slide {
  transform: scale(0.95) translateY(55px);
  filter: blur(2px) brightness(0.5);
  opacity: 0.7;
  transition: all 0.3s ease-in-out;
}

/* Slide central permanece alinhado e em destaque */
.videos .slider-videos .slick-center {
  transform: scale(1) translateY(0);
  filter: none;
  opacity: 1;
  z-index: 2;
}

/* --- */

/* GALERIA */

#galeria-slider {
  padding: 80px 0;
  background-image: url(../images/GALERIA.png);
  height: 682px;
}

#galeria-slider .container {
  max-width: 1210px;
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
}

#galeria-slider h3 {
  color: var(--900, #000);
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-family: Sora;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.08px;
  text-transform: uppercase;
}

#galeria-slider .nav-galeria {
  display: flex;
  align-items: center;
  gap: 15px;
}

#galeria-slider .slider-galeria {
  margin-top: 64px;
  max-width: 1070px;
}

#galeria-slider .slider-galeria .slick-list {
  overflow: visible;
}

#galeria-slider .box-galeria {
  padding: 0 20px;
  max-width: 1070px;
  width: 100%;
}

#galeria-slider .galeria-item {
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  height: 450px;
}

#galeria-slider .galeria-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

#galeria-slider .galeria-item:hover img {
  transform: scale(1.07);
}

/* === ESTILIZAÇÃO VISUAL DAS SETAS DA GALERIA === */

#galeria-slider .nav-galeria svg {
  background: var(--Primary-Light, #d8d700);
  padding: 10px;
  border-radius: 8px;
  width: 40px;
  height: 40px;
  transition: all 0.5s;
  cursor: pointer;
}

#galeria-slider .nav-galeria svg:hover {
  background: #c5c500;
}

#galeria-slider .nav-galeria svg path {
  fill: #8f7b50; /* mantém a cor original usada nas setas */
  stroke: var(--Primary-Dark, #0a0069);
  stroke-width: 1.5px;
}

/* Container do link com imagem */
.galeria-link {
  position: relative;
  display: block;
  height: 100%;
  overflow: hidden;
}

/* Imagem principal */
.galeria-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.3s ease-in-out;
}

/* Legenda */
.legenda-galeria {
  color: white;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}

.galeria-link:hover img {
  filter: brightness(0.5);
}

/* Container principal do link */
.galeria-link {
  position: relative;
  display: block;
  height: 100%;
  overflow: hidden;
}

/* Imagem padrão */
.galeria-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.3s ease-in-out;
}

/* Legenda */
.legenda-galeria {
  color: white;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}

/* Efeito ao passar o mouse */
.galeria-link:hover .overlay {
  opacity: 1;
}

.galeria-link:hover img {
  filter: brightness(0.5);
}

/* === HOVER GALERIA COM LUPA + LEGENDA === */

.galeria-link {
  position: relative;
  display: block;
  height: 100%;
  overflow: hidden;
}

.galeria-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.3s ease-in-out;
}

.galeria-link .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease-in-out;
  pointer-events: none;
}

.galeria-link:hover .overlay {
  opacity: 1;
}

.galeria-link:hover img {
  filter: brightness(0.5);
}

.icone-lupa {
  width: 54px;
  height: 54px;
  margin-bottom: 8px;
  display: block;
  object-fit: contain;
}

.legenda-galeria {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}

.galeria-link {
  position: relative;
  display: block;
  height: 100%;
  overflow: hidden;
}

.galeria-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.3s ease-in-out;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hover-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.icone-lupa {
  width: 17px;
  height: 17px;
  display: block;
  object-fit: contain;
}

.legenda-galeria {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}

/* Hover ativa overlay + escurecimento */
.galeria-link:hover .overlay {
  opacity: 1;
}

.galeria-link:hover img {
  filter: brightness(0.5);
}

.icone-lupa {
  width: 54px !important;
  height: 54px !important;
  display: block;
  object-fit: contain;
  margin-bottom: 14px;
}

.legenda-galeria {
  color: var(--100, #fff);
  text-align: center;
  font-family: Sora;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 38.4px */
}

.slider-galeria .box-galeria {
  width: 800px !important;
  padding: 0 10px;
}

#galeria-slider .slider-galeria {
  margin-top: 64px;
  width: 100%;
  max-width: none;
  padding: 0;
}

.slider-galeria .slick-slide {
  padding: 0 10px;
}

.slider-galeria .box-galeria {
  width: 800px !important;
}

#galeria-slider .slider-galeria {
  padding-left: 200px;
}

/* demais estilos, estão no arquivo grid-galeria.css */

/* --- */

/* FICHA */

#ficha-tecnica {
  background-color: #fff;
  padding: 100px 0 0px 0;
  position: relative;
  display: none; /* DESATIVADO */
}

.card-ficha {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0px 3px 0px #d8d700;
  padding: 30px 20px;
  min-width: 220px;
  max-width: 260px;
  height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 0 10px;
}

.card-ficha .titulo-ficha {
  color: var(--Primary-Dark, #0a0069);
  leading-trim: both;
  text-edge: cap;
  font-family: Sora;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 16.8px */
}

.card-ficha .texto-ficha {
  color: var(--Primary-Dark, #0a0069);
  leading-trim: both;
  text-edge: cap;
  font-family: Sora;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 33.6px */
}

.box-ficha {
  padding: 0 10px;
  width: auto; /* ou largura fixa como 260px se quiser padronizar */
}

.card-ficha {
  border-radius: 24px;
  padding: 20px;
  background: #fff;
  border: 1px solid #e3e1f3; /* borda clara e suave */
  box-shadow: -10px 12px 0px #d8d700; /* sombra forte à esquerda e embaixo */
  text-align: center;
  transition: all 0.3s ease-in-out;
}

.card-ficha:hover {
  transform: translateY(-3px);
  box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.16);
}

.slider-ficha {
  overflow: visible !important;
}

.nav-ficha,
.container-ficha {
  overflow: visible !important;
}

.container-ficha {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
  position: relative;
}

#ficha-tecnica .titulo-topo {
  color: var(--Primary-Light, #d8d700);
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-family: Sora;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.08px;
  text-transform: uppercase;
}

#ficha-tecnica h2 {
  color: var(--Primary-Dark, #0a0069);
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-family: Sora;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%; /* 52.8px */
  padding-bottom: 64px;
  padding-top: 64px;
}

#ficha-tecnica h2 strong {
  font-weight: 700;
}

.nav-ficha {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.slider-ficha {
  width: 100%;
  max-width: 900px;
  overflow: hidden;
}

.nav-ficha svg {
  background: var(--Primary-Light, #d8d700);
  padding: 10px;
  border-radius: 8px;
  width: 40px;
  height: 40px;
  transition: background 0.3s;
  cursor: pointer;
}

.nav-ficha svg:hover {
  background: #c5c500;
}

.nav-ficha svg path {
  stroke: var(--Primary-Dark, #0a0069);
  stroke-width: 1.5px;
}

.nav-ficha .slick-arrow {
  display: block !important;
  opacity: 1 !important;
  pointer-events: auto;
}

.bloco-contato {
  position: fixed;
  top: 50%;
  right: 13px;
  transform: translateY(-50%);
  z-index: 40;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  padding: 13px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

/* ===== Versão “dock” no rodapé (mobile) ===== */
@media (max-width: 991px) {
  .bloco-contato {
    /* Reposiciona */
    top: auto;
    bottom: 12px; /* ajuste a altura conforme preferir */
    left: 50%;
    right: auto;
    transform: translateX(-50%); /* centraliza horiz. */

    /* Layout horizontal */
    flex-direction: row;
        padding: 10px 10px 5px 10px;
    gap: 12px;

    /* Estética */
    border-radius: 12px;
  }

  /* Esconde logo + texto “Converse conosco” (ajuste os seletores
     conforme a marcação que você estiver usando) */
  .bloco-contato .logo,
  .bloco-contato .titulo-converse {
    display: none;
  }

  .bloco-contato p {
    display: none;
  }

  .bloco-contato img.logo-ficha {
    display: none;
  }
}

.slider-ficha .slick-track {
  overflow: visible !important;
}

.slider-ficha .slick-slide {
  overflow: visible !important;
  position: relative;
  z-index: 2;
}

.card-ficha {
  position: relative;
  z-index: 10;
}

.slider-ficha {
  padding: 0 20px !important; /* ou mais, se quiser afastar da borda */
}

.bloco-contato img.logo-ficha {
  width: 55px;
  height: auto;
  margin-bottom: 10px;
}

.bloco-contato p {
  color: #000;
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-family: Sora;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.bloco-contato p strong {
  font-weight: 700;
}

.bloco-contato a img {
  width: 73px;
  height: auto;
  transition: transform 0.2s ease-in-out;
  cursor: pointer;
}

.bloco-contato a:hover img {
  transform: scale(1.1);
}

.slider-ficha {
  overflow: visible !important;
  position: relative;
  z-index: 1;
  padding: 0 0 40px 0; /* espaço extra abaixo p/ sombra */
}

.slider-ficha .slick-list {
  overflow: hidden !important; /* impede mostrar slide seguinte */
  padding: 0 0 60px 0; /* impede o corte da sombra */
}

/* PLANTAS */

.fundo-obras-e-plantas {
  /*background-image: url(../images/PLANTAS-BG.png); */
  height: 100%;
  position: relative;
  z-index: 7;
  overflow: hidden;
  padding-left: 0;
  padding-right: 0;
  background-repeat: no-repeat;
}

/* --- */

/* STATUS DA OBRA */

#obras {
  position: relative;
  margin-top: 80px;
  display: none;
}

.container-obras {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  flex-wrap: wrap;
}

.galeria-obras {
  flex: 1;
  max-width: 450px;
  position: relative;
}

.galeria-obras h3 {
  color: var(--900, #000);
  leading-trim: both;
  text-edge: cap;
  font-family: Sora;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.08px;
  text-transform: uppercase;
  padding-bottom: 30px;
}

.slider-obras {
  position: relative;
}

.item-obra {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.item-obra img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  margin-bottom: 30px;
}

.legenda-hover {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), transparent);
  padding: 10px 16px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  color: var(--100, #fff);
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-family: Sora;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
}

.item-obra:hover .legenda-hover {
  opacity: 1;
}

.nav-obras {
  display: flex;
  gap: 12px;
  position: absolute;
  top: -6px;
  right: 0;
}

.nav-obras svg {
  background: #d8d700;
  padding: 10px;
  border-radius: 8px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: all 0.5s;
}

.nav-obras svg:hover {
  background: #c5c500;
}

.nav-obras svg path {
  stroke: #0a0069; /* azul escuro */
  stroke-width: 1.5px;
}

.painel-obras {
  flex: 1.5;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 20px;
}

.porcentagem-geral p {
  color: var(--500, rgba(0, 0, 0, 0.4));
  leading-trim: both;
  text-edge: cap;
  font-family: Sora;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

.porcentagem-geral p strong {
  color: var(--Primary-Light, #d8d700);
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-family: Sora;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 32px */
}

.barra-geral {
  height: 4px;
  background: #ccc;
  width: 100%;
  border-radius: 2px;
  overflow: hidden;
}

.barra-geral .preenchido {
  height: 100%;
  background: #d8d700;
  transition: width 0.4s ease;
}

.etapas-obras {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  row-gap: 40px;
}

.etapa-item {
  width: 160px;
}

.etapa-item p {
  color: var(--500, rgba(0, 0, 0, 0.4));
  leading-trim: both;
  text-edge: cap;
  font-family: Sora;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

.etapa-item p strong {
  color: var(--Primary-Medium, #5a3cdb);
  leading-trim: both;
  text-edge: cap;
  font-family: Sora;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 32px */
}

.barra {
  height: 4px;
  background: #ccc;
  border-radius: 2px;
  overflow: hidden;
}

.barra .preenchido {
  height: 100%;
  background: #7852ff;
  transition: width 0.4s ease;
}

/* ENVOLVENDO TODA A SEÇÃO COM UM CARD */
.card-status-obra {
  background: #f9f9f9; /* tom de branco levemente acinzentado como no modelo */
  border-radius: 12px;
  padding: 0 40px 40px 40px;
  height: 546px;
  width: 100%;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.03);
  display: flex;
  gap: 60px;
  justify-content: space-between;
  align-items: flex-start;
  box-sizing: border-box;
}

/* AJUSTANDO DENTRO DO CARD */
.painel-obras {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* PORCENTAGEM GERAL */
.porcentagem-geral p {
  margin-top: 0;
}

/* ETAPAS COM 3 POR LINHA */
.etapas-obras {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 40px; /* row-gap e column-gap */
}

.etapa-item {
  width: 100%;
}

.etapa-item p {
  margin-top: 0;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
}

/* 1. Mantém galeria e card lado a lado em telas grandes */
.container-obras {
  flex-wrap: nowrap; /* não quebra linha no desktop   */
}

/* 2. Coluna da galeria fixa + card flexível */
.galeria-obras {
  flex: 0 0 340px;
} /* 340 px ou o valor que quiser */
.card-status-obra {
  flex: 1 1 0; /* ocupa o resto do espaço        */
  width: auto; /* remove o width:100%            */
  height: auto; /* deixa altura se ajustar        */
}

/* 32 px entre valor, texto e barra -------------- */
.porcentagem-geral,
.etapa-item {
  display: flex;
  flex-direction: column;
  gap: 32px; /* <-- AQUI está o “milagre” */
  margin: 0; /* garante que nada herde margens extras */
}

/* OPTIONAL – se quiser garantir que barras grudem no fundo da célula
   (remove possíveis margins herdadas das barras) */
.barra-geral,
.barra {
  margin: 0;
}

/* ---------- TIPOGRAFIA / CORES ---------- */

/* Porcentagem geral */
.valor-geral {
  color: var(--Primary-Light, #d8d700);
  font-family: Sora;
  font-size: 32px;
  font-weight: 700;
  line-height: 100%;
}

.label-geral {
  color: var(--500, rgba(0, 0, 0, 0.4));
  font-family: Sora;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
}

/* Cada etapa */
.valor-etapa {
  color: var(--Primary-Medium, #5a3cdb);
  font-family: Sora;
  font-size: 32px;
  font-weight: 700;
  line-height: 100%;
}

.label-etapa {
  color: var(--500, rgba(0, 0, 0, 0.4));
  font-family: Sora;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
}

/* ---------- LAYOUT (mantém o que já estava) ---------- */

/* 32 px entre valor → texto → barra */
.porcentagem-geral,
.etapa-item {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin: 0;
}

/* ↓ remove o margin da imagem  */
.item-obra img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  margin: 0; /* ← aqui */
}

/* ↓ e aplica no wrapper (dá o mesmo espaçamento externo) */
.item-obra {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 30px; /* ← moved here */
}

/* valor – texto – barra, alturas iguais */
.etapa-item {
  display: grid;
  grid-template-rows: 32px 48px 4px; /* 32 = valor, 48 = texto (2 linhas), 4 = barra */
  gap: 32px; /* mesmo espaçamento vertical */
}

/* corrige sobrescritas anteriores */
.valor-etapa {
  align-self: end;
} /* empurra pro rodapé da célula */
.label-etapa {
  line-height: 120%;
} /* mantém legibilidade */

/* evita “pulinho” ao trocar slide */
.slider-obras .slick-slide {
  margin: 0; /* já temos margin-bottom no .item-obra */
}

/* remove sobra de 4 px do Slick nas laterais (caso apareça) */
.slider-obras .slick-track {
  display: flex !important;
  flex-direction: column; /* força colunar */
}

/* Garante que o Slick corte, sem mostrar parte do slide seguinte */
.slider-obras .slick-list {
  overflow: hidden;
}

/* Espaçamento vertical entre as duas imagens */
.slider-obras .slick-slide {
  margin-bottom: 30px;
}

/* Remove qualquer margin/padding extra que o Slick injete (opcional) */
.slider-obras .slick-track {
  margin: 0 !important;
}

/* anula o que estava forçado */
.slider-obras .slick-track {
  /* NOVO */
  display: block !important; /*   → volta ao padrão Slick   */
}

.card-status-obra {
  flex: 1 1 0;
  width: auto;
  height: 600px !important;
  padding: 40px;
}

/*BACKUP*/
/* RESPONSIVO */

/* --- */

/* PLANTAS */

/* ---------- LAY-OUT PRINCIPAL ---------- */
#plantas {
  padding-top: 80px;
  position: relative;
}

#plantas .slick-list {
      padding-top: 0;
}

.container-plantas {
  display: flex;
  gap: 60px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: -50px;
  padding-top: 50px;
}
.planta-destaque {
  flex: 1 1 60%;
  max-width: 60%;
}

/* ---------- BLOCO DA DIREITA ---------- */
.lado-direito {
  flex: 1 1 35%;
  max-width: 35%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.subtitle {
  color: var(--Primary-Light, #d8d700);
  text-align: left;
  leading-trim: both;
  text-edge: cap;
  font-family: Sora;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.08px;
  text-transform: uppercase;
}
.headline {
  color: var(--100, #fff);
  leading-trim: both;
  text-edge: cap;
  font-family: Sora;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%; /* 52.8px */
}

.headline::first-line {
  font-weight: 700;
}

/* ---------- THUMBS ---------- */
.slider-plantas {
  position: relative;
}
.thumb-slide {
  padding: 4px;
  box-sizing: border-box;
}
.thumb-slide img {
  width: 100%;
  border-radius: 4px;
  display: block;
}
.thumb-slide .caption {
  display: block;
  text-align: center;
  font: 400 14px/1.4 Sora;
  color: #fff;
  margin-top: 8px;
}
.slick-current img {
  border-color: #d8d700;
} /* thumb selecionada */

/* faixa ocupa só o necessário */
.slider-plantas {
  max-width: 320px;
} /* 2 × 160 px, ajuste à vontade */

/* cada slide = 50 % da faixa (2 lado a lado) */
.slider-plantas .slick-slide {
  box-sizing: border-box;
  padding: 0 4px; /* espaçamento interno   */
}

/* ---------- NAVEGAÇÃO ---------- */
.nav-plantas {
  display: flex;
  gap: 12px;
}
.nav-plantas svg {
  background: #d8d700;
  width: 40px;
  height: 40px;
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: all .5s;
}
.nav-plantas svg:hover {
  background: #c5c500;
}
.nav-plantas .arrow {
  stroke: #0b0c6f;
  transition: stroke 0.3s;
}
.nav-plantas svg:hover .arrow {
  stroke: #fff;
}

.nav-plantas {
  display: flex;
  gap: 12px;
  margin-top: 10px;
  justify-content: flex-start;
}

.nav-plantas svg {
  background: #d8d700; /* amarelo principal */
  border-radius: 8px;
  width: 40px;
  height: 40px;
  padding: 10px;
  cursor: pointer;
transition: all .5s;
}

.nav-plantas svg:hover {
  background: #c1c100; /* amarelo mais escuro no hover */
}

.nav-plantas svg path {
  fill: #0a0069; /* azul escuro como ícone */
}

.nav-plantas {
  display: flex;
  gap: 12px;
}

.nav-plantas svg {
  background: var(--Primary-Light, #d8d700);
  padding: 10px;
  border-radius: 8px;
  width: 40px;
  height: 40px;
transition: all .5s;
  cursor: pointer;
}

.nav-plantas svg:hover {
  background: #c5c500;
}

.nav-plantas svg path {
  fill: #8f7b50;
  stroke: var(--Primary-Dark, #0a0069);
  stroke-width: 1.5px;
}

/* ---------- Slick ajustes ---------- */
.slider-plantas .slick-slide {

} /* espaço vertical */
.slider-plantas .slick-list {
  overflow: hidden;
}

/* todas as thumbs da seção Plantas */
#plantas .thumb-slide {
  width: 120px; /* ou qualquer largura que funcione no layout */
  height: 120px; /* ------------- altura fixa ---------------- */
  overflow: hidden; /* corta o excesso */
  box-sizing: border-box; /* mantém a borda dentro dos 120 px */
}

#plantas .thumb-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* preenche sem distorcer */
}

/* garante que o bloco da direita estique até a borda */
#plantas .lado-direito {
  flex: 1 1 auto; /* cresce o necessário */
  max-width: none; /* remove limite de 35% (se ainda existir) */
  position: relative; /* para o absolute das setas funcionar */
  z-index: 999;
}

/* 1 ▸ Alinha o carrossel com o título -------------------------------- */
#plantas .slider-plantas {
  margin-top: 0; /* zera deslocamento que estava empurrando */
}

/* 2 ▸ Mostra parte do próximo slide ---------------------------------- */
/*   – largura de 1 thumb (240 px) + ½ thumb (≈120 px) + paddings      */
/*   – 240 + 120 + 8 = 368 px   (ajuste se quiser mostrar mais/menos)  */
#plantas .slider-plantas {
  max-width: 368px; /* antes 496 px ou 396 px                  */
  overflow: visible; /* deixa “vazar” a terceira imagem         */
}

/* permite que as thumbs ultrapassem o limite do pai, se preciso */
#plantas .slider-plantas {
  overflow: visible; /* remove o corte lateral */
  margin-left: auto; /* empurra tudo p/ direita se usar flex */
}

/* -----------------------------------------------------------------
   1 ▸  Alinhar slider com o título
   ----------------------------------------------------------------- */

/* a coluna da direita vira grid: cada item numa linha fixa        */
#plantas .lado-direito {
  display: grid;
  grid-template-rows: auto auto auto; /* subtitle | headline | slider */
  row-gap: 24px; /* dist. entre headline e slider */
  align-items: start; /* cola todo mundo no topo       */
}

/* -----------------------------------------------------------------
   2 ▸  Mostrar um “preview” do próximo slide à direita
   ----------------------------------------------------------------- */

/* a) faz o carrossel vazar além da borda da coluna ---------------- */
#plantas .slider-plantas {
  max-width: 496px; /* 2 thumbs inteiras (240)  + 16 px de folga */
  overflow: visible; /* deixa a 3ª thumb aparecer parcialmente    */
  padding-right: 120px; /* espaço p/ metade da próxima thumb (≈ 1/2) */
}

/* b) remove o corte padrão da lista do slick ---------------------- */
#plantas .slider-plantas .slick-list {
  overflow: visible;
}

/* ============  CONFIG FINAL PARA A SEÇÃO #plantas  ================= */

/* COLUNA DA DIREITA: título + slider sempre alinhados no topo ------ */
#plantas .lado-direito {
  display: grid;
  grid-template-rows: auto auto auto; /* subtitle | headline | slider */
  row-gap: 24px;
  align-items: start;
  max-width: none; /* deixa crescer até ocupar o disponível */
}

/* THUMBS ----------------------------------------------------------- */
#plantas .thumb-slide {
  width: 120px; /* largura da miniatura   */
  padding: 4px;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}
#plantas .thumb-slide img {
  height: 120px; /* altura da imagem       */
  object-fit: cover;
}
#plantas .thumb-slide .caption {
  margin-top: 6px;
  color: #fff;
  font: 400 14px/1.3 "Sora", sans-serif;
  text-align: center;
}

/* SLIDER ----------------------------------------------------------- */
/* duas thumbs inteiras (120*2) + paddings (8) = 248  */
/* adicionamos 60 px para mostrar ~metade da 3ª thumb  */
#plantas .slider-plantas {
  max-width: 308px; /* 248 + 60 = 308   ajuste se quiser +/- preview */
  overflow: visible; /* deixa a próxima thumb “vazar”                */
  margin-top: 0; /* 0 = alinhado ao título                       */
  padding-right: 60px; /* espaço para o preview                        */
}

/* O Slick por padrão prende overflow na lista, soltamos: */
#plantas .slider-plantas .slick-list {
  overflow: visible;
}

/* === THUMBS – tamanho maior + legenda visível =================== */

/* cada célula agora tem 140 × 110  ------------------------------- */
#plantas .thumb-slide {
  width: 140px; /* ⇠  ajuste a largura a gosto           */
  height: auto; /* permite crescer na vertical           */
  display: flex; /* empilha imagem + legenda              */
  flex-direction: column;
  align-items: center;
  padding: 4px;
  box-sizing: border-box;
}

/* imagem ocupa 110 px fixos e mantém proporção ------------------- */
#plantas .thumb-slide img {
  width: 100%;
  height: 110px; /* ⇠ altura da imagem                    */
  object-fit: cover;
  border-radius: 4px;
  transition: all .5s;
}

/* legenda sempre visível (fora da área de corte) ---------------- */
#plantas .thumb-slide .caption {
padding: 10px 15px;
    border-radius: 0px 0px 8px 8px;
    border: 2px solid rgba(255, 255, 255, 0.20);
    background: rgba(255, 255, 255, 0.10);
    margin: 0;
    color: var(--100, #FFF);
    text-align: center;
    leading-trim: both;
    text-edge: cap;
    font-family: Sora;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    width: 100%;      
}

/* thumb selecionada (slick-current) ----------------------------- */


/* opcional: deixa o grid mais firme sem vazar pela direita ------- */
#plantas .slider-plantas {
  max-width: 304px; /* 2 × (140 + 4px padding + 4px padding) */
}

/* se quiser centralizar o carrossel dentro do bloco -------------- */
#plantas .slider-plantas .slick-track {
  display: flex;
  align-items: flex-start;
}

/* ============================================================= */
/*  THUMBS 240 × 200 px  (aumento de +50 px em cada eixo)         */
/* ============================================================= */

#plantas .thumb-slide {
  width: 334px; /* 190 → 240 */
  cursor: pointer;
  height: auto;
  padding: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}

#plantas .thumb-slide img {
  height: 200px; /* 150 → 200 */
  object-fit: cover;
}

/* Faixa do carrossel: 2 × (240 px + 8 px de padding) = 496 px */
#plantas .slider-plantas {
  max-width: 496px; /* 396 → 496 */
}

.planta-destaque {
  flex: 1 1 50%;
  width: 50%;
}

.container-plantas {
  display: flex;
  gap: 60px;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 40px;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: -30px;
}

#plantas .thumb-slide img {
  height: 300px;
  object-fit: contain;
}

/* -- gabriel - */

/* 1 ▸ Alinha o carrossel com o título -------------------------------- */
#plantas .slider-plantas {
  margin-top: 0; /* zera deslocamento que estava empurrando */
}

/* 2 ▸ Mostra parte do próximo slide ---------------------------------- */
/*   – largura de 1 thumb (240 px) + ½ thumb (≈120 px) + paddings      */
/*   – 240 + 120 + 8 = 368 px   (ajuste se quiser mostrar mais/menos)  */
#plantas .slider-plantas {
  max-width: 368px; /* antes 496 px ou 396 px                  */
  overflow: visible; /* deixa “vazar” a terceira imagem         */
}

/* -----------------------------------------------------------------
   1 ▸  Alinhar slider com o título
   ----------------------------------------------------------------- */

/* a coluna da direita vira grid: cada item numa linha fixa        */
#plantas .lado-direito {
  display: grid;
  grid-template-rows: auto auto auto; /* subtitle | headline | slider */
  row-gap: 24px; /* dist. entre headline e slider */
  align-items: start; /* cola todo mundo no topo       */
}

/* -----------------------------------------------------------------
   2 ▸  Mostrar um “preview” do próximo slide à direita
   ----------------------------------------------------------------- */

/* a) faz o carrossel vazar além da borda da coluna ---------------- */
#plantas .slider-plantas {
  max-width: 496px; /* 2 thumbs inteiras (240)  + 16 px de folga */
  overflow: visible; /* deixa a 3ª thumb aparecer parcialmente    */
  padding-right: 120px; /* espaço p/ metade da próxima thumb (≈ 1/2) */
}

/* b) remove o corte padrão da lista do slick ---------------------- */
#plantas .slider-plantas .slick-list {
  overflow: visible;
}

#plantas .slider-plantas {
  max-width: 820px !important;
  overflow: visible !important;
  padding-right: 0 !important;
}

.planta-destaque {
  flex: 1 1 60% !important;
  width: 50% !important;
}

#plantas .lado-direito {
  display: grid;
  grid-template-rows: auto auto auto;
  row-gap: 24px;
  align-items: start;
  margin-right: -150px;
  margin-bottom: 100px;
  margin-top: -100px;
}

/* Exemplo para setas do Slick/Swiper — ajuste o seletor ao seu caso */
.plantas .slick-arrow {
  position: relative; /* cria contexto p/ aplicar z-index */
  z-index: 200; /* acima dos 100 da elipse */
}

.planta-destaque img {
width: 70% !important;
    margin-left: 20%;
    max-height: 510px;
    height: 100%;
    object-fit: contain;
}

#plantas .lado-direito {
  display: grid;
  grid-template-rows: auto auto auto;
  row-gap: 24px;
  align-items: start;
  margin-right: 10% !important;
  margin-bottom: 100px;
  margin-top: 0;
  width: 1% !important;
}

#plantas .thumb-slide img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 8px 8px 0px 0px;
    background: #FAFAFC;
}

/* FICHA TÉCNICA */

.ficha-tecnica {
  height: auto;
  padding: 130px 0 60px 0;
}

.ficha-tecnica h3 {
  color: var(--100, #fff);
  text-align: left;
  font-family: "Sora", serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 18.2px */
  letter-spacing: 8.4px;
  text-transform: uppercase;
  position: relative;
  padding-left: 50px;
  margin-bottom: 64px;
}

.ficha-tecnica h3::after {
  position: absolute;
  left: 0;
  width: 30px;
  height: 1px;
  content: "";
  display: block;
  background: rgba(255, 255, 255, 0.1);
  top: 50%;
  transform: translateY(-50%);
}

.ficha-tecnica .ficha-wrapper {
  display: flex;
}

.ficha-tecnica .ficha-menu {
  max-width: 300px;
  width: 100%;
  list-style: none;
  padding: 0 100px 0 0;
  margin: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ficha-tecnica .ficha-select {
  display: none;
}

.ficha-tecnica .ficha-menu li {
  padding: 15px 0;
  cursor: pointer;
  transition: all 0.5s;
  max-width: 200px;
  width: 100%;

  color: var(--Primary-Light, #e2d7bd);
  font-family: "Sora", serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 22.4px */
  letter-spacing: 1.6px;
  text-transform: uppercase;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ficha-tecnica .ficha-menu li:hover,
.ficha-tecnica .ficha-menu .active {
  font-weight: 700;
  color: #fff;
}

.ficha-tecnica .ficha-menu li svg {
  transition: all 0.5s;
}

.ficha-tecnica .ficha-menu li svg path {
  transition: all 0.5s;
}

.ficha-tecnica .ficha-menu .active svg {
  transform: rotate(-90deg);
}

.ficha-tecnica .ficha-menu li:hover svg path,
.ficha-tecnica .ficha-menu .active svg path {
  color: #fff;
  stroke: #fff;
}

.ficha-tecnica .ficha-conteudo {
  flex-grow: 1;
  padding: 35px 40px 35px 100px;
}

.ficha-tecnica .ficha-tab {
  display: none;
}

.ficha-tecnica .ficha-tab.active {
  display: flex;
  gap: 30px;
  align-items: start;
  flex-wrap: wrap;
}

.ficha-tecnica .ficha-tab.active .item {
  width: 30.2%;
  align-self: center;
}

.ficha-tecnica .ficha-tab#areas_de_lazer .item h4,
.ficha-tecnica .ficha-tab#diferenciais .item h4,
.ficha-tecnica .ficha-tab#quantidade .item h4,
.ficha-tecnica .ficha-tab#construcao .item h4 {
  color: #fff;
  font-family: Sora;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 22.4px */
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.ficha-tecnica .ficha-tab#metragens .item h4 {
  color: var(--100, #fff);
  font-family: Sora;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 22.4px */
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.ficha-tecnica .ficha-tab#metragens .item p,
.ficha-tecnica .ficha-tab#areas_de_lazer .item p,
.ficha-tecnica .ficha-tab#diferenciais .item p,
.ficha-tecnica .ficha-tab#quantidade .item p,
.ficha-tecnica .ficha-tab#construcao .item p {
  color: var(--Primary-Light, #e2d7bd);
  font-family: Sora;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 19.6px */
  margin-top: 10px;
}

/* LOCALIZAÇÃO E CONTATO */

.localizacao-e-contato {
  background-image: url(../images/bg-localizacao-e-contato.jpg);
  height: auto;
  background-size: cover;
  max-width: 1920px;
  margin: 0 auto;
}

/* --- */

/* LOCALIZAÇÃO */

.localizacao iframe {
  width: 100%;
  border-radius: 20px;
}

/* depois dos seus ajustes atuais */
.iframe-mapa,
.iframe-mapa iframe {
  min-height: 560px; /* antes estava 440 px; ajuste como preferir */
}

.localizacao .infos h3 {
  color: var(--Primary-Light, #d8d700);
  leading-trim: both;
  text-edge: cap;
  font-family: Sora;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.08px;
  text-transform: uppercase;
}

.localizacao .infos h3::after {
  position: absolute;
  left: 0;
  width: 30px;
  height: 1px;
  content: "";
  display: block;
  background: rgba(255, 255, 255, 0.7);
  top: 50%;
  transform: translateY(-50%);
}

.localizacao h2 {
  color: var(--100, #fff);
  leading-trim: both;
  text-edge: cap;
  font-family: Sora;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%; /* 52.8px */
  margin-top: 20px;
}

.localizacao h2 span {
  font-weight: 700;
}

.localizacao .texto {
  color: var(--100, #fff);
  leading-trim: both;
  text-edge: cap;
  font-family: Sora;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 25.2px */
  text-align: left;
}

.localizacao .endereco {
  color: var(--100, #fff);
  leading-trim: both;
  text-edge: cap;
  font-family: Sora;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%; /* 35.2px */
  text-align: left;
  padding-bottom: 30px;
  margin-top: 27px;
}

.localizacao .endereco span {
  color: var(--100, #fff);
  leading-trim: both;
  text-edge: cap;
  font-family: Sora;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%; /* 19.8px */
  text-align: left;
}

.localizacao .botoes {
  display: flex;
  align-items: center;
  gap: 18px;
}

.localizacao .botoes .botao {
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.5s;
  font-family: Sora;
  font-size: 19px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(65px);
}

.localizacao .botoes .botao {
  display: flex;
  align-items: center;
  gap: 16px;

  /* evita quebra de linha --------------------- */
  white-space: nowrap;

  /* resto dos seus estilos */
  font-family: Sora;
  font-size: 19px;
  font-weight: 400;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(65px);
  transition: 0.5s;
}

.localizacao .botoes .botao:hover {
  background: #d8d700;
  color: #0a0069;
}

.localizacao .botoes .botao svg path {
  transition: all 0.5s;
  fill: #fff;
}

.localizacao .botoes .botao:hover svg path {
  fill: #0a0069;
}

/* ===== LOCALIZAÇÃO – ajustes solicitados ===== */
.localizacao {
  height: 722px;
  background: url(../images/LOC.png) center/cover no-repeat;
  padding: 90px 0;
  position: relative;
  overflow: visible;
}

/* ELIPSE ROXA */

.localizacao::after {
  content: "";
  position: absolute;
  top: -1200px;
  left: 37.7%;
  width: 1648px;
  height: 2641px;
  background: url(../images/elipse-toda.png) top right/contain no-repeat;
  /* z-index: 100; */
  pointer-events: none;
}

.localizacao .infos {
  position: relative;
  z-index: 4;
}

/* --- */

/* CONTATO */

.contato {
  background-image: url(../images/CONTATO.png);
  position: relative;
  padding: 150px 0px;
  height: 844px;
}

.contato .box-form {
  margin-top: 55px;
}

.contato .conteudo {
  display: flex;
}

.contato .info-left {
  padding-right: 64px;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.contato .info-left h3 {
  color: var(--Primary-Dark, #00444f);
  font-family: "Sora", serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 250;
  line-height: 130%;
  letter-spacing: 8.4px;
  text-transform: uppercase;
  position: relative;
  padding-left: 50px;
  margin-bottom: 130px;
}

.contato .info-left h3::after {
  position: absolute;
  left: 0;
  width: 30px;
  height: 1px;
  content: "";
  display: block;
  background: rgba(0, 0, 0, 0.1);
  top: 50%;
  transform: translateY(-50%);
}

.contato .info-left h2 {
  color: var(--Primary-Medium, #8f7b50);
  font-family: Archivo;
  font-size: 26px;
  font-style: normal;
  font-weight: 200;
  line-height: 130%; /* 33.8px */
  text-transform: uppercase;
  margin-bottom: 32px;
}

.contato .info-left h2 span {
  color: var(--Primary-Dark, #00444f);
  display: block;
}

.contato .info-left p {
  color: var(--500, rgba(0, 0, 0, 0.4));
  leading-trim: both;
  text-edge: cap;
  font-family: Sora;
  font-size: 16px;
  font-style: normal;
  font-weight: 250;
  line-height: 160%; /* 25.6px */
  max-width: 302px;
  margin-bottom: 125px;
}

.contato .info-left .botoes {
  display: flex;
  gap: 18px;
  align-items: center;
}

.contato .info-left .botao {
  background: var(--Primary-Dark, #00444f);
  border: none;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 16px;
}

.contato .info-left .botao:hover {
  background: #8f7b50;
}

.contato .info-right {
  padding-left: 64px;
}

/* ═══ CONTATO – LAYOUT DO CARD BRANCO ════════════════════════════════ */
.contato {
  position: relative;
  padding: 80px 0 0 0;
  overflow: hidden;
}

/* painel branco translúcido com canto arredondado */
.contato .container {
  position: relative;
  max-width: 1320px; /* mesmo grid do Figma */
  margin: 0 auto;
  display: flex; /* 2 colunas → texto + form */
  gap: 56px; /* espaço entre colunas */
  z-index: 1; /* sobre bg amarelo/roxo   */
}

.contato .container::before {
content: "";
    position: absolute;
    inset: 0;
    background: #fafafc;
    border-radius: 8px;
    z-index: -1;
    left: 50%;
    width: 97%;
    transform: translateX(-50%);
}

/* ——— COLUNA ESQUERDA (título, descrição, botões) ——— */
.contato .container > div:first-child {
  /* seu bloco de textos */
  flex: 0 0 36%; /* ~ 1/3 do card */
  display: flex;
  flex-direction: row;
  align-items: end;
  gap: 24px;
  padding: 70px 0 70px 70px; /* resp. ao grid lateral */
}

.contato h3 {
  color: var(--Primary-Light, #d8d700);
  leading-trim: both;
  text-edge: cap;
  font-family: Sora;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.08px;
  text-transform: uppercase;
} /* remove margens extra  */
.contato h2 {
  margin: 0;
  line-height: 1.1;
  color: var(--Primary-Dark, #0a0069);
  leading-trim: both;
  text-edge: cap;
  font-family: Sora;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  margin: 30px 0;
  line-height: 110%; /* 52.8px */
} /* já estilizado por você*/

.contato h2 span {
  font-weight: 700;
}

.contato p {
color: rgba(67, 66, 71, 0.70);
leading-trim: both;
text-edge: cap;
font-family: Sora;
font-size: 16px;
font-style: normal;
font-weight: 300;
line-height: 140%; /* 22.4px */
margin: 0;
} /* parágrafo descrição   */


/* grupo de botões WhatsApp / Telefone no topo-direita da coluna */
.contato .botoes {
  display: flex;
  gap: 14px;
  margin-top: 12px;
}

.contato .botoes .botao:hover {
  background: #0a0069;
  color: #fff;
}

.contato .botoes .botao path {
  transition: all 0.5s;
}

.contato .botoes .botao:hover path {
  fill: #fff;
}

/* ——— COLUNA DIREITA (formulário) ——— */
.box-form {
  flex: 1; /* ocupa resto do card  */
  padding: 70px 70px 70px 0; /* simétrico ao texto   */
}

/* GRID interno: inputs esquerda x textarea direita */
.box-form .conteudo {
}

/* coluna esquerda (3 inputs) */
.box-form .left {
  flex: 0 0 49%;
  display: flex;
  flex-direction: column;
}

/* coluna direita (textarea) */
.box-form .right {
  flex: 1;
}

/* garante textarea altura agradável */
.box-form textarea {
  width: 100%;
  height: 230px;
  resize: none;
}

/* ——— LINHA DE TERMOS + BOTÃO ——— */
.form-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
}

.form-bottom .botao {
  margin-left: auto; /* cola no canto direito */
}

/* ═══ RESPONSIVIDADE ════════════════════════════════════════════════ */

.botao {
  height: fit-content;
  color: var(--Primary-Light, #0a0069);
  font-family: Sora;
  font-size: 19px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 2.52px;
  width: fit-content;
  padding: 15px 32px;
  border-radius: 10px;
  background: var(--Primary-Brown, #fff);
  transition: 0.5s;
  border-width: 1px;
  border-style: solid;
  border-color: transparent;
  border-image: initial;
}

/* ══ AJUSTE DE POSICIONAMENTO: botões (WhatsApp / Telefone) ───────── */

/* 1. o card precisa ser o referencial para posicionamento absoluto   */
.contato .container {
  position: relative; /* já existia z-index:-1 no ::before */
}

/* 2. botões vão para o canto superior-direito do card                 */
.contato .botoes {
  position: absolute;
  top: 70px; /* mesmo recuo interno do texto */
  right: 70px; /* encosta no alinhamento do form */
  gap: 14px; /* conserva distância entre eles  */
  margin: 0; /* remove margem herdada          */
  z-index: 2; /* acima do fundo translúcido     */
}

/* mantém layout lado a lado mesmo em tablet; mobile empilha abaixo   */

/* --- */

/* FOOTER */

footer {
  background: #d8d700 url(../images/bg-footer.webp);
  background-size: cover;
    background-position: 42% 0%;
  padding: 65px 0 70px 0; 
  max-width: 1920px;
  margin: 0 auto;
   border-top: 30px solid #D8D700
}

footer .flex-logos {
  display: flex;
  gap: 60px;
  margin-bottom: 60px;
}

footer svg {
  transition: all 0.5s;
}

footer svg:hover {
  transform: scale(1.05);
}

footer .conteudo-geral {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

footer .left {
  text-align: center;
  max-width: 370px;
  width: 100%;
}

footer .left .botao {
  border-radius: 8px;
  border: 2px solid rgba(10, 0, 105, 0.1);
  display: block;
  padding: 14px 18px;
  width: 100%;
  margin: 32px auto 0 auto;
  background: #fff;
  color: var(--Primary-Dark, #0a0069);
  leading-trim: both;
  text-edge: cap;
  font-family: Sora;
  font-size: 18.642px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: flex;
  align-items: center;
  gap: 10px;
  height: auto;
  letter-spacing: normal;
  transition: all 0.5s;
  text-decoration: none;
  text-transform: none;
  justify-content: center;
  text-align: center;
}

footer .left .botao svg path {
  transition: all 0.5s;
}

footer .left .botao:hover {
  background: #0a0069;
  color: #fff;
}

footer .left .botao:hover svg path {
  fill: #fff;
}

footer .right {
  display: flex;
  align-items: start;
  justify-content: end;
  gap: 25px;
}

footer .right .logobella {
  max-width: 194px;
}

footer .right .conteudo {
  padding-left: 25px;
  border-left: 1px solid rgb(255 255 255 / 32%);
}

footer .right .conteudo .info-topo {
  display: flex;
  gap: 18px;
  align-items: center;
}

footer .right .conteudo .info-topo > a {
  border-radius: 8px;
  border: 2px solid #fff;
  background: rgba(255, 255, 255, 0.9);
  transition: all 0.5s;
  color: var(--Primary-Dark, #0a0069);
  leading-trim: both;
  text-edge: cap;
  font-family: Sora;
  font-size: 18.642px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: normal;
  padding: 14px 18px;
  text-transform: none;
}

footer .right .conteudo .info-topo > a:hover {
  background: #0a0069;
  color: #fff;
}

footer .right .conteudo .info-topo .redes {
  display: flex;
  align-items: stretch;
}

footer .right .conteudo .info-topo .redes span {
  border-radius: 8px 0 0 8px;
  border: 1px solid rgb(255 255 255 / 32%);
  color: rgba(10, 0, 105, 0.5);
  leading-trim: both;
  text-edge: cap;
  font-family: Sora;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 109%;
  padding: 19px 16px;
}

footer .right .conteudo .info-topo .redes div {
  border-radius: 0 8px 8px 0;
  background: #fff;
  border: 1px solid rgb(255 255 255);
  color: rgba(10, 0, 105, 0.5);
  leading-trim: both;
  text-edge: cap;
  font-family: Sora;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 109%;
  padding: 0 16px;
  display: flex;
  gap: 10px;
  align-items: center;
}

footer .texto-legal {
  color: rgba(10, 0, 105, 0.5);
  leading-trim: both;
  text-edge: cap;
  font-family: Sora;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 19.6px */
  margin: 30px 0;
  padding: 30px 0;
  border-top: 1px solid rgb(255 255 255 / 32%);
  border-bottom: 1px solid rgb(255 255 255 / 32%);
  max-width: 444px;
}

footer .texto-legal p {
  margin-bottom: 10px;
}

footer .texto-legal p:last-child {
  margin-bottom: 0;
}

footer .info-bottom {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-evenly;
}

footer .info-bottom p,
footer .info-bottom a {
  color: rgba(10, 0, 105, 0.5);
  leading-trim: both;
  text-edge: cap;
  font-family: Sora;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

footer .info-bottom a.logo-rb {
  position: relative;
  top: -3px;
}

/* --- */

/* FORMULÁRIOS */

input:focus,
input:focus-visible {
  outline: none !important;
}

.formpadrao input,
.formpadrao textarea {
  padding: 16.5px 24px;
  border-radius: 8px;
  border: 1px solid rgba(10, 0, 105, 0.04);
  background: #fff;
  margin-bottom: 18px;
  color: var(--Primary-Dark, #434247);
  font-family: Sora;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  width: 100%;
}

.contato .formpadrao textarea {
}

.formpadrao .botao {
  border-radius: 8px;
  background: var(--Primary-Light, #d8d700);
  width: fit-content;
  margin: 0 !important;
  color: var(--Primary-Dark, #0a0069);
  leading-trim: both;
  text-edge: cap;
  font-family: Sora;
  font-size: 18.642px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: none;
  letter-spacing: normal;
}

.formpadrao .conteudo .left,
.formpadrao .conteudo .right {
  padding: 0 7px;
  width: 50%;
}

.formpadrao .botao:hover {
  background: #0a0069;
  color: #fff;
}

.formpadrao textarea {
  height: 199px;
}

.formpadrao input::placeholder,
.formpadrao textarea::placeholder {
  color: var(--Primary-Dark, #434247);
  font-family: Sora;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.formpadrao select {
  padding: 12px;
  border: none;
  border-bottom: 1px solid var(--brand-secundary, #57413b);
  background: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
  color: var(--brand-secundary-darker, #321d17);
  font-family: Sora;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  width: 100%;
}

.formpadrao .form-bottom {
  padding: 0 7px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 13px;
}

.formpadrao .politica input[type="checkbox"],
.wpcf7-acceptance input[type="checkbox"] {
  float: left;
  width: 30px;
  height: 30px;
  margin-right: 12px;
  margin-bottom: 0;
}
.formpadrao .politica span,
.wpcf7-acceptance .wpcf7-list-item-label {
  color: var(--Primary-Dark, #434247);
  leading-trim: both;
  text-edge: cap;
  font-family: Sora;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 110%; /* 15.4px */
  max-width: 210px;
  display: block;
}

.formpadrao .politica span a {
  color: var(--Primary-Dark, #434247);
  font-weight: 400;
}

.form-modal .formpadrao .politica span,
.form-modal .formpadrao .politica span a {
  color: #fff !important;
}

.form-modal.form-modal-whatsapp .formpadrao .politica span,
.form-modal.form-modal-whatsapp .formpadrao .politica span a {
  color: var(--800, rgba(0, 0, 0, 0.6)) !important;
}

.formpadrao input.btn-envia {
  border-radius: 100px;
  background: var(--Primary-Medium, #1571a7);
  padding: 18px 32px;

  color: var(--100, #fff);
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-family: Sora;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%; /* 17.6px */
  letter-spacing: 1.6px;
  text-transform: uppercase;
  max-width: min-content;
  border: 1px solid #1571a7;
  transition: all 0.5s;
  display: block;
  margin: 0;
}

.formpadrao input.btn-envia:hover {
  background: #fff;
  padding: 18px 32px;
  color: #1571a7;
}

/* --- */

/* NAV-FIXO E MODAIS */

.barrafixa {
  padding: 15px 30px;
  right: 110px;
  bottom: 15px;
  display: flex;
  flex-direction: row;
  position: fixed;
  align-items: center;
  top: auto;
  margin: 0;
  z-index: 30;
  transition: all 0.5s;
  background: url(../images/bg-barra.svg);
  background-size: cover;
  background-position: center;
  border-radius: 28px;
  overflow: hidden;
  gap: 30px;
  width: fit-content;
  background-color: transparent;
}

.barrafixa .item {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.6s;
}

.barrafixa .item:hover {
  transform: scale(1.08);
}

.barrafixa .item .icon {
  display: flex;
  width: 48px;
  height: 48px;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
}

.barrafixa .item.tel .icon,
.barrafixa .item.mail .icon {
  background: var(--100, #fff);
}

.barrafixa .item.wpp .icon {
  background: #24b550;
}

.barrafixa .item p {
  color: var(--100, #fff);
  leading-trim: both;
  text-edge: cap;
  font-family: Sora;
  font-size: 10px;
  font-style: normal;
  font-weight: 250;
  line-height: 130%; /* 13px */
  letter-spacing: 1px;
  text-transform: uppercase;
}

.barrafixa .item span {
  margin-top: 4px;
  display: block;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.4px;
}

.barrafixa .item.wpp p {
  color: var(--Primary-Dark, #00444f);
}

.form-modal .fancybox-close-small {
  border-radius: 8px;
  background: var(--Primary-Light, #d8d700);
  right: -20px !important;
  top: -20px !important;
  color: #0a0069 !important;
  padding: 7px;
  opacity: 1 !important;
  transition: all 0.5s;
}

.form-modal .fancybox-close-small:hover {
  border-radius: 100px !important;
}

.form-modal {
  max-width: 1030px !important;
  padding: 60px !important;
  width: 100% !important;
  border-radius: 10px !important;
  background-color: #fafafc !important;
  position: relative !important;
  overflow: visible !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: bottom !important;
}

/* .form-modal::before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
} */

.form-modal.form-modal-email {
  background-image: url(../images/bg-modal-email.webp) !important;
}

.form-modal.form-modal-telefone {
  background-image: url(../images/bg-modal-telefone.webp) !important;
}

.form-modal.form-modal-whatsapp {
  background-image: url(../images/bg-modal-whatsapp.webp) !important;
}

.form-modal .conteudo {
  display: flex;
  justify-content: space-between;
  position: relative;
  align-items: center;
  z-index: 2;
}

.form-modal .esquerda {
  max-width: 335px;
  width: 100%;
  margin-right: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-modal .esquerda .header {
  display: flex;
  align-items: center;
  gap: 18px;
}

.form-modal .esquerda .header h5 {
  color: var(--Primary-Dark, #0a0069);
  text-align: start;
  leading-trim: both;
  text-edge: cap;
  font-family: Sora;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.08px;
  text-transform: uppercase;

  padding-left: 18px;
  border-left: 1px solid rgba(10, 0, 105, 0.08);
}

.form-modal .esquerda .header h5 span {
  color: var(--Primary-Dark, #0a0069);
  leading-trim: both;
  text-edge: cap;
  font-family: Sora;
  font-size: 43px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%; /* 52.8px */
  margin-top: 3px;
  display: block;
}

.form-modal .esquerda .texto {
  color: rgba(67, 66, 71, 0.7);
  leading-trim: both;
  text-edge: cap;
  font-family: Sora;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 22.4px */
  margin: 25px 0 0 0;
  max-width: 332px;
}

.form-modal .esquerda .bottom h6 {
  color: var(--200, rgba(255, 255, 255, 0.7));
  leading-trim: both;
  text-edge: cap;
  font-family: Archivo;
  font-size: 10px;
  font-style: normal;
  font-weight: 300;
  line-height: 140%; /* 14px */
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.form-modal .esquerda .bottom p {
  color: var(--200, rgba(255, 255, 255, 0.7));
  leading-trim: both;
  text-edge: cap;
  font-family: Archivo;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 140%;
}

.form-modal .direita {
  max-width: 550px;
  width: 100%;
  align-self: center;
}

.form-modal form .conteudo {
  display: block;
}

.form-modal form .left,
.form-modal form .right {
  width: 100% !important;
  padding: 0 !important;
}

.form-modal form textarea {
  height: 145px;
}

.form-modal .formpadrao input,
.form-modal .formpadrao textarea {
  background: var(--100, #fff);
  margin-bottom: 15px;
}

.form-modal .formpadrao .politica span {
  color: #fff;
}

.form-modal .formpadrao .botao {
  background: #fff;
  color: var(--Primary-Dark, #0a0069);
  font-size: 17px;
}

.form-modal .formpadrao .botao:hover {
  transform: scale(1.05);
}

.erro404,
.obrigado {
  text-align: center;
    background-image: url(../images/bg-padrao.webp);
    background-size: cover;
    background-position: center;
  min-height: 100vh;
  padding: 100px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.erro404 h1 {
color: var(--100, #FFF);
leading-trim: both;
text-edge: cap;
font-family: Sora;
font-size: 319.9px;
font-style: normal;
font-weight: 800;
line-height: 80%;
letter-spacing: -15.995px;
  margin-bottom: 30px;
}

.obrigado h1 {
color: var(--100, #FFF);
leading-trim: both;
text-edge: cap;
font-family: Sora;
font-size: 130px;
font-style: normal;
font-weight: 800;
line-height: 110%;
letter-spacing: -9.995px;
  margin-bottom: 30px;
}

.erro404 p,
.obrigado p {
color: var(--100, #FFF);
leading-trim: both;
text-edge: cap;
font-family: Sora;
font-size: 24px;
font-style: normal;
font-weight: 400;
line-height: normal;
border-radius: 6.214px;
background: rgba(255, 255, 255, 0.08);
padding: 18px 32px;
width: fit-content;
margin: 0 auto;
}

.erro404 .botao,
.obrigado .botao {
  display: block;
  margin: 30px auto 0 auto;
}

.erro404 .botao:hover,
.obrigado .botao:hover {
  background-color: #5A3CDB;
}

section.default {
  padding: 180px 0 90px 0;
}

section.default h1 {
color: var(--Primary-Dark, #0A0069);
leading-trim: both;
text-edge: cap;
font-family: Sora;
font-size: 48px;
font-style: normal;
font-weight: 700;
    text-align: center;
line-height: 110%;
max-width: 300px;
margin: 0 auto 60px auto;
}

section.default h1::first-line {
  font-weight: 300;
}

section.default .content-default h2,
section.default .content-default h3,
section.default .content-default h4,
section.default .content-default h5,
section.default .content-default h6 {
color: var(--Primary-Dark, #0A0069);
font-family: Sora;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  margin-bottom: 15px;
  margin-top: 10px;
}

section.default .content-default p {
  color: var(--500, rgb(0 0 0 / 70%));
  font-family: Sora;
  font-size: 14px;
  font-style: normal;
  font-weight: 250;
  line-height: 130%; /* 18.2px */
  letter-spacing: 0.7px;
  margin-bottom: 15px;
}

/* --- */

/* ── faz o formulário começar DEPOIS da faixa de botões ───────────── */
.contato .box-form {
  /* remove o margin antigo (55 px) */
  margin-top: 0;

  /* empurra internamente o conteúdo  – altura dos botões ( ≅ 56 px )
     + folga visual. Ajuste se usar botões maiores/menores.            */
  padding-top: 0px !important; /* 70 (recuo topo) + 56 (botão) + 14 folga */
}

/* tablet & mobile: como os botões voltam para o fluxo, não precisamos
   desse espaço extra                                                */

/* ══ NOVA ESTRUTURA: CARD EM DUAS LINHAS ──────────────────────────── */

/* 1 ▸ container agora empilha FAIXA-1 e FAIXA-2                       */
.contato .container {
  display: flex; /* vira coluna ↓ */
  flex-direction: column;
  gap: 56px; /* respiro entre faixas                 */
}

/* 2 ▸ FAIXA-1: bloco de texto + botões lado a lado                   */
.contato .container > div:first-child {
  /* já é o bloco de textos  */
  display: flex;
  justify-content: space-between; /* empurra botões p/ direita */
  gap: 15px;
  padding: 70px 70px 0 70px; /* 70 topo + laterais       */
}

.contato .container > div:first-child .left {
  width: 51%;
}

/* Botões permanecem inline, só tiramos posicionamento absoluto       */
.contato .botoes {
  position: static;
  margin: 0;
  flex-wrap: wrap;
width: 43%;
    justify-content: end;
}

/* 3 ▸ FAIXA-2: formulário ocupa toda a largura                       */
.box-form {
  padding: 0 70px 70px 70px; /* laterais iguais à FAIXA-1, 70 bottom */
}

.localizacao .botoes .botao {
  display: flex;
  align-items: center;
  gap: 16px;
  white-space: nowrap;
  font-family: Sora;
font-size: 18.642px;
text-transform: none;
  font-weight: 400;
  letter-spacing: normal;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(65px);
  transition: 0.5s;
  color: #fff;
}

/* 01/06 - Fellype */

.localizacao .infos h3::after {
  display: none;
}

 .header-azul .logo-alta-vista {
        width: 190px;

   }


@media (max-width: 991px) {

  header .container {
    gap: 0;
  }

  .topo {
  background-image: url(../images/mob-topo.webp);
        background-color: #5A3CDB;
        background-repeat: no-repeat;
        background-position: center top;
        position: relative;
        padding-top: 60px;
        height: 788px;
        width: auto;
} 
  .topo .botao-conheca {
        text-align: center;
        font-size: 20px;
        max-width: 310px;
        width: 100%;
        top: 550px;
        padding: 17px;
  }

  .topo .logo-altavista {
        max-width: 230px;
        width: 90%;
        top: 610px;
  }

    .topo .logo-altavista img {
      width: 100%;
    }

  header .logo svg {
        width: 87px;
    height: 65px;
  }

  .topo .texto-lote {
    padding: 0;
  }

  header  {
    padding-top: 25px;
  }

  .topo .elementos-elipse {
              top: 110px;
  }

  .lote-150 {
    max-width: 190px;
  }

  .diferenciais {
    background-image: none;
    background-color: #5A3CDB;
    height: auto;
    padding-top: 55px;
  }

  .diferenciais h2 {
        font-size: 38px;
  }

  .videos .video-item .info {
    width: 90%;
  }
  .videos .video-item p {
letter-spacing: 2px;
  }

  .diferenciais .col-lg-5.col-md-12 {
    background: #0a0069;
    padding: 30px 30px 60px 30px;
    border-radius: 12px;
            width: 95%;
        margin: 0 auto;
  }

  .videos {
    padding-top: 40px;
    height: auto;
  }

  .texto-diferenciais {
    max-width: 100%;
  }

  .diferenciais .infos-bottom {
justify-content: center;
    margin: 20px auto 0 auto;
    transform: none;
    position: static;
    flex-direction: row-reverse;
  }

  .videos .box-video {
    width: 350px;
    height: 450px;
  }

  .subtitulo-videos {
    font-size: 35px;
    text-align: center;
    max-width: 350px;
  }

  .container-obras {
    flex-direction: column;
    gap: 10px;
  }

  .galeria-obras {
    margin: 0 auto;
    text-align: center;
  }
  .card-status-obra {
    margin: 0 auto;
    height: auto !important;
  }

  .etapas-obras {
    grid-template-columns: repeat(1, 1fr);
  }

  .etapa-item {
    gap: 10px;
  }

  #galeria-slider .slider-galeria {
        padding: 0 20px !important;
  }

  #galeria-slider .galeria-item {
    height: 300px;
  }

  #galeria-slider .box-galeria {
    padding: 10px;
    max-width: 330px;
  }

.nav-plantas {
  margin: 50px auto 0 auto;
    justify-content: center;
}

  .formpadrao .botao {
    margin-right: 50px !important;
  }

  #plantas .thumb-slide {
    margin: 0 7px;
  }

  #galeria-slider .nav-galeria {
        gap: 20px;
  }

  .diferenciais .infos-bottom .nav-diferenciais {
    margin: 0;
    flex-direction: row-reverse;
    justify-content: center;
  }


  .contato .container > div:first-child {
        padding: 70px 25px 00px 25px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 35px;
                text-align: center;
  }

  .contato .container {
        gap: 40px;
  }

  .contato h2 {
        font-size: 38px;
    line-height: 100%;
  }

  .contato .container > div:first-child .left {
  max-width: 400px;
    width: 100%;
}

.contato .botoes {
  max-width: 400px;
    width: 100%;
    justify-content: center;
}

.contato .botoes .botao {
  width: 100%;
  max-width: 300px;
}

  /* .videos .nav-videos svg {
    margin-left: 100px;
    margin-right: 100px;
  } */

  footer {
    background: #d8d700 url(../images/mob-bg-footer.svg);
background-position: 30%;
        padding: 200px 0 100px 0;
        background-size: cover;
        text-align: center;
  }

  .localizacao {
    padding: 75px 0;
    background: none;
    height: auto;
  }

   .videos .slider-videos .slick-center .video-item {
    height: 400px;
   }

   .localizacao .botoes {
    flex-direction: column;
   }

   .localizacao > .container .row .col-lg-5{
    padding: 0;
   }

   section.default {
    padding-top: 130px;
   }

   .contato {
    padding: 80px 0 60px 0;
    background-image: none;
    background-color: #D8D700;
    height: auto;
   }

   section.default h1 {
    font-size: 35px;
   }

   .contato .container {
        width: 90%;
   }

   .contato .box-form {
padding: 0 10px 40px 10px !important;
   }

   .box-form .conteudo {
    flex-direction: column;
   }

   .formpadrao .conteudo .left, .formpadrao .conteudo .right {
        padding: 0;
    width: 100%;
   }

   .formpadrao textarea {
    height: 120px;
   }

  .localizacao > .container .row {
        flex-direction: column-reverse !important;
  }

  .localizacao .infos {
        padding: 90px 10px 30px 10px;
        text-align: center;
background: url(../images/elipse-toda.png);
background-size: cover;
        background-position: center top;
  }

  .localizacao h2 {
    font-size: 35px;
  }

  .localizacao .texto {
    text-align: center;
  }

  .localizacao .endereco {
    text-align: center;
    font-size: 25px;
  }

  #plantas {
    padding-top: 0;
  }

  .localizacao::after {
    display: none;
    top: -1100px;
  }

  #galeria-slider {
    height: auto;
  }

  #plantas {
    background-color: #0A0069;
    padding: 75px 0;
    text-align: center;
  }

  #plantas .lado-direito {
    margin: 0 !important;
    display: block;
    width: 100% !important;
  }

  #plantas .subtitle {
text-align: center;
  }

  #plantas .headline {
    font-size: 38px;
    margin: 40px auto;
  }

  .container-plantas {
display: block;
    padding: 0;
    margin: 0;
}

.planta-destaque {
  display: none;
}

  .iframe-mapa,
  .iframe-mapa iframe {
    min-height: 300px !important;
    width: 100% !important;
  }

  footer .conteudo-geral {
justify-content: center;
    align-items: center;
            flex-direction: column;
            gap: 40px;
  }

  footer .right {
        flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  footer .right .conteudo {
    padding: 0;
        flex-direction: column;
  }

  footer .right .conteudo .info-topo {
    flex-direction: column;
    background: #D8D700;
    padding: 27px 20px;
    border-radius: 12px;
  }

  footer .texto-legal {
        padding: 25px 0;
    margin: 25px auto;
    border: none;
  }

  footer .info-bottom {
        flex-direction: column;
    gap: 12px;
}

.form-modal {
  padding: 34px 20px !important;
  max-width: 600px !important;
  width: 90% !important;
  background-position: 10% !important; 
}

.form-modal form textarea {
  height: 100px;
}

.form-modal .conteudo {
  flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
  }

  footer .right .conteudo .info-topo .redes span {
    color: #3f3f3f;
  }

  .form-modal .esquerda {
    margin: 0;
    max-width: 100%;
  }

  .form-modal .esquerda .header h5 span {
    font-size: 30px;
  }

  .form-modal .formpadrao .politica span, .form-modal .formpadrao .politica span a {
        color: var(--800, rgba(0, 0, 0, 0.6)) !important;
  }

  .erro404 h1 {
    font-size: 150px;
  }
  
  .obrigado h1 {
    font-size: 60px;
            letter-spacing: normal;
  }

  .erro404 p, .obrigado p{
    font-size: 20px;
  }

  .erro404 .botao, .obrigado .botao {
        letter-spacing: normal;
    font-size: 16px;
  }
}



.localizacao .botoes .botao {
  
}

#galeria-slider .slider-galeria {
  padding-left: 200px;
  z-index: 10;
}

.iframe-mapa,
.iframe-mapa iframe {
  min-height: 600px;
  width: 95%;
  position: relative;
    z-index: 1;
}

#plantas .thumb-slide img {
  height: 100%;
      max-height: 224px;
          min-height: 224px;
  width: 100%;
    object-fit: cover;
    border-radius: 8px 8px 0px 0px;
    background: #FAFAFC;
}


.privacy-policy header {
  background: #0A0069;
}