/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 100%;
  scroll-behavior: smooth;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #fff;
  color: #222;
  line-height: 1.5;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
}
h2 {
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 2.3rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 1.2rem;
  letter-spacing: 0.10em;
  color: #235869;
  text-shadow: 0 2px 12px rgba(35,88,105,0.08);
}
@media (max-width: 700px) {
  h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
}
header, main, footer, section, nav, article, aside {
  display: block;
}
/* Sidebar menu */
.sidebar-hamburger {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 1001;
  background: #111;
  color: #fff;
  border: none;
  font-size: 2rem;
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 80vw;
  max-width: 320px;
  height: 100vh;
  background: #235869;
  color: #fff;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(.4,0,.2,1);
  z-index: 1002;
  display: flex;
  flex-direction: column;
  padding: 2rem 1rem 1rem 1.5rem;
  box-shadow: 2px 0 16px rgba(0,0,0,0.15);
  height: 100vh;
  max-height: 100vh;
  overflow-y: auto;
}
.sidebar.open {
  transform: translateX(0);
}
.sidebar-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  z-index: 10;
}
.sidebar-menu {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.sidebar-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
  transition: color 0.2s;
}
.sidebar-menu a:focus, .sidebar-menu a:hover, .sidebar-menu a.ativo {
  color: #000;
  background: none;
  outline: none;
}
.sidebar-acessibilidade {
  display: flex;
  gap: 0.5rem;
  margin-top: auto;
  justify-content: center;
  padding: 0.5rem 0;
}
.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(.4,0,.2,1);
}
.sidebar-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
/* Remove menu antigo do topo */
nav.menu, .menu, #menu, #menu-toggle, .logo {
  display: none !important;
}
.hero {
  position: relative;
  overflow: hidden;
  min-height: 40vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.hero-bg, .hero-bg2, .hero-bg3 {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: opacity 1.2s cubic-bezier(.4,0,.2,1);
}
.hero-bg {
  background: linear-gradient(rgba(30,30,30,0.6), rgba(30,30,30,0.6)), url('assets/img/img1.jpg') center center/cover no-repeat;
  opacity: 1;
}
.hero-bg2 {
  background: linear-gradient(rgba(30,30,30,0.6), rgba(30,30,30,0.6)), url('assets/img/img2.jpg') center center/cover no-repeat;
  opacity: 0;
}
.hero-bg3 {
  background: linear-gradient(rgba(30,30,30,0.6), rgba(30,30,30,0.6)), url('assets/img/img3.jpg') center center/cover no-repeat;
  opacity: 0;
}
.hero-lente {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  background: #235869cc;
  z-index: 2;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 30vh;
  gap: 2.2rem;
}
.hero-logo {
  position: static;
  top: auto;
  left: auto;
  transform: none;
  z-index: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 0.5rem;
}
.hero-logo img {
  max-width: 340px;
  max-height: 180px;
  width: 60vw;
  height: auto;
  filter: drop-shadow(0 4px 18px rgba(0,0,0,0.13));
}
.hero .subtitle {
  font-family: 'Poppins', Arial, sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  color: #f8fafd;
  text-align: center;
  max-width: 700px;
  margin: 0 0 0.5rem 0;
  text-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.hero .btn-hero {
  margin-top: 0.5rem;
}
@media (max-width: 700px) {
  .hero-content {
    gap: 1.2rem;
    min-height: 20vh;
  }
  .hero-logo img {
    max-width: 200px;
    max-height: 90px;
    width: 80vw;
  }
  .hero .subtitle {
    font-size: 1.05rem;
    max-width: 95vw;
  }
  .hero {
    min-height: 30vh;
    padding: 2rem 0.5rem 1.5rem 0.5rem;
  }
  .hero {
    min-height: 60vh;
    padding: 2.5rem 1rem 2rem 1rem;
  }
  .hero-content {
    min-height: 30vh;
  }
}
.hero h1 {
  font-size: 2.5rem;
  letter-spacing: 0.1em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
  margin-bottom: 1rem;
}
.hero .btn-hero {
  background: #61b4bb;
  color: #235869;
  padding: 0.7rem 1.7rem;
  border-radius: 2rem;
  text-decoration: none;
  font-weight: bold;
  margin-top: 3.5rem;
  display: inline-block;
  box-shadow: 0 2px 8px rgba(0,0,0,0.13);
  transition: background 0.2s, color 0.2s;
  font-size: 1.13rem;
  border: none;
}
.hero .btn-hero:hover, .hero .btn-hero:focus {
  background: #235869;
  color: #fff;
}
.hero-acessibilidade {
  position: absolute;
  top: 2rem;
  right: 2rem;
  z-index: 10;
  display: flex;
  gap: 1rem;
}
@media (max-width: 700px) {
  .hero-acessibilidade {
    top: 1rem;
    right: 1rem;
    gap: 0.5rem;
  }
}
@media (min-width: 900px) {
  .hero-acessibilidade {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 1002;
    display: flex;
    gap: 1rem;
  }
}
section {
  min-height: 420px;
  padding: 2rem 1rem;
  background: #fff;
}
section:nth-of-type(2n) {
  background: #f5f7fa;
}
section:nth-of-type(3n) {
  background: #eaf3fa;
}
h2 {
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 2.3rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 1.2rem;
  letter-spacing: 0.10em;
  color: #235869;
  text-shadow: 0 2px 12px rgba(35,88,105,0.08);
}
.subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 1.5rem;
}
.servicos-lista {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 2.5rem;
}
.servicos-lista article {
  background: #fff;
  border-radius: 2.2rem;
  box-shadow: 0 4px 32px rgba(35,88,105,0.10);
  padding: 2.2rem 1.5rem 2.5rem 1.5rem;
  max-width: 340px;
  min-width: 260px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.servicos-lista article:hover, .servicos-lista article:focus-within {
  box-shadow: 0 8px 40px rgba(35,88,105,0.18);
  transform: translateY(-4px) scale(1.03);
}
.servicos-lista article img {
  width: 70px !important;
  height: 70px !important;
  object-fit: cover;
  border-radius: 50%;
  background: #eaf3fa;
  margin-bottom: 1.2rem !important;
  box-shadow: 0 2px 8px rgba(35,88,105,0.08);
  border: 3px solid #f5faff;
}
.servicos-lista h3 {
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  color: #235869;
  margin-bottom: 0.7rem;
  margin-top: 0.2rem;
}
.servicos-lista p {
  color: #235869;
  font-size: 1.01rem;
  margin-bottom: 1.5rem;
}
.servicos-lista .servico-btn {
  background: #235869;
  color: #fff;
  border: none;
  border-radius: 2rem;
  padding: 0.6rem 1.6rem;
  font-size: 1rem;
  font-family: 'Poppins', Arial, sans-serif;
  font-weight: 600;
  margin-top: auto;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(35,88,105,0.10);
  transition: background 0.2s, color 0.2s;
}
.servicos-lista .servico-btn:hover, .servicos-lista .servico-btn:focus {
  background: #61b4bb;
  color: #235869;
}
@media (max-width: 900px) {
  .servicos-lista {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  .servicos-lista article {
    max-width: 95vw;
    min-width: 0;
  }
}
figure {
  margin: 0 auto;
  max-width: 100%;
  text-align: center;
}
figure img {
  width: 100%;
  border-radius: 1rem;
  max-width: 400px;
}
figcaption {
  margin-top: 0.5rem;
  font-size: 1rem;
  color: #444;
}
.depoimento {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  background: #f5f5f5;
  border-radius: 1rem;
  padding: 1rem;
  margin: 0 auto;
  max-width: 350px;
}
.depoimento img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}
blockquote {
  font-style: italic;
  color: #333;
}
footer {
  background: #235869;
  color: #fff;
  padding: 2rem 1rem 1rem 1rem;
  text-align: center;
}
.footer-info {
  margin-bottom: 1rem;
}
.newsletter {
  margin-top: 1rem;
}
.newsletter input[type="email"] {
  padding: 0.5rem;
  border-radius: 1rem;
  border: none;
  margin-right: 0.5rem;
}
.newsletter button {
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  border: none;
  background: #fff;
  color: #222;
  font-weight: bold;
}
footer nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}
footer nav a {
  color: #fff;
  text-decoration: underline;
}
/* Alto contraste */
body.contraste, body.contraste header, body.contraste nav, body.contraste footer, body.contraste main, body.contraste section, body.contraste .servicos-lista article, body.contraste .depoimento, body.contraste .terapia-card, body.contraste .contato-card, body.contraste .faq-wrapper, body.contraste .faq-accordion, body.contraste .accordion-body, body.contraste .sidebar, body.contraste .hero, body.contraste .hero-content, body.contraste .servicos-bg, body.contraste .servicos-lente, body.contraste .terapia-online-wrapper, body.contraste .terapia-online-lista, body.contraste .terapia-desc, body.contraste .sidebar-overlay {
  background: #000 !important;
  color: #FFD600 !important;
}
body.contraste h1, body.contraste h2, body.contraste h3, body.contraste h4, body.contraste h5, body.contraste h6,
body.contraste .numero, body.contraste .numero-legenda, body.contraste label, body.contraste .subtitle, body.contraste .servico-btn, body.contraste .terapia-texto, body.contraste .faq-badge, body.contraste .faq-question, body.contraste .faq-answer, body.contraste .contato-form label, body.contraste .contato-form input, body.contraste .contato-form textarea, body.contraste .contato-form button, body.contraste .footer-info, body.contraste .footer-info a, body.contraste .footer-info span {
  color: #FFD600 !important;
  border-color: #FFD600 !important;
}
body.contraste .acess-btn {
  background: #FFD600 !important;
  color: #000 !important;
  border-color: #FFD600 !important;
}
body.contraste .acess-btn:focus, body.contraste .acess-btn:hover {
  background: #000 !important;
  color: #FFD600 !important;
  border-color: #FFD600 !important;
}
body.contraste input, body.contraste textarea, body.contraste select {
  background: #000 !important;
  color: #FFD600 !important;
  border: 1.5px solid #FFD600 !important;
}
body.contraste .servico-btn, body.contraste .btn-hero, body.contraste button, body.contraste .contato-form button[type="submit"] {
  background: #FFD600 !important;
  color: #000 !important;
  border: none !important;
}
body.contraste .servico-btn:hover, body.contraste .btn-hero:hover, body.contraste button:hover, body.contraste .contato-form button[type="submit"]:hover {
  background: #000 !important;
  color: #FFD600 !important;
  border: 1.5px solid #FFD600 !important;
}
body.contraste a, body.contraste a:visited {
  color: #FFD600 !important;
  text-decoration: underline;
}
body.contraste .hero-bg, body.contraste .hero-bg2, body.contraste .hero-bg3, body.contraste .hero-lente, body.contraste .servicos-bg, body.contraste .servicos-lente {
  background: #000 !important;
  opacity: 1 !important;
}
/* Ajuste de tamanho de texto */
body.texto-grande {
  font-size: 120%;
}
body.texto-pequeno {
  font-size: 90%;
}
/* Responsividade básica para mobile first */
@media (min-width: 700px) {
  .sidebar {
    width: 320px;
    max-width: 320px;
    padding: 2.5rem 2rem 2rem 2.5rem;
  }
  .sidebar-hamburger {
    top: 2rem;
    left: 2rem;
    font-size: 2.2rem;
  }
  .servicos-lista {
    flex-direction: row;
    justify-content: center;
  }
  .servicos-lista article {
    min-width: 200px;
    max-width: 300px;
  }
  .depoimento {
    max-width: 600px;
    flex-direction: row;
    text-align: left;
  }
  section {
    padding: 3rem 2rem;
  }
  .hero {
    min-height: 85vh;
    padding: 5rem 2rem 3rem 2rem;
  }
  .hero h1 {
    font-size: 4rem;
  }
  .hero .subtitle {
    font-size: 1.5rem;
  }
}
.psicologos-lista {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
}
.psicologo {
  background: #f5f5f5;
  border-radius: 1rem;
  padding: 1.5rem 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  text-align: center;
  max-width: 340px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.psicologo img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}
.psicologo h3 {
  margin-bottom: 0.3rem;
  font-size: 1.2rem;
  color: #222;
}
.psicologo p {
  margin-bottom: 0.2rem;
  color: #444;
  font-size: 1rem;
}
@media (min-width: 700px) {
  .psicologos-lista {
    flex-direction: row;
    justify-content: center;
    gap: 3rem;
  }
  .psicologo {
    max-width: 320px;
    padding: 2rem 1.5rem;
  }
}
.depoimentos-lista {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
}
.depoimento {
  background: #f5f5f5;
  border-radius: 1rem;
  padding: 1.5rem 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  text-align: center;
  max-width: 340px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.depoimento img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}
.depoimento blockquote {
  font-style: italic;
  color: #333;
  margin: 0;
}
.depoimento footer {
  margin-top: 0.5rem;
  color: #666;
  font-size: 0.95rem;
}
@media (min-width: 700px) {
  .depoimentos-lista {
    flex-direction: row;
    justify-content: center;
    gap: 3rem;
  }
  .depoimento {
    max-width: 320px;
    padding: 2rem 1.5rem;
  }
} 
.depoimentos-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 520px;
  position: relative;
  margin: 0 auto 2rem auto;
  max-width: 1100px;
  background: none;
  border-radius: 0;
  box-shadow: none;
  padding: 2.5rem 1rem 3.5rem 1rem;
}
#depoimentos {
  background: #61b4bb;
}
.depoimentos-title-vertical {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 1.3rem;
  font-weight: bold;
  color: #222;
  letter-spacing: 0.22em;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #ededed;
  padding: 2.2rem 1.1rem 2.2rem 1.1rem;
  border-radius: 0.7rem;
  box-shadow: 4px 4px 18px rgba(0,0,0,0.10);
  z-index: 3;
  border-left: 6px solid #ffd700;
}
.depoimento-card {
  display: flex;
  align-items: flex-start;
  background: transparent;
  border-radius: 1rem;
  box-shadow: none;
  overflow: visible;
  min-width: 400px;
  max-width: 800px;
  width: 100%;
  margin: 0 0 3.5rem 0;
  position: relative;
  min-height: 320px;
  justify-content: flex-start;
}
.depoimento-foto {
  flex: 0 0 270px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  z-index: 2;
  position: relative;
  margin-top: 30px;
  margin-left: 40px;
}
.depoimento-foto img {
  width: 210px;
  height: 210px;
  border-radius: 0.5rem;
  object-fit: cover;
  box-shadow: 0 12px 32px rgba(0,0,0,0.22), 0 2px 8px rgba(0,0,0,0.10);
  border-bottom: 10px solid #ffd700;
  background: #fff;
}
.depoimento-conteudo {
  flex: 1;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.13), 0 2px 8px rgba(0,0,0,0.08);
  padding: 2.5rem 2.5rem 2.5rem 3.5rem;
  margin-left: -70px;
  margin-top: 60px;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 1;
  position: relative;
  align-items: flex-start;
}
.depoimento-conteudo h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.2rem;
  color: #222;
  letter-spacing: 0.08em;
}
.depoimento-conteudo .depoimento-cargo {
  font-size: 1.05rem;
  color: #888;
  font-weight: 600;
  margin-bottom: 0.7rem;
  letter-spacing: 0.04em;
}
.depoimento-texto {
  color: #333;
  font-size: 1.08rem;
  line-height: 1.6;
  margin-top: 0.7rem;
}
.depoimentos-indicadores {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.indicador {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: none;
  background: #ccc;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  outline: none;
}
.indicador.ativo, .indicador:focus {
  background: #222;
  box-shadow: 0 0 0 2px #ffd700;
}
@media (max-width: 1100px) {
  .depoimentos-container {
    max-width: 98vw;
    padding: 1.5rem 0.5rem 2.5rem 0.5rem;
  }
  .depoimento-card {
    max-width: 98vw;
  }
  .depoimentos-title-vertical {
    left: -28px;
    padding: 1.2rem 0.5rem 1.2rem 0.5rem;
  }
}
@media (max-width: 900px) {
  .depoimento-card {
    min-width: 0;
    max-width: 98vw;
  }
  .depoimentos-title-vertical {
    left: -18px;
    font-size: 1.1rem;
    padding: 0.7rem 0.3rem;
  }
}
@media (max-width: 700px) {
  .depoimentos-container {
    min-height: 350px;
    padding: 0.5rem 0.2rem 1.5rem 0.2rem;
    border-radius: 0.7rem;
  }
  .depoimento-card {
    flex-direction: column;
    align-items: center;
    min-width: 0;
    max-width: 98vw;
    min-height: 0;
  }
  .depoimento-foto {
    margin-left: 0;
    margin-top: 0;
    min-height: 120px;
    justify-content: center;
    margin-bottom: -30px;
  }
  .depoimento-foto img {
    width: 120px;
    height: 120px;
    border-bottom: 6px solid #ffd700;
  }
  .depoimento-conteudo {
    margin-left: 0;
    margin-top: 0;
    padding: 1.2rem 1rem;
    min-height: 0;
    align-items: center;
    text-align: center;
  }
} 
#quem-sou {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
} 
.blog-lista {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  gap: 2rem;
  margin: 2rem 0 1rem 0;
  flex-wrap: wrap;
}
.blog-post {
  background: rgba(255,255,255,0.22);
  border-radius: 0;
  box-shadow: 0 2px 12px rgba(35,88,105,0.08);
  border: 1.5px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0 0 1.5rem 0;
  max-width: 320px;
  min-width: 220px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: left;
  transition: box-shadow 0.2s, border 0.2s, transform 0.2s;
  overflow: hidden;
}
.blog-post:hover, .blog-post:focus-within {
  box-shadow: 0 6px 24px rgba(35,88,105,0.16);
  border: 1.5px solid #61b4bb;
  transform: translateY(-6px) scale(1.025);
}
.blog-post img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 0;
  margin-bottom: 1.1rem;
  display: block;
}
.blog-post h3 {
  color: #235869;
  font-size: 1.18rem;
  font-weight: 700;
  margin: 0 1.1rem 0.6rem 1.1rem;
  letter-spacing: 0.02em;
}
.blog-post p {
  color: #545454;
  font-size: 1rem;
  margin: 0 1.1rem 1.2rem 1.1rem;
}
.blog-post .btn-hero {
  margin: 0 1.1rem;
  background: #235869;
  color: #fff;
  font-size: 1rem;
  border-radius: 2rem;
  padding: 0.6rem 1.2rem;
  box-shadow: 0 1px 4px rgba(35,88,105,0.10);
  border: none;
  transition: background 0.2s, color 0.2s;
}
.blog-post .btn-hero:hover, .blog-post .btn-hero:focus {
  background: #61b4bb;
  color: #235869;
}
@media (max-width: 900px) {
  .blog-lista {
    gap: 1.2rem;
  }
  .blog-post {
    max-width: 45vw;
    min-width: 180px;
  }
}
@media (max-width: 700px) {
  .blog-lista {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  .blog-post {
    max-width: 98vw;
    min-width: 0;
    padding: 0 0 1rem 0;
  }
  .blog-post img {
    height: 140px;
  }
  .blog-post h3, .blog-post p, .blog-post .btn-hero {
    margin-left: 0.7rem;
    margin-right: 0.7rem;
  }
} 
.sidebar-logo {
  margin-top: 1.2rem;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 0;
  margin-bottom: 2.5rem;
}
.sidebar-logo img {
  max-width: 180px;
  max-height: 80px;
  width: auto;
  height: auto;
  display: block;
} 
@media (max-width: 700px) {
  .sidebar-close {
    top: 0.7rem;
    right: 0.7rem;
    font-size: 1.7rem;
  }
  .sidebar-logo {
    margin-top: 2.1rem;
  }
}
.contato-wrapper {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 2.5rem;
  max-width: 900px;
  margin: 0 auto;
  padding: 1.5rem 0;
}
.contato-texto {
  flex: 1;
  font-size: 1.13rem;
  color: #235869;
  font-family: 'Open Sans', Arial, sans-serif;
  line-height: 1.6;
  font-weight: 500;
  max-width: 340px;
  align-self: center;
}
.contato-form {
  flex: 1;
  max-width: 370px;
  margin: 0;
  background: #fafdff;
  border-radius: 1.1rem;
  box-shadow: 0 2px 10px rgba(35,88,105,0.06);
  padding: 1.7rem 1.1rem 1.1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  border: 1.5px solid #e3eef2;
}
.contato-form label {
  font-weight: 600;
  color: #235869;
  margin-bottom: 0.1rem;
  font-size: 1.01rem;
  letter-spacing: 0.01em;
}
.contato-form input,
.contato-form textarea {
  border: 1.5px solid #61b4bb;
  border-radius: 0.6rem;
  padding: 0.6rem 0.9rem;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #222;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  box-shadow: 0 1px 3px rgba(35,88,105,0.04);
}
.contato-form input:focus,
.contato-form textarea:focus {
  border-color: #235869;
  box-shadow: 0 0 0 2px #61b4bb33;
}
.contato-form textarea {
  min-height: 90px;
  resize: vertical;
}
.contato-form button[type="submit"] {
  background: linear-gradient(90deg, #235869 60%, #61b4bb 100%);
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 0.6rem;
  padding: 0.7rem 0;
  font-size: 1.07rem;
  margin-top: 0.5rem;
  cursor: pointer;
  box-shadow: 0 1px 6px rgba(35,88,105,0.08);
  transition: background 0.2s, box-shadow 0.2s;
  letter-spacing: 0.03em;
}
.contato-form button[type="submit"]:hover,
.contato-form button[type="submit"]:focus {
  background: linear-gradient(90deg, #61b4bb 0%, #235869 100%);
  box-shadow: 0 2px 10px rgba(35,88,105,0.13);
}
@media (max-width: 900px) {
  .contato-wrapper {
    flex-direction: column;
    gap: 1.5rem;
    padding: 0.5rem 0;
    align-items: center;
  }
  .contato-texto, .contato-form {
    max-width: 98vw;
  }
} 
.quem-sou-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: flex-start;
}
@media (min-width: 1100px) {
  .quem-sou-wrapper {
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 3.5rem;
  }
  .quem-sou-texto {
    flex: 1 1 420px;
    max-width: 480px;
    min-width: 320px;
  }
  .quem-sou-foto-box {
    flex: 0 0 auto;
    align-items: flex-start;
    margin-left: 0;
  }
}
.quem-sou-label {
  color: #235869;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.7rem;
  display: block;
}
#titulo-quem-sou {
  font-size: 2.3rem;
  color: #222;
  margin-bottom: 0.7rem;
  text-align: left;
}
.quem-sou-sub {
  color: #235869;
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  text-align: left;
}
.quem-sou-texto p {
  color: #444;
  font-size: 1.05rem;
  margin-bottom: 0.7rem;
  text-align: left;
}
.quem-sou-foto-box {
  flex: 1;
  position: relative;
  min-width: 260px;
  max-width: 400px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.quem-sou-foto {
  max-width: 320px;
  width: 100%;
  height: auto;
  border-radius: 2.2rem;
  box-shadow: 0 2px 18px rgba(35,88,105,0.10);
}
@media (min-width: 1100px) {
  .quem-sou-foto {
    max-width: 260px;
  }
}
.quem-sou-card {
  position: absolute;
  right: 0;
  bottom: 0;
  background: #e2c3ad;
  color: #222;
  border-radius: 1.1rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  padding: 1.2rem 1.5rem 1.2rem 1.2rem;
  min-width: 250px;
  max-width: 320px;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transform: translateY(30%);
}
.quem-sou-card-icone {
  font-size: 2.1rem;
  color: #b98c5e;
  margin-right: 0.5rem;
  flex-shrink: 0;
}
.quem-sou-card-info {
  flex: 1;
}
.quem-sou-card-info strong {
  font-size: 1.08rem;
  color: #222;
  font-weight: 700;
  display: block;
  margin-bottom: 0.2rem;
}
.quem-sou-card-info p {
  font-size: 0.98rem;
  color: #444;
  margin-bottom: 0.7rem;
}
.quem-sou-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  color: #b98c5e;
  font-weight: 700;
  border: 2px solid #b98c5e;
  border-radius: 2rem;
  padding: 0.6rem 1.3rem;
  font-size: 1.05rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.quem-sou-card-btn:hover, .quem-sou-card-btn:focus {
  background: #b98c5e;
  color: #fff;
  border-color: #b98c5e;
}
.wa-ico {
  font-size: 1.2rem;
}
@media (max-width: 1000px) {
  .quem-sou-wrapper {
    flex-direction: column;
    gap: 2.2rem;
    align-items: center;
    padding: 1.5rem 0.5rem 1.5rem 0.5rem;
  }
  .quem-sou-foto-box {
    max-width: 98vw;
    min-width: 0;
  }
  .quem-sou-foto {
    max-width: 98vw;
  }
  .quem-sou-card {
    position: static;
    transform: none;
    margin-top: 1.2rem;
    max-width: 98vw;
    width: 100%;
  }
} 
#servicos {
  position: relative;
  overflow: hidden;
  min-height: 650px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.servicos-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  background: url('assets/img/img1.jpg') center center/cover no-repeat;
  z-index: 1;
  opacity: 0.45;
}
.servicos-lente {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(35,88,105,0.72);
  z-index: 2;
  pointer-events: none;
  backdrop-filter: blur(2px);
}
.servicos-wrapper {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4.5rem 1.5rem 4rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#servicos h2, #servicos .subtitle {
  color: #fff;
  text-shadow: 0 2px 16px rgba(35,88,105,0.18);
}
#servicos .subtitle {
  font-size: 1.18rem;
  margin-bottom: 2.2rem;
}
.servicos-lista {
  margin-top: 0;
  width: 100%;
}
.servicos-lista article h2 {
  color: #235869 !important;
  font-size: 1.35rem;
  font-family: 'Poppins', Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 0.7rem;
  margin-top: 0.2rem;
}
#servicos > h2 {
  color: #235869;
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 2.2rem;
  text-align: left;
}
@media (max-width: 900px) {
  #servicos {
    min-height: 0;
    padding: 0;
  }
  .servicos-wrapper {
    padding: 2.5rem 0.5rem 2rem 0.5rem;
  }
} 
.acess-btn {
  background: #f5faff;
  border: 2px solid #235869;
  color: #235869;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0.2rem;
  transition: background 0.2s, color 0.2s, border 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(35,88,105,0.07);
  cursor: pointer;
  outline: none;
}
.acess-btn:focus, .acess-btn:hover {
  background: #235869;
  color: #fff;
  border-color: #235869;
  box-shadow: 0 0 0 3px #b3d6e6;
}
.acess-btn .acess-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  width: 100%;
  height: 100%;
}
.acess-btn svg {
  display: block;
} 
/* FAQ Section */
#faq {
  background: #fff;
  padding: 3rem 1rem 2rem 1rem;
  display: flex;
  justify-content: center;
}
.faq-wrapper {
  max-width: 950px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  align-items: flex-start;
  /* Removido fundo, borda e sombra */
  padding: 2.5rem 2rem;
}
.faq-info {
  flex: 1 1 260px;
  min-width: 220px;
}
.faq-badge {
  display: inline-block;
  background: #eaf3fa;
  color: #235869;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 1.2rem;
  padding: 0.25rem 1.1rem;
  margin-bottom: 1.1rem;
}
#faq h2 {
  text-align: left;
  margin-bottom: 0.7rem;
}
.faq-info p {
  color: #235869;
  font-size: 1.08rem;
  margin-top: 0.7rem;
}
.faq-accordion {
  flex: 2 1 400px;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.faq-item {
  border-bottom: 1px solid #eaf3fa;
  padding: 0.7rem 0;
}
.faq-question {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.18rem;
  font-weight: 700;
  color: #235869;
  cursor: pointer;
  padding: 0.2rem 0;
  transition: color 0.2s;
  outline: none;
}
.faq-question:focus, .faq-question:hover {
  color: #61b4bb;
}
.faq-number {
  color: #235869;
  font-size: 1.25rem;
  font-weight: 700;
  min-width: 2.5rem;
  display: inline-block;
}
.faq-arrow {
  margin-left: auto;
  font-size: 1.2rem;
  color: #61b4bb;
  transition: transform 0.2s;
}
.faq-question[aria-expanded="true"] .faq-arrow {
  transform: rotate(180deg);
}
.faq-answer {
  color: #222;
  font-size: 1.05rem;
  margin: 0.7rem 0 0.2rem 2.7rem;
  line-height: 1.6;
  /* display: none; removido para JS controlar */
  animation: fadeInFaq 0.3s;
}
.faq-answer.aberta {
  display: block;
}
.faq-item .faq-answer[style*="display:block"] {
  display: block;
}
@keyframes fadeInFaq {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 900px) {
  .faq-wrapper {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem 0.5rem;
  }
  .faq-info {
    text-align: center;
  }
  #faq h2 {
    text-align: center;
  }
  .faq-answer {
    margin-left: 0.5rem;
  }
} 
footer, .footer-info, .footer-info a, .footer-info span {
  color: #fff !important;
} 
.quem-sou-numeros {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-top: 2.2rem;
  align-items: center;
}
.numero-box {
  background: none;
  border-radius: 2rem;
  box-shadow: none;
  padding: 1.1rem 2.2rem;
  min-width: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.numero {
  color: #235869;
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.numero-legenda {
  color: #235869;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  opacity: 0.85;
  text-align: center;
}
@media (min-width: 700px) {
  .quem-sou-foto-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  .quem-sou-numeros {
    flex-direction: row;
    gap: 2.2rem;
    margin-top: 2.5rem;
  }
} 
.quem-sou-foto-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
@media (min-width: 900px) {
  .quem-sou-foto-box {
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 2.5rem;
  }
  .quem-sou-foto {
    margin-bottom: 0;
  }
  .quem-sou-numeros {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 0;
    gap: 1.3rem;
  }
} 
@media (min-width: 1100px) {
  .quem-sou-wrapper {
    align-items: stretch;
  }
  .quem-sou-foto-box {
    align-items: center;
    justify-content: center;
    height: 100%;
  }
} 
#terapia-online {
  background: #235869;
}
#terapia-online h2, #terapia-online #titulo-terapia-online {
  color: #fff !important;
}
body.contraste #terapia-online h2,
body.contraste #terapia-online #titulo-terapia-online,
body.contraste h2#titulo-terapia-online {
  color: #FFD600 !important;
}
body.contraste .terapia-desc {
  color: #fff !important;
}
.terapia-online-wrapper {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}
#terapia-online h2 {
  color: #235869;
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 2.2rem;
  text-align: left;
}
.terapia-online-lista {
  display: flex;
  flex-direction: row;
  gap: 2.2rem;
  justify-content: center;
  flex-wrap: nowrap;
}
.terapia-card {
  background: #f5faff;
  border-radius: 1.2rem;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.2rem 2.2rem 1.2rem 1.2rem;
  min-width: 270px;
  box-shadow: 0 2px 12px rgba(35,88,105,0.07);
  font-family: 'Roboto', Arial, sans-serif;
}
.terapia-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eaf3fa;
  border-radius: 0.8rem;
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  box-shadow: 0 1px 6px rgba(35,88,105,0.06);
}
.terapia-texto {
  color: #235869;
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.4;
}
.terapia-desc {
  color: #fff;
  text-align: center;
  font-size: 1.13rem;
  margin: 0 0 2.2rem 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-family: 'Roboto', Arial, sans-serif;
  opacity: 0.95;
}
@media (max-width: 1100px) {
  .terapia-online-lista {
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .terapia-card {
    min-width: 220px;
    max-width: 100%;
  }
}
@media (max-width: 900px) {
  .terapia-online-lista {
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
    flex-wrap: nowrap;
  }
  .terapia-card {
    min-width: 0;
    width: 100%;
    max-width: 95vw;
    padding: 1.2rem 1rem;
  }
} 
#contato {
  background: #61b4bb;
} 
/* Accordion personalizado com cores do site */
.accordion-button {
  background-color: #f8f9fa;
  border: none;
  color: #235869;
  font-weight: 600;
  padding: 1.5rem;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
  background-color: #eaf3fa !important;
  color: #235869 !important;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(97, 180, 187, 0.25);
  border-color: #61b4bb;
}

