:root {
  --roxo: #492a92;
  --rosa: #ff6f7e;
  --verde: #51c9a5;
  --cinza: #dddddd;
  --bege: #f4eae6;
  --preto: #000;
  --branco: #fff;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  scroll-behavior: smooth;
  overflow-x: hidden;
  background-color: var(--rosa);
  color: var(--preto);
  height: 100%;
  overflow-x: hidden !important;
  overflow-y: auto;
  /* permite rolagem vertical */
}

html {
  scroll-behavior: smooth;
}

h2,
h3,
h5 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  letter-spacing: 0.4px;
}

h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 31px !important;
  font-weight: 900 !important;
}

h2 {
  font-size: 40px !important;
  font-weight: 900 !important;
}

h3 {
  font-size: 24px !important;
  font-weight: 900 !important;
}

.book-opening {
  position: fixed;
  inset: 0;
  background-color: #f4eae6;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  overflow: hidden;
  transition: opacity 1s ease-in-out;
}

.book-opening.fechado {
  opacity: 0;
  pointer-events: none;
}

.book-page {
  position: relative;
  width: 100vw;
  height: 100vh;
  perspective: 1600px;
}

.book-front,
.book-back {
  position: absolute;
  width: 100%;
  height: 100%;
  background: white;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
}

.book-front {
  z-index: 2;
  transform-origin: left center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.book-back {
  transform: rotateY(180deg);
}

.book-content {
  text-align: center;
  padding: 40px;
}

.foto-capa {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px solid var(--roxo);
  object-fit: cover;
  margin-bottom: 20px;
}

.titulo-capa {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--roxo);
  margin-bottom: 10px;
}

.frase-capa {
  font-size: 1rem;
  font-style: italic;
  color: #555;
}

.book-page.abrir .book-front {
  animation: virarPagina 4.5s ease-in-out forwards;
}

@keyframes virarPagina {
  0% {
    transform: rotateY(0);
  }

  100% {
    transform: rotateY(-180deg);
  }
}

main {
  opacity: 0;
  transition: opacity 1s ease-in-out;
  overflow-y: auto;
  height: 100vh;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

main.mostrar {
  opacity: 1;
}

main::-webkit-scrollbar {
  display: none;
}

section {
  height: 100vh;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  overflow: hidden;
}

.conteudo {
  width: 100%;
  max-width: 1000px;
  overflow-y: auto;
  box-sizing: border-box;
  padding: 20px 20px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE e Edge antigos */
}

#home {
  background: var(--rosa);
  color: var(--branco);
}

.foto-perfil {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--branco);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
  display: block;
}

.bio {
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 10px;
  color: var(--branco);
  max-width: 800px;
  line-height: 1.6;
  text-align: center;
}

.quadrinho {
  width: 100%;
  max-width: 1000px;
  margin: 20px auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}

.quadrinho img {
  width: 100%;
  height: auto;
  max-height: 90vh;
  /* ou ajuste se quiser limitar */
  object-fit: contain;
  border: 6px solid white;
  border-radius: 0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  display: block;
  margin-top: -10px;
}

.bloco-texto i {
  display: block;
  margin: 0 auto;
  text-align: center;
  font-size: 2rem;
  color: var(--roxo);
  margin-bottom: 15px;
}

.bloco-texto h3 {
  text-align: center;
}

#bloco-texto1 {
  margin-top: 70px;
  width: 97%;
  margin-left: -5px;
}

#card-ajuda4 {
  width: 96%;
}



#quadrinho3 {
  width: 95% !important;
  margin-top: 50px;
}

#quadrinhoHome {
  width: 99%;
  margin-top: 15px;
}

#quadrinho {
  margin-top: -20px;
}

.scroll-indicator {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2.2rem;
  color: white;
  opacity: 0.9;
  animation: bounce 1.5s infinite;
  z-index: 9999;
  cursor: pointer;
  transition: opacity 0.3s;
  pointer-events: all;
}

