* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #9b8b7e;
  --text-dark: #2c2c2c;
  --text-light: #666666;
  --bg-light: #f5f3f0;
  --white: #ffffff;
  --accent: #7a6f63;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--text-dark);
  background-color: var(--white);
  line-height: 1.6;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.98);
  padding: 1.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

header .logo img {
  height: 100px;   /* controla a altura do logo */
  width: auto;    /* mantém a proporção da imagem */
  display: block; /* evita espaçamento indesejado */
  cursor: pointer; /* caso queira que o logo seja clicável */
}

.gallery-section {
  width: 100%;
  overflow: hidden;
  color: #333;
  text-align: center;
}

.gallery-text {
  padding: 60px 20px 40px;
  background: #fff; /* fundo branco separado do carrossel */
}

.gallery-text h2 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.gallery-text p {
  font-size: 1.3rem;
  color: #555;
}

.gallery-carousel {
  position: relative;
  width: 100%;
  height: 100vh; /* carrossel ocupa a tela toda */
}

.gallery-carousel .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}


nav {
  display: flex;
  align-items: center;
  gap: 20px; /* espaço entre os itens */
}

nav .nav-logo {
  height: 40px; /* ajusta o tamanho do logo */
  width: auto;
  cursor: pointer;
}

/* Estilo padrão (desktop) */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
}

nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

nav .nav-logo {
  height: 40px;
  width: auto;
}

/* ===================== */
/* MOBILE - até 768px */
/* ===================== */
@media (max-width: 768px) {
  nav a {
    display: none; /* esconde os links do nav */
  }

  nav .nav-logo {
    display: block; /* mantém o logo parceiro */
    height: 35px;   /* ajusta tamanho no mobile */
  }

  .logo img {
    height: 40px;
  }

  .cta-button {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }
}
/* Estilo padrão (desktop) */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
}

nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

nav .nav-logo {
  height: 40px;
  width: auto;
}

/* ===================== */
/* MOBILE - até 768px */
/* ===================== */
@media (max-width: 768px) {
  nav a {
    display: none; /* esconde os links do nav */
  }

  /* agrupa a logo principal e a do nav lado a lado */
  .logo,
  .nav-logo {
    display: inline-block;
    vertical-align: middle;
  }

  .logo img {
    height: 35px; /* menor no mobile */
    width: auto;
  }

  nav .nav-logo {
    height: 30px; /* menor no mobile */
    width: auto;
  }

  /* deixa o nav só para alinhar o segundo logo */
  nav {
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }

  header .cta-button {
  display: none;
}


  header {
    justify-content: space-between;
  }

  .gallery-section {
  padding: 20px;
}

.gallery-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 15px;
}

.gallery-carousel .slide {
  flex: 0 0 100%;
  scroll-snap-align: center;
  text-align: center;
}

.gallery-carousel img {
  width: 100%;      /* ocupa toda a largura do container */
  height: auto;     /* mantém a proporção */
  max-width: 100%;  /* impede que ultrapasse a tela */
  border-radius: 12px; /* opcional: deixa cantos arredondados */
}


  .cta-button {
    padding: 0.5rem 0.9rem;
    font-size: 0.9rem;
  }
}

.gallery-carousel .slide.active {
  opacity: 1;
  z-index: 1;
}

.gallery-carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--text-dark);
}

nav {
  display: flex;
  gap: 2.5rem;
}

nav a {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--primary-color);
}

.cta-button {
  background-color: var(--white);
  color: var(--text-dark);
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--primary-color);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.cta-button:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  margin-top: 80px;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1));
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 5rem;
}

.hero-overlay h1 {
  color: var(--white);
  font-size: 3.5rem;
  font-weight: 300;
  letter-spacing: 3px;
  line-height: 1.3;
  text-align: right;
  text-transform: uppercase;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 6rem 0;
}

.section-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.section-content.reverse {
  direction: rtl;
}

.section-content.reverse > * {
  direction: ltr;
}

.section-text {
  padding: 2rem;
}

.apartments-images {
  margin-top: 2rem;
  padding: 0 1rem; /* respiro lateral em telas pequenas */
}

