/* ===== Reset básico e base ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html{
  -webkit-text-size-adjust: none;
}
body {
  font-family:Poppins, 'Poppins Fallback';
  color: #111;
  background-color: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: none;
}

/* ===== HEADER / MENU ===== */
header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100px;
background: linear-gradient(to bottom, rgba(0, 0, 0, 0.849), rgba(0, 0, 0, 0));
  border-bottom: none;
  z-index: 100;
  box-shadow: none;
 
  display: flex;
  align-items: center;
  padding: 0 1rem;
}



/* Navbar */
.navbar {
  width: 100%;
  padding: 0;
  transition: background-color 0.3s ease;
  z-index: 1000;
}

/* Fundo branco quando menu mobile estiver aberto */
.navbar.show-bg,
.navbar-collapse.show {
  background-color: #fff !important;
}

/* Marca / logo */
.navbar-brand {
  font-weight: 700;
  font-size: 1.8rem;
  color: #d1a85c; 
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.navbar-brand:hover {
  color: #d1a85c;
}

/* Logo */
.logo {
  width: 60px;
  margin-bottom: 0;
  margin-top: 10px;
}
.logo-img {
  margin-bottom: 10px;
  width: 70px;
  padding: 0;
}

/* Links */
.navbar-nav {
  align-items: center;
}

.nav-link {
  font-weight: 300;
  font-size: 1rem;
  color: #ffffff;
  margin-left: 1.5rem;
  transition: color 0.3s ease;
}

/* Cor dos links ao passar o mouse */
.nav-link:hover {
  color: #f1a90d;
}

/* Cor dos links quando o menu mobile está aberto */
.navbar-collapse.show .nav-link {
  color: #333 !important;
}

/* Botão Reservar */
.btn-reservar {
  background-color: #f1a90d;
  color: #fff;
  font-weight: 600;
  border-radius: 0px;
  padding: 0.5rem 1.5rem;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.btn-reservar:hover {
  background-color: #d1a85c;
  box-shadow: 0 0 10px #d1a85c;
}

/* Botão hamburguer */
.navbar-toggler {
  border: none;
  outline: none;
}

/* Ícone padrão (hambúrguer branco) */
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255,255,255,0.9)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
  transition: background-image 0.3s ease;
}

/* Ícone muda para "X" quando o menu está aberto */
.navbar-toggler:not(.collapsed) .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255,255,255,0.9)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M6 6L24 24M6 24L24 6'/%3E%3C/svg%3E");
}

/* Remove borda/efeito azul ao clicar */
.navbar-toggler:focus {
  box-shadow: none;
}

/* Torna o fundo branco fixo no mobile */
@media (max-width: 991px) {
  .navbar-collapse {
    padding: 1rem;
    
  }
  .navbar-collapse.show {
    background-color: #fff !important;
  }
  .nav-link {
  font-size: 1.5rem;
  align-items: center;

}

}


/* ===== SEÇÕES ===== */
section {
  padding: 1rem 0;
}

section.bg-light {
  background-color: #f8f9fa;
}
.botao-conheca2 {
    color: #000000;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border-bottom: 1px solid #fff;
    padding-bottom: 2px;
}


.sobre {
  background-color: #ffffff;
  padding: 60px 0;
}

.titulo-sobre {
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 1px;
  margin-bottom: 1.2rem;
  color: #2b2a2a;
}

.texto-sobre {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #000000;
}
/* Imagem com efeito de zoom */
.img-sobre22 img {
  max-width: 400px;
  
}

/* Imagem com efeito de zoom */
.img-sobre {
  overflow: hidden;
  
}

.img-sobre img {
   transform: scale(0.9);
  filter: brightness(0.8);
  opacity: 0;
  transition: transform 9.5s ease, filter 1.2s ease, opacity 1s ease 0.3s;
}


/* Quando a imagem entra na tela */
.animar-zoom.ativo {
  transform: scale(1.35);
  filter: brightness(1);
  opacity: 1;
}

/* Imagem com efeito de zoom */
.img-sobre2 {
  overflow: hidden;
  
}

.img-sobre2 img {
   transform: scale(0.9);
  filter: brightness(0.8);
  opacity: 0;
  transition: transform 9.5s ease, filter 1.2s ease, opacity 1s ease 0.3s;
}

/* Quando a imagem entra na tela */
.animar-zoom.ativo2 {
  transform: scale(1.35);
  filter: brightness(1);
  opacity: 1;
}

/* Responsividade */
@media (max-width: 991px) {
  .titulo-sobre {
    text-align: center;
  }
  .img-sobre {
  border-radius: 8px;
  
}


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

  .img-sobre {
    margin-top: 20px;
  }
}