.scroll-indicator.hidden {
  opacity: 0;
  pointer-events: none;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

.sobre {
  background-color: var(--bege);
  color: var(--preto);
}

.sobre h2 {
  margin-bottom: -50px;
}

.sobre .subtitulo {
  margin-top: -5px;
  font-size: 1.5rem;
  color: var(--verde);
}

.bloco-texto,
.bloco-fala {
  background: var(--branco);
  padding: 25px 20px;
  margin: 20px auto;
  border-radius: 0;
  text-align: left;

  width: 96%;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.bloco-fala {
  background: var(--verde);
  border-left: 6px solid var(--roxo);
  width: 95%;
  margin-left: 0;
}

#card-ajuda1 {
  height: auto;
  width: 92%;
  display: block;
  margin: 0 auto;
}

@media (max-width: 576px) {
  #quadrinhoHome {
    margin-top: -30px;
  }

  .bloco-texto,
  .bloco-fala {
    width: 92%;
    margin-left: -5px;
    margin-top: -10px;
  }

  .bloco-fala {
    width: 90%;
  }

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

  .sobre h2 {
    margin-bottom: 25px;
  }

  #quadrinho3 {
    width: 99% !important;
    margin-top: -50px;
  }

  #card-ajuda4 {
    width: 91%;
  }

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

  .subtitulo {
    font-size: 20px !important;
  }

  #bloco-texto1 {
    margin-top: 0px;
    width: 92%;
  }

  #card-ajuda1 {
    width: 91%;
    margin-left: -3px;
    margin-bottom: 50px;
  }


  .carrossel-wrapper {
    max-width: 90%;
  }

}


@media (min-width: 768px) and (max-width: 1280px) {
  .bloco-texto {
    width: 96%;
    margin-left: -5px;
  }

  #bloco-texto1 {
    width: 96% !important;
    margin-left: -5px;
  }

  .bloco-fala {
    width: 94%;
  }

  #bloco-texto2 {
    margin-left: 0;
    width: 95%;
    margin-top: 0px;
  }

  #quadrinho3 {
    width: 95% !important;
  }

  #quadrinho4 {
    width: 100% !important;
  }

  #card-ajuda2 {
    width: 95%;
    margin-left: 0;
  }

  #card-ajuda3 {
    width: 95%;
    margin-left: 0;
  }

  #card-ajuda4 {
    width: 96%;
    margin-left: -1;
  }
}


/* =========================
   REDES SOCIAIS
========================= */
.redes-sociais {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  margin: 25px 0;
}

.btn-social {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.5rem;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 2px solid white;
  background-color: transparent;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s, background-color 0.3s, color 0.3s;
}

.btn-social:hover {
  transform: scale(1.15);
  background-color: white;
  color: black;
}

.btn-social.whatsapp {
  animation: elastic-pulse 2s infinite;
}

.btn-social.instagram {
  animation: slow-spin 6s linear infinite;
}

.btn-social.email {
  animation: fade-scale 3s ease-in-out infinite;
}

.btn-social.tiktok {
  animation: swing 2.5s ease-in-out infinite;
}

.btn-social.facebook {
  animation: shake 2s ease-in-out infinite;
}

@keyframes elastic-pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }
}

@keyframes slow-spin {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes swing {

  0%,
  100% {
    rotate: 0;
  }

  25% {
    rotate: 10deg;
  }

  50% {
    rotate: -10deg;
  }
}

@keyframes shake {

  0%,
  100% {
    translate: 0;
  }

  20% {
    translate: -3px;
  }

  40% {
    translate: 3px;
  }
}

@keyframes fade-scale {

  0%,
  100% {
    opacity: 1;
    scale: 1;
  }

  50% {
    opacity: 0.7;
    scale: 1.1;
  }
}

#depoimentos {
  background-color: var(--bege);
}

/* Centralizar seção de depoimentos */
.conteudo-depoimentos {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1rem;
}

.section#depoimentos {
  padding-bottom: 8rem;
  /* ajuste fino aqui se quiser */
  position: relative;
}

/* Estilização da modal */
#modalDepoimento {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999;
}

.modal-fechado {
  display: none;
}

.modal-conteudo {
  background-color: #fff;
  padding: 2rem;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  border-radius: 0;
  /* Removendo bordas arredondadas */
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-family: 'Arial', sans-serif;
}

.modal-conteudo h2 {
  margin-top: 0;
  font-weight: 600;
  font-size: 1.5rem;
  text-align: center;
}

.modal-conteudo input,
.modal-conteudo textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 0;
  /* quadrado */
  font-size: 1rem;
}

.modal-conteudo textarea {
  resize: vertical;
  min-height: 100px;
}

.modal-conteudo .btn {
  background-color: #492a92;
  color: white;
  padding: 0.75rem;
  border: none;
  cursor: pointer;
  font-weight: bold;
  border-radius: 0;
  transition: background-color 0.3s ease;
}