.accordion-button:hover {
  background-color: #61b4bb;
  color: #ffffff;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23235869'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-item, .accordion, .accordion * {
  border: none !important;
  box-shadow: none !important;
}

.accordion-body {
  background-color: #f8f9fa;
  color: #545454;
  padding: 1.5rem;
  font-size: 1rem;
  line-height: 1.6;
}

.accordion-collapse {
  border-top: none;
}

/* Ajuste do espaçamento do accordion */
.faq-accordion {
  margin-top: 2rem;
}

.faq-accordion .accordion-item:first-child {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.faq-accordion .accordion-item:last-child {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  margin-bottom: 0;
} 
/* Modal de agendamento personalizado */
#modalAgendamento .modal-content {
  border-radius: 18px;
  border: none;
  box-shadow: 0 8px 40px rgba(35,88,105,0.18);
  background: #fafdff;
}
#modalAgendamento .modal-header {
  border-bottom: none;
  background: linear-gradient(90deg, #235869 60%, #61b4bb 100%);
  color: #fff;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  padding-top: 1.3rem;
  padding-bottom: 1.1rem;
}
#modalAgendamento .modal-title {
  color: #fff;
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.03em;
}
#modalAgendamento .btn-close {
  filter: invert(1) grayscale(1);
  opacity: 0.8;
}
#modalAgendamento .modal-body {
  padding: 2.2rem 2rem 2rem 2rem;
}
#modalAgendamento .form-label {
  color: #235869;
  font-weight: 600;
  font-size: 1rem;
}
#modalAgendamento .form-control {
  border-radius: 0.7rem;
  border: 1.5px solid #eaf3fa;
  font-size: 1rem;
  color: #235869;
  background: #fff;
  box-shadow: none;
  transition: border-color 0.2s;
}
#modalAgendamento .form-control:focus {
  border-color: #61b4bb;
  box-shadow: 0 0 0 2px #61b4bb33;
}
#modalAgendamento .form-check-input:checked {
  background-color: #61b4bb;
  border-color: #235869;
}
#modalAgendamento .form-check-input {
  border-radius: 50%;
  border: 1.5px solid #61b4bb;
  width: 1.1em;
  height: 1.1em;
  margin-top: 0.1em;
}
#modalAgendamento .form-check-label {
  color: #235869;
  font-weight: 500;
  margin-left: 0.3em;
}
#modalAgendamento .btn-primary {
  background: linear-gradient(90deg, #235869 60%, #61b4bb 100%);
  border: none;
  color: #fff;
  font-weight: 700;
  border-radius: 0.7rem;
  font-size: 1.08rem;
  padding: 0.7rem 0;
  box-shadow: 0 2px 10px rgba(35,88,105,0.10);
  transition: background 0.2s, box-shadow 0.2s;
}
#modalAgendamento .btn-primary:hover, #modalAgendamento .btn-primary:focus {
  background: linear-gradient(90deg, #61b4bb 0%, #235869 100%);
  color: #fff;
  box-shadow: 0 4px 18px rgba(35,88,105,0.13);
}
#modalAgendamento input[type="date"].form-control {
  color-scheme: light;
  color: #235869;
  border: 1.5px solid #eaf3fa;
  background: #fff;
}
#modalAgendamento input[type="date"].form-control:focus {
  border-color: #61b4bb;
}
@media (max-width: 700px) {
  #modalAgendamento .modal-body {
    padding: 1.2rem 0.5rem 1.2rem 0.5rem;
  }
  #modalAgendamento .modal-content {
    border-radius: 10px;
  }
} 
body.contraste #quem-sou p {
  color: #fff !important;
} 
body.contraste #servicos p,
body.contraste .servicos-lista p {
  color: #fff !important;
} 
body.contraste .servicos-lista article h2 {
  color: #FFD600 !important;
} 
body.contraste #faq p,
body.contraste #faq .faq-info p,
body.contraste #faq .faq-answer,
body.contraste #faq .accordion-body {
  color: #fff !important;
} 
body.contraste #contato .contato-topo + div > div {
  color: #fff !important;
} 
body.contraste #contato a[aria-label] svg {
  fill: #fff !important;
}
body.contraste #contato a[aria-label] path {
  fill: #fff !important;
} 
.sidebar-endereco-qrcode, .sidebar-endereco-qrcode .sidebar-localizacao {
  text-align: left !important;
} 
@media (max-width: 700px) {
  section, .servicos-wrapper, .quem-sou-wrapper, .terapia-online-wrapper, .faq-wrapper, .contato-card {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .servicos-lista article, .contato-card, .terapia-card, .faq-wrapper, .depoimento, .blog-post {
    margin-left: 0.3rem !important;
    margin-right: 0.3rem !important;
  }
} 
@media (max-width: 700px) {
  .contato-form-novo {
    flex-direction: column !important;
  }
  .contato-form-novo > div[style*="display:flex"] {
    flex-direction: column !important;
    gap: 0.5rem !important;
  }
  .contato-form-novo input,
  .contato-form-novo textarea {
    width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box;
  }
} 
/* Menu Mobile Full-Screen */
@media (max-width: 900px) {
  .sidebar {
    width: 100vw;
    max-width: 100vw;
    height: 100vh;
    max-height: 100vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem 1rem;
  }
  
  .sidebar-logo {
    position: static;
    margin-bottom: 2rem;
  }
  
  .sidebar-logo img {
    max-width: 200px;
    max-height: 100px;
  }
  
  .sidebar-menu {
    margin: 2rem 0;
    gap: 2rem;
  }
  
  .sidebar-menu a {
    font-size: 1.5rem;
    padding: 1rem 2rem;
    border-radius: 1rem;
    background: rgba(255,255,255,0.1);
    transition: background 0.3s;
  }
  
  .sidebar-menu a:hover,
  .sidebar-menu a:focus {
    background: rgba(255,255,255,0.2);
  }
  
  .sidebar-endereco {
    display: none !important;
  }
  
  .sidebar-endereco-qrcode {
    margin-top: auto;
    width: 100%;
    max-width: 300px;
  }
  
  .sidebar-localizacao {
    text-align: center !important;
    margin-bottom: 1.5rem;
  }
  
  .sidebar-qrcode {
    display: none !important;
  }
  
  .sidebar-localizacao {
    font-size: 0.93rem !important;
  }
  .sidebar-localizacao div {
    font-size: 0.82rem !important;
  }
  .sidebar-localizacao div:has(> strong),
  .sidebar-localizacao div:has(> b),
  .sidebar-localizacao div:has(> span),
  .sidebar-localizacao div:has(> a),
  .sidebar-localizacao div:has(> [style*="E-mail"]) {
    display: none !important;
  }
  .sidebar-localizacao br + div[style*="E-mail"],
  .sidebar-localizacao br + div[style*="contato@"] {
    display: none !important;
  }
  .sidebar-localizacao div[style*="E-mail"],
  .sidebar-localizacao div[style*="contato@"] {
    display: none !important;
  }
  
  .sidebar-close {
    position: fixed;
    top: 1rem;
    right: 1rem;
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
  }
  .sidebar-email {
    display: none !important;
  }
}

/* Manter sidebar lateral para desktop */
@media (min-width: 901px) {
  .sidebar {
    width: 320px;
    max-width: 320px;
    height: 100vh;
    max-height: 100vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    padding: 2.5rem 2rem 2rem 2.5rem;
    text-align: left;
  }
  
  .sidebar-logo {
    position: static;
    margin-bottom: 2rem;
  }
  
  .sidebar-menu {
    margin: 0 0 2rem 0;
    gap: 1.5rem;
  }
  
  .sidebar-menu a {
    font-size: 1.2rem;
    padding: 0;
    background: none;
  }
  
  .sidebar-endereco-qrcode {
    margin-top: auto;
  }
  
  .sidebar-close {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    background: none;
    width: auto;
    height: auto;
  }
} 