/* Responsivo */
@media (max-width: 768px) {
  /* Imagem com efeito de zoom */
.img-sobre22 img {
  max-width: 350px;
  
}

}

/* ===== TÍTULOS ===== */
h2 {
  font-weight: 700;
  font-size: 2.75rem;
  margin-bottom: 1.5rem;
  color: #111;
  letter-spacing: 0.03em;
}

.lead {
  font-weight: 300;
  font-size: 1.15rem;
  color: #444;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}







/* ===== RESPONSIVIDADE ===== */
@media (max-width: 992px) {
  .navbar-nav {
    text-align: center;
    padding-top: 40px;
  }

  .nav-link {
    margin-left: 0;
    padding: 0.75rem 0;
  }

  .btn-reservar {
    width: 100%;
    margin-top: 1rem;
  }


  h2 {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  header {
    height: 70px;
    padding: 0 0.5rem;
  }

  .navbar-brand {
    font-size: 1.4rem;
  }

  .btn-reservar {
    padding: 0.4rem 1rem;
    font-size: 0.9rem;
  }
}
/* Ajuste do botão "Reservar" no modo mobile */
@media (max-width: 991px) {
  .navbar-collapse {
    text-align: center;
  }

  .navbar-collapse .btn-reservar {
    display: inline-block;
    margin: 1rem auto 0 auto !important; /* centraliza o botão */
    float: none;
  }

  /* Remove margem lateral do desktop */
  .navbar-collapse .btn-reservar.ms-3 {
    margin-left: 0 !important;
  }
}


/* ===== MICROINTERAÇÕES ===== */

.btn-reservar:hover {
  box-shadow: 0 0 15px #d1a85c;
  transform: translateY(-2px);
  transition: all 0.3s ease;
}
/* Caixa de busca suspensa no banner */
.search-box {
  position: absolute;
  bottom: 150px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1100px;
  height: 150px;
  background: rgba(0, 0, 0, 0.575); /* Preto com 50% de transparência */
  border-radius: 0px;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  z-index: 10;
}

/* Formulário */
.search-form {
  width: 100%;
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Cada campo de busca */
.search-field {
  flex: 1 1 140px;
  display: flex;
  align-items: center;
  position: relative;
  padding: 0 5px;
  color: #d1a85c;
  border-right: 1px solid rgba(255,255,255,0.6);
  min-width: 120px;
}

/* Remove a borda do último campo antes do botão */
.search-field:last-of-type {
  border-right: none;
}

/* Ícones usando Material Icons */
.icon {
  font-family: 'Material Icons';
  font-size: 22px;
  margin-right: 8px;
  color: #fff;
  user-select: none;
}

/* Inputs e selects */
.search-field input[type="text"],
.search-field select {
  background: transparent;
  border: none;
  outline: none;
  color: #ffc107;
  font-size: 1rem;
  width: 100%;
  cursor: pointer;
  -webkit-appearance: none; /* Remove padrão select */
  -moz-appearance: none;
  appearance: none;
}

/* Placeholder branco */
.search-field input::placeholder {
  color: #ffc107;
}

/* Botão pesquisar */
.btn-search {
  background: #be860b; 
  color: #f0f0f0;
  border: none;
  border-radius: 0px;
  padding: 14px 28px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  flex-shrink: 0;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 10px #ffc107;
}

.btn-search:hover,
.btn-search:focus {
  background-color: #ffc107;
  box-shadow: 0 6px 14px #373a38cc;
  outline: none;
}

/* Acessibilidade: esconde labels visuais, mas mantém para leitores */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
/* === MOBILE e TABLET === */
@media (max-width: 991px) {
  .search-box {
    position: absolute !important;
    bottom: 30px !important; /* Mantém sobre o banner */
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 92% !important;
    max-width: 600px !important;
    height: auto !important;
    background: rgba(0, 0, 0, 0.75) !important;
    border-radius: 10px !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: center !important;
    padding: 15px 20px !important;
    z-index: 20 !important;
  }

  .search-form {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    width: 100% !important;
  }

  .search-field {
    width: 100% !important;
    flex: none !important;
    border: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
    padding: 6px 0 !important;
  }

  .search-field input,
  .search-field select {
    background: transparent !important;
    border: none !important;
    color: #ffc107 !important;
    font-size: 1rem !important;
    width: 100% !important;
  }

  .btn-search {
    width: 100% !important;
    padding: 12px !important;
    border-radius: 6px !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4) !important;
  }
}
/* Responsividade */
@media (max-width: 900px) {
 
  .search-box {
    height: auto;
    padding: 5px 0px;
    
  }
  .search-form {
    flex-direction: column;
    gap: 12px;
   
    
  }
  .search-field {
    flex: 1 1 100%;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.5);
    padding: 10px 0;
  }
  .search-field:last-of-type {
    border-bottom: none;
  }
  .btn-search {
    width: 100%;
  }
  
}

/* ===== ESTILO ESPECÍFICO PARA INPUT DE DATA COM ÍCONE DE CALENDÁRIO ===== */
.search-field input[type="date"] {
  position: relative;
  padding-left: 36px; /* Espaço para o ícone */
  color: #ffc107;
  cursor: pointer;
}


/* Remove o ícone padrão do input date para Firefox */
.search-field input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0;
  cursor: pointer;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  filter: invert(80%) sepia(100%) saturate(500%) hue-rotate(10deg) brightness(1.2);
  width: 22px;
 
  height: 22px;
  z-index: 2;
}