.modal-conteudo .btn:hover {
  background-color: #351f6b;
}

/* Botão fechar (X) */
.fechar {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  cursor: pointer;
}

/* Estrelas interativas */
.estrelas-interativas {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  font-size: 2rem;
  color: #ccc;
}

.estrelas-interativas .estrela:hover,
.estrelas-interativas .estrela.selecionada {
  color: #ffca28;
  cursor: pointer;
}

#btnNovoDepoimento {
  display: inline-block;
  margin: 20px auto;
  background-color: var(--roxo);
  color: white;
  border: none;
  margin-bottom: 5px;
  padding: 12px 25px;
  font-size: 1.1rem;
  border-radius: 0;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#carrosselDepoimentos {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 50%;
  gap: 1rem;
  padding: 1rem;
  -webkit-overflow-scrolling: touch;
  justify-content: start;
}

.depoimento-item {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  width: 80%;
  max-width: calc(100% - 40px);
  /* garante 20px de margem em cada lado */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  scroll-snap-align: center;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
  word-break: break-word;
  overflow-wrap: break-word;
  font-family: 'Cormorant Garamond', serif;
  color: #333;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin: 0 auto;
  /* centraliza horizontalmente */
}

.depoimento-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

.depoimento-item .estrelas {
  font-size: 1.4rem;
  color: gold;
  /* Dourado elegante */
  margin-bottom: 0.8rem;
  white-space: nowrap;
}

.depoimento-item p {
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0 0 1rem;
  color: #444;
}

.depoimento-item h4 {
  font-weight: 600;
  text-align: right;
  font-size: 1.1rem;
  margin: 0;
  color: #555;
}

/* ==== RESET FORTE para a página de política ==== */

/* 1) Fundo branco em toda a página de política */
body.policy-page {
  background: #fff !important;
}

/* 2) Qualquer <section> ou .section vira bloco simples com fundo branco */
body.policy-page section,
body.policy-page .section {
  all: unset;
  /* limpa TUDO herdado (flex/100vh/bg etc) */
  display: block !important;
  background: #fff !important;
  /* tira o rosa */
  color: #1f2937;
  padding: 20px 0;
  border-bottom: 1px solid #e5e7eb;
}

body.policy-page section:last-of-type,
body.policy-page .section:last-of-type {
  border-bottom: 0;
}

/* 3) Mata pseudo-elementos decorativos da home (barras/gradientes laterais) */
body.policy-page section::before,
body.policy-page section::after,
body.policy-page .section::before,
body.policy-page .section::after {
  content: none !important;
  display: none !important;
}

/* 4) Tipografia: neutraliza títulos enormes herdados (usa !important p/ vencer .section h2 da home) */
body.policy-page h1,
body.policy-page h2,
body.policy-page h3 {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  color: #111827 !important;
  margin: 0 0 .75rem !important;
  line-height: 1.25 !important;
}

body.policy-page h1 {
  font-size: clamp(1.5rem, 2.2vw + 1rem, 2rem) !important;
}

body.policy-page h2,
body.policy-page section h2,
body.policy-page .section h2 {
  font-size: clamp(1.25rem, 1vw + 1rem, 1.6rem) !important;
}

body.policy-page h3,
body.policy-page section h3,
body.policy-page .section h3 {
  font-size: clamp(1.05rem, 0.7vw + .9rem, 1.25rem) !important;
}

/* 5) Texto e listas */
body.policy-page p {
  margin: 0 0 .9rem !important;
}

body.policy-page ul,
body.policy-page ol {
  margin: .4rem 0 1rem 1.25rem !important;
}

body.policy-page li {
  margin: .25rem 0 !important;
}

/* 6) Container e cabeçalho (mantém layout limpo) */
body.policy-page .wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 16px;
}

body.policy-page header {
  position: sticky;
  top: 0;
  z-index: 5;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  padding: 18px 0;
}

body.policy-page .subtitle {
  color: #6b7280;
  font-size: .95rem;
}

/* 7) Some com elementos da home que não existem na política */
body.policy-page .book-opening,
body.policy-page .scroll-indicator,
body.policy-page .menu-dropdown-container {
  display: none !important;
}

/* 8) Garante que o conteúdo aparece (home usa "reveal") */
body.policy-page main {
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
}