.apartments-images img {
  width: 80%;
  max-width: 1200px; /* limita o tamanho em telas muito grandes */
  height: auto;
  display: block;
  margin: 0 auto 2rem auto; /* centraliza e dá espaço entre elas */
  border-radius: 12px; /* bordas levemente arredondadas */
  box-shadow: 0 6px 20px rgba(0,0,0,0.12); /* sombra suave */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.apartments-images img:hover {
  transform: scale(1.02); /* efeito leve de zoom */
  box-shadow: 0 8px 25px rgba(0,0,0,0.18);
}

/* Responsividade */
@media (max-width: 768px) {
  .apartments-images img {
    max-width: 100%; /* ocupa 100% no mobile */
    border-radius: 8px;
  }
}

.vista-section {
  text-align: center;
  margin: 4rem 0;
}

.vista-section h2 {
  font-size: 2.2rem;
  font-weight: 400;
  margin-bottom: 2rem;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.vista-image img {
  width: 100%;
  height: auto;
  max-height: 90vh; /* ocupa quase a tela toda, mas sem cortar muito */
  object-fit: cover; /* garante que a imagem preencha bem */
  display: block;
  border-radius: 10px; /* opcional para suavizar */
  box-shadow: 0 6px 20px rgba(0,0,0,0.15); /* destaque */
}

/* Mobile */
@media (max-width: 768px) {
  .vista-section h2 {
    font-size: 1.6rem;
  }

  .vista-image img {
    border-radius: 0; /* sem borda arredondada no mobile, fica full */
    max-height: none;
  }
}

.vista-section {
  text-align: center;
  margin: 4rem 0;
}

.vista-section h2 {
  font-size: 2.2rem;
  font-weight: 400;
  margin-bottom: 2rem;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.vista-image img {
  width: 100%;      /* ocupa toda a largura */
  height: auto;     /* mantém a proporção original */
  display: block;
  margin: 0 auto;
  max-width: 1800px; /* limite opcional para telas muito grandes */
}


.section-text h2 {
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: 2px;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  text-transform: uppercase;
}

.section-text h3 {
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 2px;
  color: var(--text-light);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.section-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.section-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.section-image:hover img {
  transform: scale(1.02);
}

.intro-section {
  background-color: var(--bg-light);
}

.apartments-section {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 4rem 0;
}

.full-width-content {
  text-align: center;
}

.apartments-section h2 {
  font-size: 3rem;
  font-weight: 300;
  letter-spacing: 3px;
  margin-bottom: 0.5rem;
}

.apartments-section .subtitle {
  font-size: 1.2rem;
  letter-spacing: 2px;
  font-weight: 300;
}

.garden-section {
  background-color: var(--white);
}

.concept-section {
  background-color: var(--bg-light);
}

.cta-link {
  display: inline-block;
  margin-top: 2rem;
  padding: 1rem 2.5rem;
  background-color: var(--accent);
  color: var(--white);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 1px;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.cta-link:hover {
  background-color: var(--text-dark);
  transform: translateY(-2px);
}

.video-container {
  position: relative;
}

.video-container video {
  width: 100%;
  height: auto;
  display: block;
}

.architecture-section {
  background-color: var(--white);
}

.facade-section {
  background-color: var(--bg-light);
}

footer {
  background-color: var(--text-dark);
  color: var(--white);
  padding: 3rem 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-logo h3 {
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.footer-logo p {
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 1px;
  opacity: 0.8;
}

.footer-contact h4 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.footer-contact p {
  font-size: 0.9rem;
  font-weight: 300;
  opacity: 0.8;
  margin-bottom: 0.5rem;
}

.floating-buttons {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 999;
}

.whatsapp-button,
.email-button {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.whatsapp-button {
  background-color: #cba876;
}

.email-button {
  background-color: #9b8b7e;
}

.whatsapp-button:hover,
.email-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.whatsapp-button svg,
.email-button svg {
  width: 28px;
  height: 28px;
  color: var(--white);
}

@media (max-width: 1024px) {
  header {
    padding: 1rem 2rem;
    flex-direction: column;
    gap: 1rem;
  }

  nav {
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
  }

  .hero-overlay h1 {
    font-size: 2.5rem;
  }

  .section-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .section-content.reverse {
    direction: ltr;
  }

  .section-text h2 {
    font-size: 2rem;
  }

  .apartments-section h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  header {
    padding: 1rem;
  }

  .logo {
    font-size: 1.2rem;
  }

  nav {
    gap: 0.5rem;
  }

  nav a {
    font-size: 0.7rem;
  }

  .cta-button {
    padding: 0.5rem 1rem;
    font-size: 0.65rem;
  }

  .hero {
    margin-top: 150px;
    height: 60vh;
  }

  .hero-overlay {
    padding: 0 2rem;
    justify-content: center;
  }

  .hero-overlay h1 {
    font-size: 1.8rem;
    text-align: center;
  }

  section {
    padding: 3rem 0;
  }

  .section-text {
    padding: 1rem;
  }

  .section-text h2 {
    font-size: 1.5rem;
  }

  .apartments-section h2 {
    font-size: 1.5rem;
  }

  .footer-content {
    flex-direction: column;
    gap: 2rem;
  }

  .floating-buttons {
    bottom: 1rem;
    right: 1rem;
  }

  .whatsapp-button,
  .email-button {
    width: 50px;
    height: 50px;
  }

  .whatsapp-button svg,
  .email-button svg {
    width: 22px;
    height: 22px;
  }
}

.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
}

/* Card do formulário */
.modal-content {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.modal-content h2 {
  margin-bottom: 15px;
  font-size: 20px;
  color: #333;
}

.modal-content label {
  display: block;
  margin: 10px 0 5px;
  font-size: 14px;
}

.modal-content input,
.modal-content textarea {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.modal-content button {
  margin-top: 15px;
  width: 100%;
  padding: 10px;
  background: #cba876;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}

.close-btn {
  float: right;
  font-size: 22px;
  cursor: pointer;
  color: #333;
}

nav img.nav-logo {
  display: inline-block;
  max-height: 50px;
  width: auto;
}

/* --- esconder o segundo logo somente no mobile --- */
@media (max-width: 768px) {
  /* usa seletor específico e !important para garantir que não seja sobrescrito */
  nav img.nav-logo,
  .nav-logo {
    display: none !important;
    visibility: hidden !important;
  }
}



footer .footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

footer .footer-logo p {
  margin: 0;
  text-align: center;
  font-size: 14px; /* opcional */
  color: #fff;     /* opcional */
}

.lancamento-text {
  text-align: center;
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 30px;
  color: #cba876; /* destaque em vermelho */
  text-transform: uppercase;
  letter-spacing: 5px;
}
/* MOBILE */
@media (max-width: 768px) {
  .gallery-section {
    display: none;
  }

  .gallery-section-mobile {
    display: block;
    padding: 20px 10px;
    text-align: center;
  }

  .gallery-section-mobile h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

  .gallery-mobile-carousel {
    position: relative;
    overflow: hidden;
  }

  .gallery-mobile-slide {
    display: none;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  }

  .gallery-mobile-slide.active {
    display: block;
    animation: fade 1s;
  }

  .gallery-mobile-slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    cursor: pointer;
  }

  @keyframes fade {
    from {opacity: 0;}
    to {opacity: 1;}
  }
}

/* Modal de zoom */
.zoom-modal {
  display: none;
  position: fixed;
  z-index: 999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.9);
}

.zoom-modal-content {
  margin: auto;
  display: block;
  width: 90%;
  max-width: 600px;
}

.zoom-modal .close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}
/* Modal de zoom */
.zoom-modal {
  display: none;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
}

.zoom-modal-content {
  max-width: 90%;
  max-height: 90%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.zoom-modal .close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}
/* Desktop */
@media (min-width: 769px) {
  .gallery-section-mobile {
    display: none; /* esconde a galeria mobile */
  }

  .gallery-section {
    display: block; /* mostra a galeria desktop */
  }
}

/* Mobile */
@media (max-width: 768px) {
  .gallery-section {
    display: none; /* esconde a galeria desktop */
  }

  .gallery-section-mobile {
    display: block; /* mostra a galeria mobile */
    padding: 20px 10px;
    text-align: center;
  }

  .gallery-section-mobile h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

  .gallery-mobile-carousel {
    position: relative;
    overflow: hidden;
  }

  .gallery-mobile-slide {
    display: none;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  }

  .gallery-mobile-slide.active {
    display: block;
    animation: fade 1s;
  }

  .gallery-mobile-slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    cursor: pointer;
  }

  @keyframes fade {
    from {opacity: 0;}
    to {opacity: 1;}
  }
}

.logos-section {
  width: 100%;
  background-color: var(--bg-light); /* cor neutra para destacar os logos */
  padding: 10px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1); /* sombra leve para separar da seção abaixo */
}

.logos-container {
  display: flex;
  align-items: center;
  gap: 40px; /* espaço entre os logos */
  flex-wrap: wrap; /* garante que quebre linha no mobile */
}

.logos-container .logo {
  height: 50px; /* altura fixa, ajustável */
  width: auto;
  object-fit: contain;
}

/* Mobile */
@media (max-width: 768px) {
  .logos-container {
    gap: 20px; /* reduzir espaçamento no mobile */
  }

  .logos-container .logo {
    height: 40px; /* logos menores no mobile */
  }
}

/* Oculta por padrão (desktop) */
.logos-section-mobile {
  display: none;
}

/* Mobile */
@media (max-width: 768px) {
  .logos-section-mobile {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: var(--primary-color); /* cor neutra */
    padding: 10px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }

  .logos-section-mobile .logos-container {
    display: flex;
    align-items: center;
    gap: 20px; /* espaço entre logos no mobile */
    flex-wrap: wrap; /* quebra linha se necessário */
  }

  .logos-section-mobile .logo {
    height: 40px;
    width: auto;
    object-fit: contain;
  }
}

.zoom-modal {
  display: none;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.zoom-modal-content {
  max-width: 90%;
  max-height: 90%;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Botão de fechar X */
.zoom-modal .close {
  position: absolute;
  top: 15px;
  right: 20px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.2s ease;
}

.zoom-modal .close:hover {
  color: #ff5555; /* efeito ao passar o mouse */
}
.zoom-modal {
  display: none;
  position: fixed;
  z-index: 9999; /* garantir que fique acima de tudo */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.zoom-modal-content {
  max-width: 90%;
  max-height: 90%;
  width: auto;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 1; /* garantir que fique abaixo do X */
}

/* Botão de fechar X */
.zoom-modal .close {
  position: fixed; /* fixo na tela */
  top: 20px;
  right: 20px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10000; /* sempre acima da imagem */
  user-select: none; /* não selecionável */
  transition: color 0.2s ease;
}

.zoom-modal .close:hover {
  color: #ff5555;
}
html, body {
  width: 100%;
  overflow-x: hidden; /* evita scroll horizontal */
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* Modal do Formulário */
.modal {
  display: none;
  position: fixed;
  top:0; left:0;
  width:100%; height:100%;
  background-color: rgba(0,0,0,0.7);
  justify-content: center;
  align-items: center;
  padding: 20px;
  z-index: 1000;
}

.modal-content {
  background-color: #fff;
  padding: 20px 30px;
  border-radius: 10px;
  max-width: 500px;
  width: 100%;
  position: relative;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 25px;
  cursor: pointer;
  font-weight: bold;
  color: #333;
}

/* Texto de Política dentro do Formulário */
.privacy-text {
  font-size: 0.85rem;
  color: #555;
  margin-top: 10px;
}

.privacy-link {
  color: #007BFF;
  cursor: pointer;
  text-decoration: underline;
}

/* Card Modal da Política de Privacidade */
.privacy-card {
  display: none;
  position: fixed;
  top:0; left:0;
  width:100%; height:100%;
  background-color: rgba(0,0,0,0.7);
  justify-content: center;
  align-items: center;
  padding: 20px;
  z-index: 2000;
}

.privacy-card-content {
  background-color: #fff;
  padding: 20px 30px;
  border-radius: 10px;
  max-width: 600px;
  max-height: 90%;
  overflow-y: auto;
  position: relative;
}

.close-card {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 25px;
  cursor: pointer;
  font-weight: bold;
  color: #333;
}
/* Modal do Formulário */
.modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.7);
  justify-content: center;
  align-items: center;
  padding: 60px 20px 20px 20px; /* espaço para o header */
  z-index: 9999; /* muito acima do header */
  overflow-y: auto;
}

.modal-content {
  background-color: #fff;
  padding: 20px 30px;
  border-radius: 10px;
  max-width: 500px;
  width: 100%;
  position: relative;
}

/* Modal do Zoom */
#zoomModal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
  padding: 60px 20px 20px 20px; /* espaço para o header */
  z-index: 9999;
  overflow-y: auto;
}

/* Modal da Política de Privacidade */
.privacy-card {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.7);
  justify-content: center;
  align-items: center;
  padding: 60px 20px 20px 20px; /* espaço para o header */
  z-index: 9999;
  overflow-y: auto;
}