/* Para navegadores que não suportam totalmente, esconder padrão */
.search-field input[type="date"]::-moz-calendar-picker-indicator {
  display: none;
}

/* Ícone SVG customizado posicionado com pseudo-elemento */
.search-field input[type="date"]::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  width: 22px;
  height: 22px;
  background: url('data:image/svg+xml;utf8,<svg fill="%2301B61A" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 11h5v5H7z"/><path d="M17 4h-1V2h-2v2H10V2H8v2H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 16H7V9h10v11z"/></svg>') no-repeat center center;
  background-size: contain;
   filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(200%);

  pointer-events: none;
  transform: translateY(-50%);
  z-index: 1;
}

/* Ajuste para o texto no input data para ficar legível */
.search-field input[type="date"]::-webkit-input-placeholder {
  color: #ffc107;
}




.icone-btn {
  background: none;
  border: none;
  font-size: 1.1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #999;
  position: relative;
  cursor: pointer;
  padding: 10px 0;
  transition: all 0.3s ease;
}

.icone-btn.ativo {
  color: #000;
  font-weight: bold;
}

.icone-btn.ativo::after {
  content: '';
  width: 100%;
  height: 2px;
  background-color: #000;
  position: absolute;
  bottom: 0;
  left: 0;
}



.btn-reservar {
  display: inline-block;
  background-color: #be860b;
  color: #fff;
  box-shadow: rgb(255, 238, 0);
  padding: 12px 24px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
  transition: background 0.3s;
}

.btn-reservar:hover {
  background-color: #ffc107;
  box-shadow: black;
}




.diferencial {
  display: none;
  animation: fade 0.6s ease-in-out;
}
.diferencial.ativo {
  display: block;
}

.diferencial h2 {
  font-size: 1.1rem;
  letter-spacing: 4px;
  margin-bottom: 5px;
  margin-top: 160px;
  font-weight: 600;
  color: white;
  text-transform: uppercase;
}
.diferencial p {
  font-size: 1rem;
  line-height: 1.7;
  margin: 0 auto;
  max-width: 600px;
}

.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  color: white;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  z-index: 3;
  padding: 10px;
  transition: transform 0.2s;
}
.nav:hover {
  transform: translateY(-50%) scale(1.2);
}
.nav.prev { left: 20px; }
.nav.next { right: 20px; }

.indicadores {
  margin-top: 30px;
}
.dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
  margin: 0 5px;
  opacity: 0.4;
  transition: opacity 0.3s;
}
.dot.ativo {
  opacity: 1;
}

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

/* Responsividade */
@media (max-width: 768px) {
  .diferencial h2 {
    font-size: 1rem;
    margin-bottom: 20px;
    
  }

  .diferencial p {
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
  }

  .nav {
    font-size: 1.5rem;
    padding: 5px;
    display: none;
  
  }

  .nav.prev { left: 10px; }
  .nav.next { right: 10px; }
}

@media (max-width: 480px) {
  
  .nav {
    font-size: 1.3rem;
  }

  .dot {
    width: 6px;
    height: 6px;
  }
}




.diferenciais2 {
  
  background: url('../img/leaves-7396788_1920.webp') no-repeat center center/cover;
  color: white;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  height: 500px;
  align-items: center; /* Centraliza verticalmente */
  justify-content: center; /* Centraliza horizontalmente */
  text-align: center; /* Centraliza o conteúdo textual */
  display: flex;
  padding: 100px 20px;
  font-family: Poppins, 'Poppins Fallback';
  
  
}

.diferenciais2 h1 p{
    position: relative;
    animation-delay: 5s;
    
}
.diferencial.ativo h1,
.diferencial.ativo span,
.diferencial.ativo p,
.diferencial.ativo a {
  position: relative;
  z-index: 2; /* garante que o texto fique acima do overlay */
  color: #fff; /* texto bem visível */
}
.diferenciais2::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

@keyframes zoom{
  0% {
    transform: scale(1.5);
  }
  100% {
    transform: scale(1);
  }
}
.sessao-hoteis {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
}

.titulo-sessao {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 40px;
  text-transform: uppercase;
}