/* ===== Botões no contexto da política ===== */
body.policy-page .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  padding: .5rem 1rem;
  border-radius: 999px;
  border: 1px solid #5c3dbb;
  font-size: .9rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: all .2s ease-in-out;
}

body.policy-page .btn:hover {
  opacity: 0.9;
}

body.policy-page .btn.secondary {
  background: #fff;
  color: #5c3dbb;
}

body.policy-page .btn:not(.secondary) {
  background: #5c3dbb;
  color: #fff;
}

/* Container do formulário */
.form {
  --bg: #fff;
  --fg: #111827;
  --muted: #6b7280;
  --brand: #ff6f7e;
  --brand-dark: #e55e6b;
  --ring: rgba(255, 111, 126, .35);

  width: 100%;
  max-width: min(720px, calc(100% - 32px));
  /* respeita padding do pai */
  margin: 24px auto 0;
  /* card abaixo do h2 */
  padding: 20px;
  background: var(--bg);
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
  display: grid;
  grid-template-columns: 1fr;
  /* >>> força 1 coluna em todos os tamanhos */
  gap: 14px;
  /* espaço extra no fim p/ não brigar com botão flutuante */
  padding-bottom: calc(20px + env(safe-area-inset-bottom, 0px) + 64px);
  overflow: hidden;
  /* suaviza o gradiente do botão no canto */
}

/* Itens do grid podem encolher (evita estourar o card) */
.form>* {
  min-width: 0;
}

/* box-sizing consistente só dentro do form */
.form,
.form * {
  box-sizing: border-box;
}

/* Campos */
.form input,
.form textarea {
  width: 100%;
  max-width: 100%;
  display: block;
  padding: 14px 16px;
  font: 500 16px/1.4 system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Arial, sans-serif;
  color: var(--fg);
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  outline: 0;
  transition: border-color .2s, box-shadow .2s, background .2s;
  -webkit-appearance: none;
  appearance: none;
}

/* Placeholder */
.form input::placeholder,
.form textarea::placeholder {
  color: var(--muted);
  opacity: .9;
}

/* Foco */
.form input:focus,
.form textarea:focus {
  border-color: var(--brand);
  background: #fff;
  box-shadow: 0 0 0 6px var(--ring);
}

/* Textarea */
.form textarea {
  min-height: 140px;
  resize: vertical;
}

/* Botão */
.form .form-button {
  appearance: none;
  border: 0;
  cursor: pointer;
  padding: 14px 20px;
  width: 100%;
  max-width: 100%;
  display: block;
  font: 700 16px/1 system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Arial, sans-serif;
  color: #fff;
  background: linear-gradient(180deg, var(--brand), var(--brand-dark));
  border-radius: 14px;
  box-shadow: 0 8px 18px rgba(255, 111, 126, .25);
  transition: transform .06s, box-shadow .2s, filter .2s;
}

.form .form-button:hover {
  filter: brightness(1.02);
  box-shadow: 0 10px 24px rgba(255, 111, 126, .32);
}

.form .form-button:active {
  transform: translateY(1px);
}

/* ===== Validação (só quando .is-validated entra) ===== */
.form.is-validated input:invalid,
.form.is-validated textarea:invalid {
  border-color: #fca5a5;
}

.form.is-validated input:invalid:focus,
.form.is-validated textarea:invalid:focus {
  box-shadow: 0 0 0 6px rgba(252, 165, 165, .25);
}

/* Remover setas do number (se mantiver) */
.form input[type="number"]::-webkit-outer-spin-button,
.form input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.form input[type="number"] {
  -moz-appearance: textfield;
}

/* Autofill iOS/Safari/Chrome */
.form input:-webkit-autofill {
  box-shadow: 0 0 0 1000px #fff inset !important;
  -webkit-text-fill-color: var(--fg) !important;
}

/* Dark mode opcional */
.dark .form {
  --bg: #0b0f14;
  --fg: #e5e7eb;
  --muted: #9aa3af;
  --ring: rgba(255, 111, 126, .28);
  background: var(--bg);
  border-color: #1f2937;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
}

.dark .form input,
.dark .form textarea {
  background: #0f141b;
  border-color: #1f2937;
  color: var(--fg);
}

/* ===== Remover/neutralizar regras de 2 colunas ===== */
@media (min-width:700px) {
  .form {
    grid-template-columns: 1fr !important;
    /* continua 1 coluna */
    grid-template-areas: none !important;
    max-width: 720px;
    /* mantém o card compacto */
  }

  .form textarea,
  .form .form-button {
    grid-column: auto !important;
  }
}

