/* style/gdpr.css */
/* body jรก padding-top: var(--header-offset)；a pรกgina nรฃo deve usar essa variรกvel novamente */
.page-gdpr {
  background-color: #08160F; /* Cor de fundo da paleta personalizada */
  color: #F2FFF6; /* Cor principal do texto da paleta personalizada, para fundo escuro */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-gdpr__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column; /* Garante que a imagem esteja acima do conteรบdo */
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Pequeno preenchimento superior conforme instruรงรµes, o body lida com --header-offset */
  text-align: center;
  background-color: #0A4B2C; /* Deep Green para o fundo da seรงรฃo hero */
}

.page-gdpr__hero-image-wrapper {
  width: 100%;
  max-width: 1200px; /* Restringe a largura da imagem */
  margin-bottom: 30px; /* Espaรงo entre a imagem e o texto */
}

.page-gdpr__hero-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

.page-gdpr__hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-gdpr__main-title {
  font-size: clamp(2rem, 5vw, 3rem); /* Tamanho de fonte responsivo */
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #F2C14E; /* Gold para o tรญtulo principal */
  margin-bottom: 20px;
}

.page-gdpr__description {
  font-size: 1.125rem;
  color: #A7D9B8; /* Cor secundรกria do texto */
  margin-bottom: 30px;
}

.page-gdpr__cta-buttons {
  display: flex;
  flex-wrap: wrap; /* Permite que os botรµes quebrem em telas menores */
  gap: 15px;
  justify-content: center;
  margin-top: 30px;
}

.page-gdpr__btn-primary,
.page-gdpr__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  max-width: 100%; /* Garante que os botรµes se adaptem ร  largura da tela */
  box-sizing: border-box;
  white-space: normal; /* Permite que o texto quebre */
  word-wrap: break-word;
}

.page-gdpr__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Gradiente do botรฃo */
  color: #F2FFF6; /* Cor principal do texto */
  border: 2px solid transparent;
}

.page-gdpr__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(42, 209, 111, 0.4);
}

.page-gdpr__btn-secondary {
  background-color: transparent;
  color: #57E38D; /* Cor Glow para o texto do botรฃo secundรกrio */
  border: 2px solid #2E7A4E; /* Cor da borda */
}

.page-gdpr__btn-secondary:hover {
  background-color: #11A84E; /* Cor principal para hover */
  color: #F2FFF6;
  border-color: #11A84E;
  transform: translateY(-2px);
}

.page-gdpr__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

.page-gdpr__section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #F2C14E; /* Gold para os tรญtulos das seรงรµes */
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.3;
}

.page-gdpr__intro-section,
.page-gdpr__principles-section,
.page-gdpr__rights-section,
.page-gdpr__data-processing-section,
.page-gdpr__faq-section,
.page-gdpr__contact-section {
  padding: 80px 0;
}

.page-gdpr__dark-section {
  background-color: #08160F; /* Cor de fundo */
  color: #F2FFF6; /* Cor principal do texto */
}

.page-gdpr__light-bg {
  background-color: #11271B; /* Cor de fundo do Card */
  color: #F2FFF6; /* Cor principal do texto */
}

.page-gdpr__text-block {
  font-size: 1rem;
  color: #A7D9B8; /* Cor secundรกria do texto */
  margin-bottom: 20px;
  text-align: justify;
}

.page-gdpr__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-gdpr__card {
  background-color: #0A4B2C; /* Deep Green para o fundo do cartรฃo */
  border: 1px solid #2E7A4E; /* Cor da borda */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%; /* Garante que os cartรµes tenham a mesma altura */
  display: flex;
  flex-direction: column;
}

.page-gdpr__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-gdpr__card-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto 20px auto;
  border-radius: 8px;
  object-fit: cover;
  min-width: 200px; /* Tamanho mรญnimo */
  min-height: 200px; /* Tamanho mรญnimo */
}

.page-gdpr__card-title {
  font-size: 1.5rem;
  color: #F2FFF6; /* Cor principal do texto */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-gdpr__card-text {
  font-size: 0.95rem;
  color: #A7D9B8; /* Cor secundรกria do texto */
  flex-grow: 1;
}

.page-gdpr__rights-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-gdpr__rights-item {
  background-color: #0A4B2C; /* Deep Green para o fundo do item de direitos */
  border: 1px solid #2E7A4E; /* Cor da borda */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  height: 100%;
}

.page-gdpr__rights-item-title {
  font-size: 1.4rem;
  color: #F2FFF6; /* Cor principal do texto */
  margin-bottom: 10px;
  font-weight: 600;
}

.page-gdpr__rights-item-text {
  font-size: 0.95rem;
  color: #A7D9B8; /* Cor secundรกria do texto */
}

.page-gdpr__list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-gdpr__list-item {
  font-size: 1rem;
  color: #A7D9B8; /* Cor secundรกria do texto */
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.page-gdpr__list-item::before {
  content: '✔';
  color: #57E38D; /* Cor Glow para o visto */
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
}

.page-gdpr__video-section {
  width: 100%;
  max-width: 100%;
  margin: 40px auto;
  box-sizing: border-box;
  text-align: center;
  padding: 10px 0; /* Pequeno preenchimento superior para a seรงรฃo de vรญdeo */
}

.page-gdpr__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* Proporção de aspecto 16:9 */
  height: 0;
  overflow: hidden;
  width: 100%; /* Ensure video wrapper takes full width */
  max-width: 100%;
  background: #000; /* Fundo preto para o vรญdeo */
  border-radius: 12px;
  margin-bottom: 20px;
}