.carrossel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 100%;
  overflow: hidden;
}

.carrossel-hoteis {
  display: flex;
  gap: 16px;
  overflow-x: hidden;
  scroll-behavior: smooth;
  padding: 0 10px;
  
}

.card-hotel {
  flex: 0 0 400px;
  height: 420px;
  background-size: cover;
  background-position: center;
  
  display: flex;
  align-items: flex-end;
  position: relative;
}

.card-hotel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent 40%);
  z-index: 1;
}

.conteudo-card {
  position: relative;
  z-index: 2;
  padding: 20px;
  color: #fff;
  text-align: left;
  
}

.conteudo-card h3 {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.conteudo-card p {
  font-size: 13px;
  margin-bottom: 14px;
  text-transform: uppercase;
  font-style: italic;
}

.botao-conheca {
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  border-bottom: 1px solid #fff;
  padding-bottom: 2px;
}

.botao-conheca:hover {
  opacity: 0.8;
}

.btn-nav {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #333;
  padding: 10px;
  z-index: 10;
  transition: color 0.3s;
}

.btn-nav:hover {
  color: #000;
}

.btn-nav.esquerda {
  margin-right: 10px;
}

.btn-nav.direita {
  margin-left: 10px;
}

/* Responsivo */
@media (max-width: 768px) {
  .card-hotel {
    flex: 0 0 350px;
    height: 380px;
    
  }
  .carrossel-hoteis{
    overflow-x: auto;
  }

  .conteudo-card h3 {
    font-size: 14px;
  }

  .conteudo-card p,
  .botao-conheca {
    font-size: 12px;
  }

  .btn-nav {
    display: none;
  }
}

/* botao difernecais2*/
.btn-one {
  color: #FFF;
  transition: all 0.3s;
  position: relative;
}
.btn-one span {
  transition: all 0.3s;
}
.btn-one::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  transition: all 0.3s;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-top-style: solid;
  border-bottom-style: solid;
  border-top-color: rgba(255, 203, 32, 0.5);
  border-bottom-color: rgba(231, 177, 1, 0.836);
  transform: scale(0.1, 1);
}
.btn-one:hover span {
  letter-spacing: 2px;
}
.btn-one:hover::before {
  opacity: 1; 
  transform: scale(1, 1); 
}
.btn-one::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 0.3s;
  background-color: rgba(7, 80, 4, 0.1);
}
.btn-one:hover::after {
  opacity: 0; 
  transform: scale(0.1, 1);
}
@keyframes subir {
  0% {
    top: 10px; /* Começa um pouco abaixo */
  }
  100% {
    top: -50px; /* Termina um pouco acima */
  }
}

/* === Estilo da caixa de sugestões === */
#sugestoes-hotel {
  background: rgba(20, 20, 20, 0.9);
 
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  overflow: hidden;
  z-index: 1000;
  animation: fadeIn 0.2s ease-in-out;
}

/* Itens da lista */
#sugestoes-hotel .list-group-item {
  background: transparent;
  color: #f5f5f5;
  border: none;
  padding: 10px 15px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

/* Efeito hover */
#sugestoes-hotel .list-group-item:hover {
  background: linear-gradient(90deg, #c5a54e 0%, #e6ff06 100%);
  color: #000;
  transform: translateX(2px);
}

/* Rolagem elegante */
#sugestoes-hotel::-webkit-scrollbar {
  width: 8px;
}
#sugestoes-hotel::-webkit-scrollbar-thumb {
  background: #c5a54e;
  border-radius: 8px;
}
#sugestoes-hotel::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
}

/* Animação de entrada suave */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.calendar-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #ffffff;
  pointer-events: none;
}

/* ======== OVERRIDES FLATPICKR - Tema escuro dourado (substitui o azul padrão) ======== */
/* Certifique-se de incluir este bloco DEPOIS do CSS do flatpickr para que as regras tenham precedência. */

.flatpickr-calendar {
  background: rgba(20, 20, 20, 0.9) !important;
  border: 1px solid #c5a54e !important;
 
  box-shadow: 0 6px 20px rgba(0,0,0,0.6) !important;
  color: #f5f5f5 !important;
}

/* Cabeçalho (mês / ano) */
.flatpickr-months {
  background: rgba(20, 20, 20, 0.9) !important;
  border-bottom: 1px solid rgba(197,165,78,0.12) !important;
  padding: 8px 10px !important;
  color: #e6ff06 !important;
}

.flatpickr-current-month {
  color: #e6ff06 !important;
  font-weight: 600 !important;
  font-size: 1rem !important;
}

/* Botões prev/next */
.flatpickr-prev-month, .flatpickr-next-month {
  color: #e6ff06 !important;
  background: transparent !important;
  
  padding: 4px !important;
}
.flatpickr-prev-month svg, .flatpickr-next-month svg {
  fill: #e6ff06 !important;
}