/* (Removido layout de ≥900px em 2 colunas) */

/* Fallback extra para Safari/iOS teimoso em grids */
@supports (-webkit-touch-callout: none) {
  .form>* {
    min-width: 0 !important;
  }
}

/* Espaço extra entre o título e o card (abaixo do h2) */
.contato {
  background-color: var(--bege);
  color: var(--preto);
}

.contato h2 {
  margin-bottom: -50px;
}

.section.contato h2 {
  margin: 0 0 16px;
  line-height: 1.2;
}

/* Reutiliza sua animação fadeIn existente; evita duplicar keyframes */

@media (min-width: 768px) {
  #carrosselDepoimentos {
    flex-wrap: wrap;
    justify-content: center;
    overflow-x: hidden;
    scroll-snap-type: none;
  }

  .depoimento-item {
    flex: 1 1 300px;
    scroll-snap-align: unset;
    margin: 0.5rem;
  }

}

@media (max-width: 767px) {
  #carrosselDepoimentos {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding: 0 35px;
    /* respiro nas laterais */
    width: 100vw;
    box-sizing: border-box;
    scroll-padding-left: 16px;
    /* garante o 1º card inteiro */
    scroll-padding-right: 16px;
    /* garante o último card inteiro */
  }

  #carrosselDepoimentos::-webkit-scrollbar {
    display: none;
  }

  /* Aqui padronizamos a largura dos cards */
  #carrosselDepoimentos>.depoimento-item {
    flex: 0 0 85%;
    /* ocupa 85% da largura visível */
    scroll-snap-align: start;
    /* sempre alinha pela esquerda */
    max-width: 85%;
  }

  body.policy-page h1 {
    font-size: 1.8rem;
  }

  body.policy-page .two-col {
    display: block;
  }
}

/* Estilização para o container pai se necessário */
.container-depoimentos {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 1rem;
  scroll-snap-type: x mandatory;
  padding: 1rem 0;
}

@media (max-width: 480px) {
  .depoimento-item {
    padding: 1rem;
    max-width: 90%;
  }
}

/* Modal */
#modalDepoimento[role="dialog"] {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
}

#modalDepoimento[role="dialog"].aberto {
  display: flex;
}

.depoimento-card {
  flex: 0 0 80%;
  /* ocupa 80% da tela do celular */
  min-width: 80%;
  max-width: 80%;
  scroll-snap-align: center;
  background-color: #fff;
  padding: 1.25rem;
  border-radius: 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  margin: auto;
}