.page-gdpr__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
  cursor: pointer; /* Indica que รฉ clicรกvel */
}

.page-gdpr__video-caption {
  font-size: 0.9rem;
  color: #A7D9B8; /* Cor secundรกria do texto */
  margin-top: 10px;
}

.page-gdpr__faq-list {
  margin-top: 40px;
}

.page-gdpr__faq-item {
  background-color: #0A4B2C; /* Deep Green */
  border: 1px solid #2E7A4E; /* Cor da borda */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.15rem;
  font-weight: 600;
  color: #F2FFF6; /* Cor principal do texto */
  cursor: pointer;
  background-color: #11A84E; /* Cor principal */
  border-bottom: 1px solid transparent; /* default */
  transition: background-color 0.3s ease;
  list-style: none; /* Para details/summary */
}

.page-gdpr__faq-item[open] > .page-gdpr__faq-question {
  background-color: #13994A; /* Verde ligeiramente mais escuro quando aberto */
  border-bottom-color: #2E7A4E; /* Cor da borda */
}

.page-gdpr__faq-question:hover {
  background-color: #13994A;
}

.page-gdpr__faq-qtext {
  flex-grow: 1;
}

.page-gdpr__faq-toggle {
  font-size: 1.5rem;
  font-weight: 700;
  color: #F2FFF6; /* Cor principal do texto */
  margin-left: 15px;
}

/* Ocultar o marcador padrรฃo de detalhes */
.page-gdpr__faq-item summary::-webkit-details-marker {
  display: none;
}
.page-gdpr__faq-item summary::marker {
  display: none;
}

.page-gdpr__faq-answer {
  padding: 20px 25px;
  font-size: 1rem;
  color: #A7D9B8; /* Cor secundรกria do texto */
  background-color: #0A4B2C; /* Deep Green */
}

.page-gdpr__faq-answer p {
  margin-bottom: 10px;
}

.page-gdpr__faq-answer p:last-child {
  margin-bottom: 0;
}

.page-gdpr__faq-answer a {
  color: #57E38D; /* Cor Glow para links */
  text-decoration: underline;
}

.page-gdpr__faq-answer a:hover {
  color: #F2C14E; /* Cor Gold ao passar o mouse */
}


/* Estilos responsivos */
@media (max-width: 1024px) {
  .page-gdpr__hero-section {
    padding: 40px 15px;
  }
  .page-gdpr__main-title {
    font-size: clamp(1.8rem, 6vw, 2.8rem);
  }
  .page-gdpr__section-title {
    font-size: clamp(1.5rem, 5vw, 2.2rem);
  }
  .page-gdpr__container {
    padding: 30px 15px;
  }
  .page-gdpr__intro-section,
  .page-gdpr__principles-section,
  .page-gdpr__rights-section,
  .page-gdpr__data-processing-section,
  .page-gdpr__faq-section,
  .page-gdpr__contact-section {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .page-gdpr {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-gdpr__hero-section {
    padding: 30px 10px;
    padding-top: 10px !important; /* o body lida com --header-offset, esta รฉ uma pequena decoraรงรฃo */
  }

  .page-gdpr__main-title {
    font-size: clamp(1.6rem, 7vw, 2.5rem);
    margin-bottom: 15px;
  }

  .page-gdpr__description {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .page-gdpr__cta-buttons {
    flex-direction: column; /* Empilha os botรµes verticalmente */
    gap: 10px;
    padding: 0 15px; /* Adiciona preenchimento ao contรบner do botรฃo */
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-gdpr__btn-primary,
  .page-gdpr__btn-secondary {
    padding: 12px 20px;
    font-size: 0.95rem;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-gdpr__container {
    padding: 20px 15px; /* Adiciona preenchimento aos contรบneres de conteรบdo */
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-gdpr__section-title {
    font-size: clamp(1.3rem, 6vw, 2rem);
    margin-bottom: 30px;
  }

  .page-gdpr__intro-section,
  .page-gdpr__principles-section,
  .page-gdpr__rights-section,
  .page-gdpr__data-processing-section,
  .page-gdpr__faq-section,
  .page-gdpr__contact-section {
    padding: 40px 0;
  }

  .page-gdpr__grid {
    grid-template-columns: 1fr; /* Layout de coluna รบnica */
    gap: 20px;
  }

  .page-gdpr__card {
    padding: 25px;
  }

  .page-gdpr__card-title {
    font-size: 1.3rem;
  }

  .page-gdpr__rights-list {
    grid-template-columns: 1fr; /* Layout de coluna รบnica */
    gap: 20px;
  }

  .page-gdpr__rights-item-title {
    font-size: 1.2rem;
  }

  .page-gdpr__list-item {
    font-size: 0.95rem;
  }

  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-gdpr__section,
  .page-gdpr__card,
  .page-gdpr__container,
  .page-gdpr__video-section,
  .page-gdpr__video-container,
  .page-gdpr__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Previne estouro */
  }

  .page-gdpr video,
  .page-gdpr__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-gdpr__video-section {
    padding-top: 10px !important;
  }

  .page-gdpr__video-wrapper {
    padding-bottom: 56.25% !important; /* Mantรฉm a proporรงรฃo de aspecto */
    height: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-gdpr__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-gdpr__faq-answer {
    padding: 15px 20px;
    font-size: 0.95rem;
  }
}