/* Weekday header (Sun, Mon, ...) */
.flatpickr-weekdays {
  background: rgba(20, 20, 20, 0.9) !important;
  border-bottom: 1px solid rgba(197,165,78,0.06) !important;
}
.flatpickr-weekday {
  color: #c5a54e !important;
  font-weight: 600 !important;
  font-size: 0.8rem !important;
}

/* Dias (celulas) */
.flatpickr-day {
  color: #dddddd !important;
  background: transparent !important;
  border: none !important;
  
  transition: all 0.18s ease !important;
}

/* Hover nos dias */
.flatpickr-day:hover {
  background: linear-gradient(90deg, #c5a54e 0%, #e6ff06 100%) !important;
  color: #000 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(197,165,78,0.12) !important;
}

/* Dia de hoje */
.flatpickr-day.today {
  background: rgba(197,165,78,0.12) !important;
  border: 1px solid rgba(197,165,78,0.28) !important;
  color: #fff !important;
}

/* Dia selecionado */
.flatpickr-day.selected, .flatpickr-day.startRange, .flatpickr-day.endRange {
  background: linear-gradient(90deg, #c5a54e 0%, #e6ff06 100%) !important;
  color: #000 !important;
  box-shadow: none !important;
  font-weight: 700 !important;
}

/* Dias indisponíveis / fora do mês */
.flatpickr-day.flatpickr-disabled, .flatpickr-day.prevMonthDay, .flatpickr-day.nextMonthDay {
  color: rgba(255,255,255,0.18) !important;
  cursor: default !important;
}

/* Container interno e padding */
.flatpickr-innerContainer {
  padding: 6px 10px 12px 10px !important;
}

/* Navegação do select de mês/ano (se usado) */
.flatpickr-monthDropdown-months, .flatpickr-current-month .numInputWrapper input {
  color: #ffda06 !important;
  background: transparent !important;
  border: 1px solid rgba(197,165,78,0.08) !important;
}

/* Footer / hoje / limpar (se aparecerem) */
.flatpickr-rContainer .flatpickr-time {
  border-top: 1px solid rgba(197,165,78,0.06) !important;
}

/* Corrige o fundo azul do tema padrão (força remoção) */
.flatpickr-theme-air .flatpickr-calendar,
.flatpickr-theme-light .flatpickr-calendar,
.flatpickr-calendar:where(.open) {
  background: rgba(20, 20, 20, 0.952) !important;
}

/* Pequenos ajustes responsivos */
@media (max-width: 480px) {
  .flatpickr-calendar {
    font-size: 14px !important;
     position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 90% !important;
    max-width: none !important;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
  }
  .flatpickr-current-month { font-size: 0.95rem !important; }
  
}



/* scrollbar do calendário (WebKit) */
.flatpickr-innerContainer::-webkit-scrollbar {
  width: 6px;
}
.flatpickr-innerContainer::-webkit-scrollbar-thumb {
  background: #c5a54e !important;
 
}
/* footer */
.footer {
  background-color: #111;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.footer-title {
  color: #ffc107;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
}

.social-icons a {
  color: #ccc;
  margin-right: 10px;
  font-size: 1.2rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
  color: #b88d0c;
  transform: scale(1.1);
}

.footer-form .form-control {
  background-color: #1a1a1a;
  border: 1px solid #333;
  color: #fff;
  font-size: 0.9rem;
}

.footer-form .form-control::placeholder {
  color: #888;
}

.footer-form .form-control:focus {
  border-color: #ffc107;
  box-shadow: none;
}

.btn-enviar {
  background-color: #ffc107;
  color: #fff;
  font-weight: 600;
  border-radius: 0;
  transition: all 0.3s ease;
}

.btn-enviar:hover {
  background-color: #ffc107;
}

@media (max-width: 768px) {
  .footer {
    text-align: center;
  }

  .footer .social-icons a {
    margin: 0 5px;
  }

  .footer-title {
    margin-top: 1rem;
  }
}



/* Ícone de seta personalizado */
.form-select::after {
  content: "▼";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #c5a54e;
  font-size: 0.8rem;
}




/* Opções dentro do select */
.form-select option {
  background-color: #141414e6;
  color: #f5f5f5;
  padding: 10px;
  
}

.video-banner {
  position: relative;
  width: 100%;
  height: 100vh; /* ocupa toda a altura da tela */
  overflow: hidden;
}

.video-banner video {
   width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top; /* ou center bottom */
}

.video-banner .overlay {
  position: relative;
   inset: 0;
  z-index: 1;
  color: white;
}

#videoPlayer {
  transition: opacity 3s ease-in-out;
  opacity: 1;
}




/* === Ícones alinhados (material-icons) === */
.search-field .icon {
  color: #c5a54e;
  font-size: 1.2rem;
  left: 12px;
}

/* === Responsividade === */
@media (max-width: 768px) {
  .form-select {
    font-size: 0.9rem;
    padding-left: 40px;
  }

  .search-field .icon {
    font-size: 1rem;
    left: 10px;
  }
}

.beneficios {
  background: #fff;
  overflow: hidden;
}

.beneficios-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.beneficios-scroll {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 1rem 0;
}

.beneficios-scroll::-webkit-scrollbar {
  display: none;
}

/* Botões de navegação */
.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  pointer-events: auto;
  transition: background-color 0.3s ease;
}
/* evita que um overlay capture os cliques */
.beneficios-wrapper, .beneficios-scroll {
  position: relative;
}
.scroll-btn:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.scroll-btn.left {
  left: 0;
}