@media (max-width: 600px) {
  .depoimento-card {
    flex: 0 0 85%;
    min-width: 85%;
    max-width: 85%;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .cookie-actions {
    width: 100%;
    justify-content: flex-end;
    margin-top: .75rem;
    /* espaço entre texto e botões */
  }
}

/* Remova ::before e ::after completamente */
.modal-conteudo {
  background: white;
  padding: 30px 20px;
  border-radius: 0;
  max-width: 400px;
  width: 90%;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
}

.modal-conteudo .fechar {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  color: var(--roxo);
  cursor: pointer;
  transition: transform 0.3s ease, color 0.3s ease;
  user-select: none;
}

.modal-conteudo .fechar:hover {
  color: var(--rosa);
  transform: rotate(90deg);
}

.modal-conteudo input,
.modal-conteudo textarea {
  width: 100%;
  margin-bottom: 14px;
  padding: 12px 10px;
  border: 1px solid #ccc;
  font-size: 1rem;
  box-sizing: border-box;
  resize: vertical;
  font-family: 'Segoe UI', sans-serif;
}

.modal-conteudo textarea {
  min-height: 80px;
}

.modal-conteudo button.btn {
  background-color: var(--roxo);
  color: white;
  border: none;
  padding: 12px;
  width: 100%;
  font-size: 1.05rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.modal-conteudo button.btn:hover {
  background-color: var(--rosa);
}

/* Estrelas interativas */
.estrelas-interativas {
  margin-bottom: 10px;
  display: flex;
  gap: 0.4rem;
  font-size: 1.9rem;
  justify-content: start;
}

.estrelas-interativas .estrela {
  cursor: pointer;
  color: #ccc;
  position: relative;
  transition: color 0.3s ease, transform 0.2s ease;
  user-select: none;
}

.estrelas-interativas .estrela::before {
  content: '\2605';
  position: absolute;
  top: 0;
  left: 0;
  color: #f5b301;
  width: 0;
  overflow: hidden;
  transition: width 0.3s ease;
}

.estrelas-interativas .estrela:hover::before,
.estrelas-interativas .estrela.hovered::before,
.estrelas-interativas .estrela.selected::before {
  width: 100%;
}

.estrelas-interativas .estrela:hover,
.estrelas-interativas .estrela.hovered,
.estrelas-interativas .estrela.selected {
  color: transparent;
  transform: scale(1.15);
}

.botao-whatsapp {
  position: fixed;
  bottom: 56px;
  /* posição base */
  right: 20px;
  background-color: #25D366;
  color: white;
  font-weight: 700;
  font-family: inherit;
  padding: 10px 10px;
  border-radius: 30px;
  font-size: 0.75rem;
  max-width: 200px;
  /* Limita a largura */
  white-space: nowrap;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 9998;
  /* abaixo da seta */
  transition: bottom 0.3s ease, transform 0.3s, box-shadow 0.3s;
}

.botao-whatsapp i {
  font-size: 1.2rem;
}

.botao-whatsapp:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

/* Quando o banner está aberto → sobe o botão */
body.cookie-banner-open .botao-whatsapp {
  bottom: 140px;
  /* ajuste conforme altura do banner */
}

/* Fundo escuro do popup */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  backdrop-filter: blur(4px);
}

/* Janela do popup */
.popup-depoimento {
  background: #fefefe;
  padding: 2rem;
  max-width: 500px;
  width: 90%;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  position: relative;
  text-align: center;
  animation: fadeIn 0.3s ease-in-out;
  font-family: 'Cormorant Garamond', serif;
  color: #333;
}

/* Botão fechar */
.popup-depoimento .fechar-popup {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 1.8rem;
  cursor: pointer;
  color: #888;
  transition: color 0.3s;
}

.popup-depoimento .fechar-popup:hover {
  color: #000;
}

/* Estrelas douradas */
.popup-depoimento .estrelas {
  font-size: 1.5rem;
  margin: 1rem 0;
  color: gold;
  letter-spacing: 4px;
}

/* Comentário */
.popup-depoimento p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 1rem 0;
  font-style: italic;
  color: #444;
}

/* Nome */
.popup-depoimento h4 {
  margin-top: 1.5rem;
  font-weight: 600;
  font-size: 1.2rem;
  color: #000;
}

/* Animação */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}


.menu-dropdown-container {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 9999;
}

.menu-btn {
  background-color: var(--roxo);
  /* Roxo do projeto */
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 10%;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease;
}

.menu-btn:hover {
  background-color: #572e85;
}

.menu-dropdown {
  display: none;
  position: absolute;
  top: 50px;
  right: 0;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 12px;
  padding: 10px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  min-width: 150px;
  font-family: 'Cormorant Garamond', serif;
  animation: fadeIn 0.3s ease-in-out;
}

.menu-dropdown ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-dropdown li {
  text-align: right;
}

.menu-dropdown a {
  display: block;
  padding: 10px 20px;
  color: #492a92;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.2s ease;
}

.menu-dropdown a:hover {
  background-color: #f3f3f3;
}

/* Banner de cookies */
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .15);
  z-index: 9999;
  color: #1f2937;
  font-size: 0.95rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  /* espaço entre texto e botões */
}

.cookie-banner[hidden] {
  display: none !important;
}

.cookie-banner a {
  color: #5c3dbb;
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: .5rem;
  margin: 0;
  /* remove o espaçamento vertical */
}

/* Botões */
.cookie-banner .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  padding: .5rem 1rem;
  border-radius: 999px;
  border: 1px solid #5c3dbb;
  font-size: .9rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: all .2s ease-in-out;
}

.cookie-banner .btn:hover {
  opacity: .9;
}

.cookie-banner .btn.secondary {
  background: #fff;
  color: #5c3dbb;
}

.cookie-banner .btn:not(.secondary) {
  background: #5c3dbb;
  color: #fff;
}


.btn.destaque {
  background: #5c3dbb;
  color: #fff;
  border: 0
}

.cookie-prefs-link {
  display: inline-block;
  margin: .5rem 1rem;
  font-size: .9rem;
  opacity: .8
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


#adm {
  color: var(--branco);
}