.scroll-btn.right {
  right: 0;
}

/* Cards */
.beneficio-card {
  position: relative;
  min-width: 280px;
  height: 340px;
  
  overflow: hidden;
  flex-shrink: 0;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.beneficio-card:hover {
  transform: translateY(-5px);
}

.beneficio-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(2px) brightness(0.9);
  transition: filter 0.4s ease;
  z-index: 0;
}

.beneficio-card:hover .beneficio-bg {
  filter: blur(4px) brightness(0.6);
}

.beneficio-overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
  color: #fff;
}

.beneficio-top {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 0.4rem 0.8rem;
  
  font-size: 0.85rem;
  display: inline-block;
}

.beneficio-top i {
  color: #f1a90d;
  margin-right: 5px;
}

.beneficio-content h5 {
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.saiba-mais {
  color: #fff;
  font-size: 0.8rem;
  text-decoration: none;
  border-bottom: 1px solid #fff;
  text-transform: uppercase;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.saiba-mais:hover {
  color: #f1a90d;
  border-color: #f1a90d;
}

/* Responsivo */
@media (max-width: 768px) {
  .beneficio-card {
    min-width: 240px;
    height: 300px;
  }
}

@media (max-width: 480px) {
  .beneficio-card {
    min-width: 200px;
    height: 260px;
  }

  .beneficio-top {
    font-size: 0.75rem;
  }

  .beneficio-content h5 {
    font-size: 0.9rem;
  }

  .saiba-mais {
    font-size: 0.7rem;
  }
  .scroll-btn {
    display: none; /* 👈 oculta as setas no celular */
  }
  
}
/* Força o calendário a aparecer sobre o banner */
.flatpickr-calendar {
  z-index: 9999 !important;
}

/* ==== Sessão Hotéis (HD) ==== */
.section-hoteis-hd {
  background-color: #f9f9f9;
  padding: 80px 20px;
  font-family: "Montserrat", sans-serif;
  color: #222;
}

.container-hd {
  max-width: 1200px;
  margin: 0 auto;
}

.titulo-secao-hd {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.subtitulo-secao-hd {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #aaa016;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

.lista-hoteis-hd {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px 40px;
}

.lista-hoteis-hd ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lista-hoteis-hd li {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  color: #222;
  transition: color 0.2s ease;
  cursor: default;
}

.lista-hoteis-hd li:hover {
  color: #ff6600;
}

/* Responsividade */
@media (max-width: 992px) {
  .lista-hoteis-hd {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .lista-hoteis-hd {
    grid-template-columns: 1fr;
  }
  .titulo-secao-hd {
    font-size: 1.5rem;
  }
  .subtitulo-secao-hd {
    font-size: 0.9rem;
  }
}
.diferenciais-hd {
  position: relative;
  height: 600px;
  background: url('../img/img-diferenciais.webp') center/cover no-repeat;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.diferenciais-overlay-hd {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.diferenciais-content-hd {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  padding: 0 20px;
}

.diferenciais-carousel-hd {
  display: flex;
  transition: transform 0.6s ease-in-out;
  will-change: transform;
}

.slide-hd {
  flex: 0 0 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.slide-hd.active-hd {
  opacity: 1;
}

.slide-hd h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
  color: white;
}

.slide-hd p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 80%;
}

.arrow-hd {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
}

.arrow-hd.left-hd { left: 40px; }
.arrow-hd.right-hd { right: 40px; }

.dots-hd {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.dot-hd {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}

.dot-hd.active {
  background: #fff;
}

/* ==== MOBILE: scroll horizontal ==== */
@media (max-width: 768px) {
  .arrow-hd {
    display: none !important;
  }

  .diferenciais-carousel-hd {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .slide-hd {
    flex: 0 0 100%;
    opacity: 1 !important; /* Mostra todos */
    scroll-snap-align: center;
  }

  .slide-hd p {
    font-size: 1rem;
    max-width: 90%;
    padding: 0 10px;
    white-space: normal;
  }

  html, body {
    overflow-y: auto;
  }
}
.fale-conosco {
  background: #f7f5f4;
  padding: 80px 0;
  font-family: "Montserrat", sans-serif;
  color: #222;
}

.fale-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* FORMULÁRIO */
.fale-form {
  flex: 1;
}

.fale-form h2 {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 25px;
}

.fale-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.fale-form label {
  font-weight: 500;
  font-size: 14px;
}

.fale-form input,
.fale-form select,
.fale-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 3px;
  background: #fff;
  font-size: 14px;
  transition: all 0.3s ease;
}

.fale-form input:focus,
.fale-form select:focus,
.fale-form textarea:focus {
  border-color: #000;
  outline: none;
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-row > div {
  flex: 1;
}

.fale-form button {
  background: #000;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 3px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
  margin-top: 10px;
}

.fale-form button:hover {
  background: #333;
}

/* COLUNA DIREITA */
.fale-info {
  flex: 0.7;
  font-size: 14px;
}

.fale-info h3 {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.fale-info p {
  margin: 6px 0;
  line-height: 1.6;
}

.fale-info p span {
  font-size: 13px;
  color: #555;
}

.fale-info a {
  color: #000;
  text-decoration: underline;
}

.fale-info select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 3px;
  margin-top: 5px;
}

.fale-info hr {
  margin: 25px 0;
  border: none;
  border-top: 1px solid #ddd;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .fale-container {
    flex-direction: column;
    gap: 50px;
  }
}
.efeito-digitar {
  overflow: hidden;
  white-space: nowrap;
  border-right: 3px solid rgba(255,255,255,0.8);
  width: 0;
  animation: digitar 2.5s steps(30, end) forwards, piscar 0.7s step-end infinite;
}

@keyframes digitar {
  from { width: 0 }
  to { width: 100% }
}

@keyframes piscar {
  50% { border-color: transparent; }
}
.titulo-animado {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1.2s ease-out forwards;
  letter-spacing: 1px;
  font-weight: 700;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.sessao-tripla {
  display: flex;
  width: 100%;
 height: 450px;
  overflow: hidden;
}

.imagem-esquerda2 {
  flex: 1; /* 10% */
 
  background: url('../img/teste1.webp') center/cover no-repeat;
}
.imagem-esquerda {
  flex: 1; /* 10% */
  background: url('../img/IMG_0828.webp') center/cover no-repeat;
}
.imagem-esquerda3 {
  flex: 5.5; /* 55% */
  background: url('../img/esquerda3.webp') center/cover no-repeat;
}

.texto-centro {
  flex: 3.5; /* 35% */
  background: #fff;
  color: #111;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem;
  text-align: left;
}

.texto-centro h2 {
  font-size: 1.8rem;
  letter-spacing: 3px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.texto-centro p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.imagem-direita2 {
  flex: 5.5; /* 55% */
  
  background: url('../img/teste5.webp') center/cover no-repeat;
}

.imagem-direita {
  flex: 5.5; /* 55% */
  background: url('../img/IMG_0836.webp') center/cover no-repeat;
}
.imagem-direita3 {
  flex: 1; /* 10% */
  
  background: url('../img/direita3.webp') center/cover no-repeat;
}

/* ========= RESPONSIVIDADE ========= */
@media (max-width: 1024px) {
  .sessao-tripla {
    flex-direction: column;
    height: auto;
  }

  .imagem-esquerda2,
  .imagem-direita2 {
    height: 250px;
   
    flex: none;
  }

.imagem-esquerda3,
  .imagem-direita3 {
    height: 250px;
    flex: none;
  }

  .imagem-esquerda,
  .imagem-direita {
    height: 250px;
    flex: none;
  }

  .texto-centro {
    padding: 2rem;
    text-align: center;
  }
}
/* === Layout geral === */
.black-friday-banner {
  position: relative;
  width: 100%;
  height: 600px;

  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-family: "Poppins", Arial, sans-serif;
}

/* === Layout geral === */
.banner-promo {
  position: relative;
  width: 100%;
  height: 500px;

  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-family: "Poppins", Arial, sans-serif;
}

.promo-bg {
  position: relative;
  width: 100%;
  height: 100%;
  background: url('../img/promo1.webp') center/cover no-repeat;
}
.banner-bg {
  position: relative;
  width: 100%;
  height: 100%;
  background: url('../img/blackf.webp') center/cover no-repeat;
}

/* Escurece o fundo */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

/* === Conteúdo principal === */
.banner-content {
  position: relative;
  text-align: center;
  padding: 4rem 1.5rem;
  
  z-index: 1;
}

/* Logo */
.logo {
  width: 180px;
  margin-bottom: 1rem;
}

/* Títulos */
.main-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.subtitle {
  font-size: 1rem;
  font-weight: 400;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}

/* Texto principal */
.text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.text strong {
  color: #fff;
}

/* Linha divisória */
.divider {
  width: 120px;
  height: 2px;
  background: #fff;
  margin: 2rem auto;
}

/* Texto adicional */
.extra {
  font-size: 1rem;
  line-height: 1.6;
}

.extra strong {
  color: #fff;
}

.extra small {
  font-size: 0.85rem;
  color: #ccc;
}


/* === Responsividade === */
@media (max-width: 768px) {
  .main-title {
    font-size: 3rem;
  }

  .subtitle {
    font-size: 1.4rem;
  }

  .text {
    font-size: 1rem;
  }

 

  .logo {
    width: 140px;
  }
}

@media (max-width: 480px) {
  .main-title {
    font-size: 2.4rem;
  }

  .subtitle {
    font-size: 1.2rem;
  }

 

  .banner-content {
    padding: 2.5rem 1rem;
  }
}
/* === Botão flutuante do WhatsApp === */
.whatsapp-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-family: "Poppins", sans-serif;
}

.whatsapp-btn {
  background-color: #25d366;
  border: none;
  border-radius: 50%;
  width: 64px;
  height: 64px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 14px rgba(0,0,0,0.4);
}

.whatsapp-btn img {
  width: 34px;
  height: 34px;
  filter: brightness(0) invert(1);
}

/* === Menu flutuante === */
.whatsapp-menu {
  display: none;
  background: #fff;
  color: #333;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  margin-bottom: 10px;
  width: 250px;
  overflow: hidden;
  animation: fadeIn 0.3s ease;
}

.whatsapp-menu.active {
  display: block;
}

.whatsapp-menu h4 {
  background: #25d366;
  color: #fff;
  margin: 0;
  padding: 12px 16px;
  font-size: 1rem;
}

.whatsapp-menu ul {
  list-style: none;
  margin: 0;
  padding: 8px 0;
}

.whatsapp-menu li a {
  display: block;
  padding: 10px 16px;
  color: #333;
  text-decoration: none;
  font-size: 0.95rem;
  transition: background 0.2s;
}

.whatsapp-menu li a:hover {
  background: #f1f1f1;
}

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

/* Responsivo */
@media (max-width: 600px) {
  .whatsapp-widget {
    bottom: 18px;
    right: 18px;
  }
  .whatsapp-btn {
    width: 56px;
    height: 56px;
  }
}
.servicos-container-moc {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 40px 0;
  overflow: hidden;
}

.servicos-scroll-moc {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 20px;
  padding: 10px 40px;
  scrollbar-width: none; /* Firefox */
}

.servicos-scroll-moc::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.servico-moc {
  flex: 0 0 auto;
  width: 120px;
  text-align: center;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 15px;
  transition: transform 0.3s ease;
}

.servico-moc:hover {
  transform: scale(1.08);
}

.servico-moc img {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
}

.arrow-moc {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 5;
  transition: background 0.3s;
}

.arrow-moc:hover {
  background: rgba(0, 0, 0, 0.8);
}

.arrow-moc.left-moc {
  left: 5px;
}

.arrow-moc.right-moc {
  right: 5px;
}

/* --- Responsivo --- */
@media (max-width: 768px) {
  .servico-moc {
    width: 100px;
    padding: 10px;
  }

  .arrow-moc {
    width: 32px;
    height: 32px;
  }
}
/* Sessões LGPD */
.lgpd-section {
  width: 100%;
  padding: 60px 20px;
  background: #f5f5f5;
  font-family: "Poppins", Arial, sans-serif;
  color: #222;
  border-top: 1px solid #ddd;
}

.lgpd-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #111;
}

.lgpd-section h3 {
  font-size: 1.3rem;
  margin-top: 25px;
  margin-bottom: 10px;
  font-weight: 600;
}

.lgpd-container {
  max-width: 1100px;
  margin: 0 auto;
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  border: 1px solid #e5e5e5;
}

.lgpd-section p {
  line-height: 1.7;
  margin-bottom: 15px;
  color: #333;
}

.lgpd-section ul {
  margin: 15px 0;
  padding-left: 20px;
}

.lgpd-section ul li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.cookies {
  background: #f0f4ff;
}

.termos {
  background: #fefefe;
}

.email-dpo {
  background: #f7f7f7;
  padding: 15px;
  border-left: 4px solid #0077ff;
  margin-top: 20px;
  border-radius: 6px;
}

/* Responsividade */
@media (max-width: 768px) {
  .lgpd-container {
    padding: 25px;
  }

  .lgpd-section h2 {
    font-size: 1.7rem;
  }
}
