/* ==========================================================================
   VARIÁVEIS DE CORES E CONFIGURAÇÕES GERAIS
   ========================================================================== */
:root {
  --primary-red: #D30815;
  --primary-orange: #F37021;
  --primary-yellow: #FFC20E;
  --bg-light: #FDF8F6;
  --text-dark: #2A2A2A;
  --white: #FFFFFF;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
}

body {
  background-color: var(--bg-light);
  
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
}

/* ==========================================================================
   HEADER / MENU
   ========================================================================== */
#main-header {
  
  
  
  
  
  
  
}

.nav-container {
  
  
  
  
  
  
}

.logo-img {
  
  
}

.nav-links {
  
  
  
  
}

.nav-links a {
  
  
  
  
}

.nav-links a:hover {
  
}

.btn-cta {
  background-color: var(--primary-orange);
  color: var(--white) !important;
  
  
  font-weight: 600 !important;
  transition: background-color 0.2s, transform 0.2s !important;
  text-decoration: none;
  display: inline-block;
}

.btn-cta:hover {
  background-color: var(--primary-red);
  transform: translateY(-2px);
}

/* ==========================================================================
   HERO (BOAS-VINDAS)
   ========================================================================== */
.hero {
  padding: 140px 2rem 60px;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.hero-content {
  flex: 1;
}

.hero-content h1 {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-content h1 span {
  color: var(--primary-orange);
}

.hero-content p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 2rem;
}

.hero-card {
  flex: 0 0 320px;
  background: var(--white);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(243, 112, 33, 0.2);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.hero-card h3 {
  color: var(--primary-red);
  margin-bottom: 0.5rem;
}

/* ==========================================================================
   TÍTULOS DE SEÇÃO
   ========================================================================== */
.section-title {
  text-align: center;
  
}

.section-title h2 {
  font-size: 2rem;
  color: var(--primary-red);
  margin-bottom: 0.5rem;
}

.section-title p {
  color: #666;
  font-size: 1.05rem;
}

/* ==========================================================================
   SEÇÕES GERAIS (SOBRE, SERVIÇOS, BLOG, COMO FUNCIONA)
   ========================================================================== */
.about,
.services,
.blog-section,
.how-it-works {
  padding: 5rem 2rem;
}

.about {
  background-color: var(--white);
}

.services,
.how-it-works {
  background-color: var(--bg-light);
}

.blog-section {
  background-color: var(--white);
}

/* ==========================================================================
   ESTILO DO CONTAINER UNIFICADO "SOBRE A CLÍNICA"
   ========================================================================== */
.about-single-card {
  max-width: 900px;
  margin: 0 auto;
}

.about-thumb-unified {
  height: 120px;
}

.about-icons-group {
  display: flex;
  gap: 1.5rem;
  font-size: 2.8rem;
}

.about-body-unified {
  padding: 2.5rem 2rem;
  gap: 1.5rem;
}

.about-topic h3 {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--primary-red);
  font-size: 1.35rem;
  margin-bottom: 0.6rem;
}

.about-topic p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
}

.about-divider {
  border: 0;
  height: 1px;
  background: rgba(243, 112, 33, 0.15);
  margin: 0.5rem 0;
}

/* ==========================================================================
   NOSSA EQUIPE - POSTS ILUSTRADOS
   ========================================================================== */
.team-section {
  padding: 5rem 2rem;
  background-color: var(--bg-light);
}

.team-grid-posts {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.team-post-card {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(243, 112, 33, 0.2);
  transition: transform 0.3s ease;
}

.team-post-card:hover {
  transform: translateY(-6px);
}

.team-post-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* ==========================================================================
   ESTILO PADRONIZADO EM CARDS PARA O SITE INTEIRO
   ========================================================================== */
.grid-three-cards {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.grid-four-cards {
  max-width: 1100px;
  margin: 0 auto;
  
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  
}

.style-card {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(243, 112, 33, 0.15);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.style-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(243, 112, 33, 0.15);
}

.card-thumb {
  height: 140px;
  background: linear-gradient(135deg, rgba(243, 112, 33, 0.12), rgba(255, 194, 14, 0.22));
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-icon-large {
  font-size: 3rem;
}

.card-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: var(--primary-orange);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.7rem;
  border-radius: 20px;
  text-transform: uppercase;
}

.card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-date {
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 0.4rem;
}

.card-body h3 {
  color: var(--primary-red);
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

.card-body p {
  font-size: 0.92rem;
  color: var(--text-dark);
  line-height: 1.5;
  margin-bottom: 1.2rem;
  flex-grow: 1;
}

.card-link {
  color: var(--primary-orange);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.card-link:hover {
  color: var(--primary-red);
}

/* ==========================================================================
   SEÇÃO DE LOCALIZAÇÃO (PADRONIZADA EM CARD)
   ========================================================================== */
.location-section {
  padding: 5rem 2rem;
  background-color: var(--white);
}

.location-card {
  max-width: 1000px;
  margin: 0 auto;
}

.location-thumb {
  height: 120px;
}

.location-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
}

.location-info h3 {
  color: var(--primary-red);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.location-info p {
  font-size: 0.98rem;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
  line-height: 1.5;
}

.location-buttons-group {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.2rem;
  flex-wrap: wrap;
}

.location-buttons-group .btn-cta {
  flex: 1;
  min-width: 140px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
}

.map-icon {
  flex-shrink: 0;
}

.btn-google-map {
  background-color: var(--primary-orange);
  color: var(--white) !important;
}

.btn-apple-map {
  background-color: #000000;
  color: #ffffff !important;
  border: 1px solid #2c2c2e;
}

.btn-apple-map:hover {
  background-color: #2c2c2e;
  color: #ffffff !important;
}

.map-container {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* ==========================================================================
   PÁGINA DE POLÍTICA DE PRIVACIDADE (ESPECÍFICO)
   ========================================================================== */
.privacy-container {
  max-width: 800px;
  margin: 120px auto 60px;
  padding: 2.5rem;
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(243, 112, 33, 0.15);
}

.privacy-container h1 {
  color: var(--primary-red);
  margin-bottom: 1rem;
  font-size: 2.2rem;
}

.privacy-container h2 {
  color: var(--primary-orange);
  margin-top: 1.8rem;
  margin-bottom: 0.6rem;
  font-size: 1.3rem;
}

.privacy-container p,
.privacy-container ul {
  color: var(--text-dark);
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.privacy-container ul {
  padding-left: 1.5rem;
}

.btn-back {
  display: inline-block;
  margin-top: 2rem;
  color: var(--primary-orange);
  font-weight: 600;
  text-decoration: none;
}

.btn-back:hover {
  color: var(--primary-red);
}

/* ==========================================================================
   RODAPÉ (FOOTER)
   ========================================================================== */
.main-footer {
  background-color: #1a1a1a;
  color: #fff;
  padding: 4rem 2rem 1rem;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-col h3,
.footer-col h4 {
  color: var(--primary-orange);
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
}

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

.footer-col a {
  color: #ccc;
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #333;
  color: #888;
  font-size: 0.85rem;
}

/* ==========================================================================
   BOTÕES FLUTUANTES E RESPONSIVIDADE
   ========================================================================== */
.whatsapp-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #25d366;
  color: #fff;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  z-index: 999;
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    padding-top: 100px;
  }

  .team-grid-posts {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .location-body {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }
}

/* ==========================================================================
   MODAL DE RESPIRAÇÃO GUIADA E BOTÃO FLUTUANTE
   ========================================================================== */
.btn-respirar-flutuante {
  position: fixed;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--white);
  border: 2px solid var(--primary-orange);
  color: var(--text-dark);
  padding: 0.6rem 1.4rem;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  z-index: 999;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  white-space: nowrap;
}

.btn-respirar-flutuante span {
  position: relative;
  top: -1.5px;
  line-height: 1;
}

.btn-respirar-flutuante:hover {
  transform: translateX(-50%) translateY(-3px);
  box-shadow: 0 6px 20px rgba(243, 112, 33, 0.25);
  background-color: var(--bg-light);
}

.btn-respirar-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

/* ESTRUTURA DO MODAL FLUTUANTE */
.respiracao-modal {
  
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
}

.respiracao-content.style-card {
  max-width: 440px;
  width: 100%;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(243, 112, 33, 0.2);
  position: relative;
  overflow: hidden;
}

.modal-thumb {
  height: 180px;
  position: relative;
}

.btn-fechar {
  position: absolute;
  top: 12px;
  right: 15px;
  background: rgba(255, 255, 255, 0.9);
  border: none;

  /* Dimensões travadas para garantir círculo perfeito */
  width: 32px !important;
  height: 32px !important;
  min-width: 32px !important;
  min-height: 32px !important;
  border-radius: 50% !important;
  aspect-ratio: 1 / 1 !important;
  flex-shrink: 0 !important;

  font-size: 1.3rem;
  color: var(--text-dark);
  cursor: pointer;

  /* Centralização perfeita sem empurrar o X */
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
  padding: 0 !important;
  /* Zera qualquer folga interna que cause distorção */

  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: background 0.2s, color 0.2s, transform 0.2s;
  z-index: 10;
}

.btn-fechar:hover {
  background: var(--primary-red);
  color: var(--white);
  transform: scale(1.1);
}

.logo-respiracao-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

#logo-pulsante {
  max-width: 100px;
  height: auto;
  transform: scale(1);
}

.modal-body-custom {
  align-items: center;
  text-align: center;
  padding: 2rem 1.8rem;
}

.modal-body-custom h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.modal-body-custom p {
  font-size: 0.98rem;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-modal-action {
  width: 100%;
  border: none;
  cursor: pointer;
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
}

/* ==========================================================================
   SEÇÃO DE AVALIAÇÕES E DEPOIMENTOS DO GOOGLE (ESTÁTICO)
   ========================================================================== */
.reviews-section {
  padding: 5rem 2rem;
  background-color: var(--white);
}

.reviews-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 2.5rem;
  align-items: center;
}

.google-rating-card {
  padding: 2rem;
  text-align: center;
  background: var(--bg-light);
  border: 1px solid rgba(243, 112, 33, 0.2);

  /* ⬇️ PROPRIEDADES QUE REALIZAM A CENTRALIZAÇÃO PERFEITA ⬇️ */
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: 450px;
  /* Evita que o card fique largo demais e mantém um tamanho elegante */
  width: 100%;
}

.badge-google-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.rating-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 0.8rem;
}

.score-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary-orange);
  line-height: 1;
}

.stars-group {
  color: #FFC107;
  font-size: 1.5rem;
  letter-spacing: 2px;
  margin-top: 0.3rem;
}

.rating-subtitle {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.btn-google-reviews {
  width: 100%;
  font-size: 0.9rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  padding: 1.8rem;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.stars-group-small {
  color: #FFC107;
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
}

.testimonial-text {
  font-size: 0.95rem;
  font-style: italic;
  color: #444;
  line-height: 1.6;
  margin-bottom: 1.2rem;
  flex-grow: 1;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--primary-red);
}

.testimonial-author span {
  font-size: 0.8rem;
  color: #888;
}

/* RESPONSIVIDADE */
@media (max-width: 900px) {
  .reviews-container {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   BOTÃO FLUTUANTE WHATSAPP VERDE NEON
   ========================================================================== */
@keyframes pulsoNeon {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7), 0 0 15px rgba(37, 211, 102, 0.5);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0), 0 0 25px rgba(37, 211, 102, 0.8);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 0 15px rgba(37, 211, 102, 0.5);
  }
}

/* ============================================================
   BOTÃO WHATSAPP (FUNDO VERDE + ÍCONE BRANCO COM SLIDE)
   ============================================================ */
.whatsapp-float-clean {
  position: fixed;
  bottom: 25px;
  right: -10px;
  /* Levemente para fora da tela no canto */

  width: 54px;
  height: 54px;
  background-color: #25D366 !important;
  /* Fundo verde oficial */
  border: none !important;
  border-radius: 50% 0 0 50% !important;
  /* Arredondado no lado que entra */

  display: flex;
  align-items: center;
  justify-content: center;

  z-index: 9999;
  cursor: pointer;

  box-shadow: -2px 4px 12px rgba(0, 0, 0, 0.15);

  /* Animação suave de entrada ao passar o mouse */
  transition: right 0.3s ease, transform 0.3s ease, background-color 0.3s ease, border-radius 0.3s ease;
}

/* Ícone SVG Branco dentro do círculo */
.whatsapp-svg {
  width: 32px;
  height: 32px;
  fill: #FFFFFF !important;
  /* Ícone 100% branco */
}

/* Estado Hover: Desliza para dentro e fica 100% redondo */
.whatsapp-float-clean:hover {
  right: 20px;
  /* Entra totalmente na tela */
  border-radius: 50% !important;
  /* Fica um círculo perfeito */
  background-color: #20ba5a !important;
  /* Verde um pouco mais escuro no toque */
  transform: scale(1.08);
  /* Efeito suave de crescimento */
  box-shadow: -4px 6px 18px rgba(37, 211, 102, 0.4);
}

/* ============================================================
   CARROSSEL DE SERVIÇOS/ESPECIALIDADES (DESKTOP E MOBILE)
   ============================================================ */

.services-carrossel-wrapper {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

/* Transforma a grid em linha deslizante para todas as telas */
.grid-four-cards {
  display: flex !important;
  flex-wrap: nowrap !important;
  overflow-x: auto !important;
  scroll-snap-type: x mandatory !important;
  -webkit-overflow-scrolling: touch !important;
  gap: 20px !important;
  width: 100% !important;
  padding: 15px 5px 25px 5px !important;
  scroll-behavior: smooth !important;
}

/* Tamanho Fixo dos Cards no Desktop */
.grid-four-cards .style-card {
  flex: 0 0 300px !important;
  max-width: 300px !important;
  scroll-snap-align: center !important;
  box-sizing: border-box !important;
  background: var(--white, #ffffff);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* ============================================================
   CORREÇÃO DA IMAGEM DOS CARDS (ALTURA FIXA E PROPORCIONAL)
   ============================================================ */

/* Container da Imagem com Altura Fixa */
.service-thumb {
  position: relative !important;
  width: 100% !important;
  height: 180px !important;
  /* Define uma altura fixa proporcional (não encolhe mais) */
  flex-shrink: 0 !important;
  /* Impede o Flexbox de esmagar a imagem na vertical */
  overflow: hidden !important;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

/* Imagem Preenchendo Sem Distorcer */
.service-photo {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  /* Mantém a foto na proporção correta sem achatar */
  display: block !important;
}

/* Estilo da barra de rolagem laranja no Desktop */
.grid-four-cards::-webkit-scrollbar {
  height: 6px !important;
}

.grid-four-cards::-webkit-scrollbar-thumb {
  background: var(--primary-orange, #F37021) !important;
  border-radius: 10px !important;
}

/* ============================================================
   SETAS DE NAVEGAÇÃO LATERAL
   ============================================================ */
.seta-carrossel {
  
  
  
  
  /* Alterado de #ffffff para laranja */
  
  
  
  
  /* Aumentado levemente para destacar a seta sem o fundo */
  
  
  
  
  
  
  
}

.seta-carrossel:hover {
  
  /* Fica num tom de laranja mais escuro ao passar o mouse */
  
}

.seta-esquerda {
  
}

.seta-direita {
  
}

/* Ajustes no Celular (Mobile <= 768px) */
@media (max-width: 768px) {
  .grid-four-cards .style-card {
    flex: 0 0 82% !important;
    max-width: 82% !important;
  }

  .seta-esquerda {
    left: 2px;
  }

  .seta-direita {
    right: 2px;
  }

  /* Oculta a barra de rolagem no celular para ficar limpo */
  .grid-four-cards::-webkit-scrollbar {
    display: none !important;
  }

  .grid-four-cards {
    -ms-overflow-style: none !important;
    scrollbar-width: none !important;
  }
}

/* ============================================================
   SEÇÃO BLOG/ARTIGOS: GRADE NO DESKTOP E CARROSSEL NO MOBILE
   ============================================================ */

/* Configuração Padrão para Desktop (Computador/Notebook) */
#blog .grid-three-cards {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 2rem !important;
  width: 100% !important;
}

#blog .grid-three-cards>article,
#blog .grid-three-cards>.style-card {
  width: 100% !important;
  max-width: 100% !important;
  flex: none !important;
}

/* Transforma em Carrossel APENAS em telas de Celular (<= 768px) */
@media (max-width: 768px) {
  #blog .grid-three-cards {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 16px !important;
    padding-bottom: 20px !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
    justify-content: flex-start !important;
  }

  #blog .grid-three-cards>article,
  #blog .grid-three-cards>.style-card {
    flex: 0 0 85% !important;
    max-width: 85% !important;
    scroll-snap-align: center !important;
    box-sizing: border-box !important;
  }

  /* Esconde a barra de rolagem no celular para visual limpo */
  #blog .grid-three-cards::-webkit-scrollbar {
    display: none !important;
  }

  #blog .grid-three-cards {
    -ms-overflow-style: none !important;
    scrollbar-width: none !important;
  }
}

/* ============================================================
   ESTILOS DOS CARDS COM IMAGEM (21 MOTIVOS)
   ============================================================ */

.sozinho-card {
  flex: 0 0 280px !important;
  max-width: 280px !important;
  scroll-snap-align: center !important;
  background-color: #ffffff !important;
  padding: 1.2rem !important;
  border-radius: 16px !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05) !important;
  border: 1px solid rgba(243, 112, 33, 0.2) !important;
  box-sizing: border-box !important;
  
  
  
  
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sozinho-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(243, 112, 33, 0.15) !important;
}

/* Moldura e Ajuste das Fotos */
.sozinho-card .card-img-wrapper {
  width: 100%;
  height: 160px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 14px;
}

.sozinho-card .card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.sozinho-card:hover .card-img {
  transform: scale(1.06);
}

.sozinho-card p {
  font-size: 0.95rem;
  color: var(--text-dark, #2C2C2C);
  line-height: 1.45;
  
  font-weight: 500;
}

/* ==========================================================================
   SEÇÃO DETALHADA E CARDS DE EMDR
   ========================================================================== */

.emdr-detailed-section {
  padding: 4rem 2rem;
  background-color: var(--white);
}

.emdr-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  align-items: center;
  padding: 2.5rem;
  border: 1px solid rgba(243, 112, 33, 0.2);
}

.emdr-image-container {
  width: 100%;
  aspect-ratio: 3 / 2;
  border-radius: 14px;
  overflow: hidden;
}

.emdr-banner-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.card-tag-static {
  display: inline-block;
  background-color: var(--primary-orange);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.emdr-text-content h2 {
  color: var(--primary-red);
  font-size: 1.8rem;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.emdr-text-content p {
  color: var(--text-dark);
  font-size: 0.98rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.emdr-highlights {
  background-color: var(--bg-light);
  padding: 1.2rem;
  border-radius: 12px;
  margin: 1.2rem 0;
}

.emdr-highlights h4 {
  color: var(--primary-red);
  margin-bottom: 0.6rem;
  font-size: 1rem;
}

.emdr-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  padding: 0;
  margin: 0;
}

.emdr-list li {
  font-size: 0.9rem;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.emdr-action-box {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(243, 112, 33, 0.15);
}

.emdr-action-box p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

/* Responsividade para Celulares */
@media (max-width: 850px) {
  .emdr-container {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .emdr-list {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   ESTILOS ESPECÍFICOS PARA AS PÁGINAS DE ARTIGOS DO BLOG
   ========================================================================== */

.article-container {
  max-width: 800px;
  margin: 120px auto 60px;
  padding: 0 20px;
  line-height: 1.8;
}

.article-container .card-tag {
  position: relative;
  top: 0;
  left: 0;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.article-container h1 {
  color: var(--primary-red);
  margin: 15px 0 10px;
  font-size: 2.2rem;
  line-height: 1.3;
}

.article-container .card-date {
  margin-bottom: 30px;
  color: #666;
  font-size: 0.9rem;
}

.article-text {
  font-size: 1.1rem;
  color: var(--text-dark);
}

.article-text p {
  margin-bottom: 1.2rem;
}

.article-text h3 {
  color: var(--primary-orange);
  margin-top: 30px;
  margin-bottom: 12px;
  font-size: 1.4rem;
}

.article-text ul {
  padding-left: 1.5rem;
  margin: 15px 0 25px;
  list-style-type: disc;
}

.article-text ul li {
  margin-bottom: 8px;
  line-height: 1.6;
}

/* CAIXA DE DESTAQUE DO ARTIGO (USANDO A VARIÁVEL --bg-light) */
.article-cta-box {
  margin-top: 35px;
  background-color: var(--bg-light);
  padding: 22px;
  border-radius: 14px;
  border: none !important;
}

.article-cta-box strong {
  color: var(--text-dark);
}

.article-cta-box a {
  color: var(--primary-red);
  font-weight: bold;
  text-decoration: underline;
  display: inline-block;
  margin-top: 10px;
}

.btn-back-blog {
  display: inline-block;
  margin-top: 40px;
  color: var(--primary-orange);
  font-weight: bold;
  text-decoration: none;
  transition: color 0.2s ease;
}

.btn-back-blog:hover {
  color: var(--primary-red);
}

/* RESPONSIVIDADE PARA DISPOSITIVOS MÓVEIS */
@media (max-width: 768px) {
  .article-container {
    margin-top: 100px;
    margin-bottom: 40px;
  }

  .article-container h1 {
    font-size: 1.7rem;
  }
}

/* ============================================================
   ESTILOS RESPONSIVOS E CARROSSEL LATERAL PARA CELULAR
   ============================================================ */

/* Previne rolagens horizontais indesejadas na página */
html,
body {
  overflow-x: hidden;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* Remove o quadrado cinza ao tocar no iOS */
}

@media (max-width: 768px) {

  /* 1. NAVEGAÇÃO / HEADER */
  header#main-header .nav-container {
    padding: 10px 1rem !important;
  }

  /* 2. AJUSTES DA SEÇÃO HERO (SLIDER) */
  #inicio,
  .hero-carousel-section {
    padding-top: 80px !important;
  }

  .carousel-track-container,
  #heroTrack {
    width: 200% !important;
  }

  .hero-slide {
    flex-direction: column-reverse !important;
    /* Imagem no topo e texto embaixo */
    padding: 1.5rem 1rem !important;
    gap: 1.5rem !important;
    min-height: auto !important;
    text-align: center;
  }

  .hero-content {
    max-width: 100% !important;
  }

  .hero-slide h1 {
    font-size: 1.8rem !important;
    line-height: 1.25 !important;
  }

  .hero-slide p {
    font-size: 0.95rem !important;
    margin-bottom: 1.5rem !important;
  }

  .hero-slide>div[style*="aspect-ratio"] {
    flex: 0 0 auto !important;
    width: 80% !important;
    max-width: 280px !important;
    margin: 0 auto !important;
  }

  /* 3. CARROSSEL DESLIZANTE NO CELULAR (EQUIPE E NOSSO ESPAÇO) */
  .team-grid,
  .space-grid {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch;
    /* Rolagem suave no iOS */
    gap: 16px !important;
    padding-bottom: 20px !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  /* Deixa o card atual focado e um pedaço do próximo visível */
  .professional-card,
  .style-card {
    flex: 0 0 85% !important;
    max-width: 85% !important;
    scroll-snap-align: center !important;
  }

  /* Oculta as barras de rolagem nativas para visual de App */
  .team-grid::-webkit-scrollbar,
  .space-grid::-webkit-scrollbar {
    display: none !important;
  }

  .team-grid,
  .space-grid {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .professional-card>div[style*="aspect-ratio"] {
    max-height: 380px !important;
    /* Ajusta as fotos 9:16 na tela do celular */
  }

  /* 4. FORMULÁRIO DE TRIAGEM NO MOBILE */
  #triagem-profissional {
    padding: 40px 1rem !important;
  }

  #triagem-profissional>div {
    padding: 24px 16px !important;
    border-radius: 14px !important;
  }

  /* 5. ÁREAS DE TOQUE (TOUCH TARGETS) PARA BOTÕES */
  button,
  .btn-cta,
  a[style*="display: block"] {
    min-height: 48px !important;
    font-size: 1rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
}

/* Correção para evitar que as bolinhas do carrossel fiquem esticadas no mobile */
.carousel-dots button.dot,
.carousel-dots .dot {
  width: 12px !important;
  height: 12px !important;
  min-height: 12px !important;
  border-radius: 50% !important;
  padding: 0 !important;
  display: inline-block !important;
}

/* ============================================================
   CARROSSEL MOBILE PARA OS DEPOIMENTOS (APROVAÇÃO & CREDIBILIDADE)
   ============================================================ */
@media (max-width: 768px) {

  /* Transforma a grade de depoimentos em carrossel deslizante */
  .testimonials-grid {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    /* Rolagem suave no iOS */
    gap: 16px !important;
    padding-bottom: 15px !important;
    padding-left: 5px !important;
    padding-right: 5px !important;
  }

  /* Faz cada card de depoimento ocupar 85% e travar no centro */
  .testimonials-grid>.testimonial-card,
  .testimonial-card {
    flex: 0 0 85% !important;
    max-width: 85% !important;
    scroll-snap-align: center !important;
    box-sizing: border-box !important;
  }

  /* Esconde a barra de rolagem para dar visual de aplicativo */
  .testimonials-grid::-webkit-scrollbar {
    display: none !important;
  }

  .testimonials-grid {
    -ms-overflow-style: none !important;
    scrollbar-width: none !important;
  }
}

/* ============================================================
   ESTILO PARA DESKTOP (EQUIE DE TERAPEUTAS / CENTRALIZADO)
   ============================================================ */
.team-grid {
  display: flex;
  justify-content: center;
  /* Centraliza os 2 containers/cards na tela */
  align-items: stretch;
  flex-wrap: wrap;
  /* Permite quebra se a tela for menor */
  gap: 30px;
  /* Espaçamento entre os dois cards */
  max-width: 1200px;
  margin: 0 auto;
  /* Centraliza o container pai na página */
  width: 100%;
}


/* ============================================================
   CARROSSEL MOBILE PARA PROFISSIONAIS (EQUIPE DE TERAPEUTAS)
   ============================================================ */
@media (max-width: 768px) {

  /* Transforma a grade dos profissionais em carrossel deslizante */
  .team-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    /* Impede que os cards fiquem um embaixo do outro */
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    /* Rolagem suave no iOS */
    gap: 16px !important;
    padding-bottom: 20px !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
    justify-content: flex-start !important;
  }

  /* Faz cada card dos profissionais ocupar 85% e travar ao deslizar */
  .team-grid>.professional-card,
  .professional-card {
    flex: 0 0 85% !important;
    max-width: 85% !important;
    scroll-snap-align: center !important;
    box-sizing: border-box !important;
  }

  /* Oculta a barra de rolagem nativa */
  .team-grid::-webkit-scrollbar {
    display: none !important;
  }

  .team-grid {
    -ms-overflow-style: none !important;
    scrollbar-width: none !important;
  }
}

/* ============================================================
   CARROSSEL MOBILE PARA CONTEÚDOS & BEM-ESTAR (BLOG)
   ============================================================ */
@media (max-width: 768px) {

  /* Transforma o container de 3 cards do blog em carrossel deslizante */
  #blog .grid-three-cards {
    display: flex !important;
    flex-wrap: nowrap !important;
    /* Impede que os artigos fiquem empilhados */
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    /* Rolagem fluida no iPhone/iOS */
    gap: 16px !important;
    padding-bottom: 20px !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
    justify-content: flex-start !important;
  }

  /* Faz cada artigo ocupar 85% da tela com o próximo visível no canto */
  #blog .grid-three-cards>article,
  #blog .grid-three-cards>.style-card {
    flex: 0 0 85% !important;
    max-width: 85% !important;
    scroll-snap-align: center !important;
    box-sizing: border-box !important;
  }

  /* Esconde a barra de rolagem para dar acabamento de aplicativo */
  #blog .grid-three-cards::-webkit-scrollbar {
    display: none !important;
  }

  #blog .grid-three-cards {
    -ms-overflow-style: none !important;
    scrollbar-width: none !important;
  }
}

/* ============================================================
   CARROSSEL MOBILE PARA "COMO FUNCIONA O SEU ATENDIMENTO?"
   ============================================================ */
@media (max-width: 768px) {

  /* Transforma a grade dos passos de atendimento em carrossel deslizante */
  #como-funciona .grid-three-cards {
    display: flex !important;
    flex-wrap: nowrap !important;
    /* Impede que os passos empilhem na vertical */
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    /* Rolagem fluida e suave no iOS */
    gap: 16px !important;
    padding-bottom: 20px !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
    justify-content: flex-start !important;
  }

  /* Faz cada passo ocupar 85% da tela para indicar o deslize do próximo */
  #como-funciona .grid-three-cards>article,
  #como-funciona .grid-three-cards>.style-card {
    flex: 0 0 85% !important;
    max-width: 85% !important;
    scroll-snap-align: center !important;
    box-sizing: border-box !important;
  }

  /* Oculta as barras de rolagem nativas */
  #como-funciona .grid-three-cards::-webkit-scrollbar {
    display: none !important;
  }

  #como-funciona .grid-three-cards {
    -ms-overflow-style: none !important;
    scrollbar-width: none !important;
  }
}

/* ============================================================
   ESTILIZAÇÃO DA BARRA DE INÍCIO (HEADER & MENU)
   ============================================================ */

/* Container Principal do Header */
#main-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  background-color: #ffffff !important;
  
  z-index: 1000 !important;
  display: block !important;
}

.nav-container {
  
  margin: 0 auto;
  padding: 12px 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-img {
  height: 75px;
  width: auto;
  display: block;
}

/* Links para Computador / Desktop */
.nav-links {
  display: flex;
  align-items: center;
  
  list-style: none;
  margin: 0;
  padding: 0;
}

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

.nav-links a:hover {
  color: #F37021;
}

/* Botão de Destaque CTA */
.nav-links .btn-cta {
  background-color: #F37021;
  color: #ffffff !important;
  
  border-radius: 20px;
  font-weight: bold;
  transition: transform 0.2s ease, opacity 0.3s ease;
}

.nav-links .btn-cta:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* Oculta o botão hambúrguer no computador */
.hamburger-btn {
  display: none;
}

/* ============================================================
   AJUSTES RESPONSIVOS PARA CELULAR (<= 768px)
   ============================================================ */
@media (max-width: 768px) {

  .hamburger-btn {
    display: flex !important;
    flex-direction: column !important;
    width: 30px !important;
    height: auto !important;
    /* Libera a altura para o gap controlar */

    /* ⬇️ ALTERE ESTE VALOR PARA DIMINUIR O ESPAÇAMENTO ENTRE ELES ⬇️ */
    gap: 3px !important;
    /* Use 2px ou 3px para ficarem bem juntinhos */

    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    cursor: pointer !important;
    z-index: 1001;
  }

  .hamburger-btn span {
    width: 100% !important;
    height: 3px !important;
    /* Espessura de cada linha */
    background-color: #F37021 !important;
    border-radius: 3px !important;
    display: block !important;
    margin: 0 !important;
    /* Remove qualquer margem invisível */
  }

  /* Esconde o menu e transforma em gaveta deslizante */
  .nav-links {
    position: fixed !important;
    top: 65px !important;
    left: 0 !important;
    width: 100% !important;
    background-color: #ffffff !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 1.2rem !important;
    padding: 2rem 1rem !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
    transform: translateY(-150%) !important;
    transition: transform 0.4s ease-in-out, opacity 0.3s ease !important;
    opacity: 0;
    pointer-events: none;
  }

  /* Estado ativado ao clicar no menu no celular */
  .nav-links.active {
    transform: translateY(0) !important;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-links a {
    display: block;
    font-size: 1.1rem;
    padding: 8px 0;
  }
}

/* ============================================================
   CENTRALIZAÇÃO DO CONTAINER DE AVALIAÇÕES DO GOOGLE
   ============================================================ */
.sua-classe-de-avaliacoes {
  /* 1. Centraliza o container principal na página */
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: 1200px;
  /* Ou a largura máxima que você usa nas seções */
  width: 100%;

  /* 2. Centraliza os elementos e cards dentro do container */
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
}

/* ============================================================
   CORREÇÃO DOS BOTÕES DOS CARDS (SEM ESTICAR)
   ============================================================ */

/* Impede que o corpo do card estique seus elementos filhos */
.style-card .card-body {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  /* Alinha o botão à esquerda sem esticar na largura */
  justify-content: space-between !important;
  height: 100% !important;
}

/* Garante o tamanho correto do botão */
.style-card .card-link {
  display: inline-block !important;
  align-self: flex-start !important;
  /* Impede o alinhamento de esticar (stretch) do Flexbox */
  margin-top: auto !important;
  /* Empurra o botão de forma limpa para o final do card */
  height: auto !important;
  /* Impede que o botão estique na vertical */
  padding: 8px 16px !important;
  text-decoration: none !important;
  font-weight: 600 !important;
}

/* ============================================================
   ESTILIZAÇÃO GERAL DE CARROSSEIS E SETAS
   ============================================================ */

.carrossel-wrapper {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

/* Transforma qualquer grid de cards listada em carrossel deslizante */
#espacoGrid,
#depoimentosGrid,
#profissionaisGrid,
#sozinhoGrid,
#blogGrid,
#comoFuncionaGrid,
.grid-carrossel-geral {
  display: flex !important;
  flex-wrap: nowrap !important;
  overflow-x: auto !important;
  scroll-snap-type: x mandatory !important;
  -webkit-overflow-scrolling: touch !important;
  gap: 20px !important;
  width: 100% !important;
  padding: 15px 5px 25px 5px !important;
  scroll-behavior: smooth !important;
}

/* Largura fixa dos cartões no carrossel no PC */
#espacoGrid>div,
#espacoGrid>article,
#depoimentosGrid>div,
#depoimentosGrid>article,
#profissionaisGrid>div,
#profissionaisGrid>article,
#sozinhoGrid>div,
#sozinhoGrid>article,
#blogGrid>div,
#blogGrid>article,
#comoFuncionaGrid>div,
#comoFuncionaGrid>article {
  flex: 0 0 300px !important;
  max-width: 300px !important;
  scroll-snap-align: center !important;
  box-sizing: border-box !important;
}

/* Barra de rolagem laranja no PC */
.carrossel-wrapper div::-webkit-scrollbar {
  height: 6px !important;
}

.carrossel-wrapper div::-webkit-scrollbar-thumb {
  background: var(--primary-orange, #F37021) !important;
  border-radius: 10px !important;
}

/* Setas de navegação */
.seta-carrossel {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  
  
  
  /* Remove o fundo/cor cinza */
  
  /* Remove a sombra do botão */
  width: auto;
  /* Ajusta a largura apenas para o tamanho da seta */
  height: auto;
  /* Ajusta a altura */
  font-size: 1.8rem;
  /* Aumentado para a seta se destacar sem a bola */
  font-weight: bold;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, color 0.2s;
}

.seta-carrossel:hover {
  color: #d95e12;
  transform: translateY(-50%) scale(1.08);
}

.seta-esquerda {
  left: -12px;
}

.seta-direita {
  right: -12px;
}

/* Ajustes no Celular */
@media (max-width: 768px) {

  #espacoGrid>div,
  #depoimentosGrid>div,
  #profissionaisGrid>div,
  #sozinhoGrid>div,
  #blogGrid>div,
  #comoFuncionaGrid>div {
    flex: 0 0 85% !important;
    max-width: 85% !important;
  }

  .seta-carrossel {
    width: 26px;
    /* Ainda mais compacto no mobile */
    height: 26px;
    font-size: 0.8rem;
  }

  .seta-esquerda {
    left: 2px;
  }

  .seta-direita {
    right: 2px;
  }

  /* Esconde barras de rolagem no celular */
  .carrossel-wrapper div::-webkit-scrollbar {
    display: none !important;
  }

  .carrossel-wrapper div {
    -ms-overflow-style: none !important;
    scrollbar-width: none !important;
  }
}

/* ============================================================
   SEÇÃO: VOCÊ NÃO PRECISA ENFRENTAR ISSO SOZINHO (ESTILIZAÇÃO)
   ============================================================ */

/* 1. Tag de Destaque no Topo */
.sozinho-header .sozinho-tag {
  display: inline-block;
  background-color: rgba(243, 112, 33, 0.12);
  color: var(--primary-orange, #F37021);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

/* 2. Título Principal */
.sozinho-header h2 {
  font-size: 2.3rem;
  color: var(--primary-red, #D30815);
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1.25;
}

.sozinho-header h2 span {
  color: var(--primary-orange, #F37021);
  position: relative;
}

/* 3. Subtítulo (Sobre-título) */
.sozinho-header p {
  font-size: 1.2rem;
  color: #555555;
  font-weight: 600;
  margin: 0 auto 30px auto;
  max-width: 600px;
}

/* 4. Ícones dos Cards do Carrossel */
.sozinho-card .card-icon {
  font-size: 2.4rem;
  margin-bottom: 14px;
  display: inline-block;
  transition: transform 0.2s ease;
}

.sozinho-card:hover .card-icon {
  transform: scale(1.15);
}

/* 5. Área do Botão de Chamada para Ação (CTA) */
.sozinho-cta-container {
  margin-top: 40px;
  
  
  
  
  
  
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.sozinho-cta-text {
  
  
  font-weight: 600;
  margin-bottom: 18px;
  line-height: 1.4;
}

.btn-sozinho-cta {
  display: inline-block;
  background-color: var(--primary-orange, #F37021);
  
  font-weight: 700;
  font-size: 1.05rem;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  
  transition: all 0.3s ease;
}

.btn-sozinho-cta:hover {
  background-color: #d95e12;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(243, 112, 33, 0.4);
}

/* Ajuste Mobile */
@media (max-width: 768px) {
  .sozinho-header h2 {
    font-size: 1.8rem;
  }

  .sozinho-header p {
    font-size: 1.05rem;
  }

  .btn-sozinho-cta {
    width: 100%;
    box-sizing: border-box;
    font-size: 0.95rem;
    padding: 14px 16px;
  }
}

/* ============================================================
   CENTRALIZAÇÃO DE TEXTOS - SEÇÃO "VOCÊ NÃO PRECISA ENFRENTAR ISSO SOZINHO"
   ============================================================ */

/* Centraliza o cabeçalho completo (tag, título e subtítulo) */
.sozinho-header {
  text-align: center !important;
}

/* Centraliza o conteúdo dentro de cada card do carrossel (ícone + texto) */
.sozinho-card {
  text-align: center !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
}

.sozinho-card p {
  text-align: center !important;
  margin: 0 auto !important;
}

/* Centraliza a caixa do botão CTA e o texto de apoio */
.sozinho-cta-container {
  text-align: center !important;
}

.sozinho-cta-text {
  text-align: center !important;
}

/* ==========================================================================
   REFINAMENTO 2026 — UX, RESPONSIVIDADE E ACESSIBILIDADE
   ========================================================================== */
html {
  scroll-padding-top: 88px;
}

body {
  
}

body.modal-open {
  overflow: hidden;
}

:focus-visible {
  outline: 3px solid rgba(243, 112, 33, .45);
  outline-offset: 3px;
}

#main-header {
  transition: box-shadow .25s ease, border-color .25s ease;
  
}

#main-header.scrolled {
  
}

.logo-container {
  display: inline-flex;
  align-items: center;
}

.nav-links a {
  position: relative;
}

.nav-links>li:not(:last-child)>a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 2px;
  background: var(--primary-orange);
  transition: right .2s ease;
}

.nav-links>li:not(:last-child)>a:hover::after {
  right: 0;
}

.btn-cta {
  
}

.hero-carousel-section {
  background: linear-gradient(180deg, #fff 0%, #fffaf7 100%) !important;
}

.hero-slide {
  width: 50% !important;
}

.hero-slide .hero-content h1 {
  
  
}

.hero-slide .hero-content p {
  
  max-width: 54ch;
}

.carousel-dots .dot {
  padding: 0;
  opacity: .58;
  transition: transform .2s ease, opacity .2s ease, background-color .2s ease !important;
}

.carousel-dots .dot.active {
  opacity: 1;
  
  background: var(--primary-orange) !important;
}

section {
  scroll-margin-top: 86px;
}

.section-title h2,
.sozinho-header h2 {
  
}

.style-card,
.professional-card,
.testimonial-card,
.google-rating-card {
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.style-card:hover,
.professional-card:hover,
.testimonial-card:hover {
  border-color: rgba(243, 112, 33, .28);
}

/* Modal controlado por classe, sem estilos inline no JS. */
.respiracao-modal {
  display: flex;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, visibility .22s ease;
}

.respiracao-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.respiracao-modal .respiracao-content {
  transform: translateY(10px) scale(.98);
  transition: transform .22s ease;
}

.respiracao-modal.is-open .respiracao-content {
  transform: none;
}

#logo-pulsante {
  transition: transform 4s ease-in-out;
}

#instrucao-respiracao[data-phase="inspire"] {
  color: var(--primary-orange);
}

#instrucao-respiracao[data-phase="hold"] {
  color: var(--primary-red);
}

#instrucao-respiracao[data-phase="exhale"] {
  color: #2e7d32;
}

#btn-iniciar-exercicio.is-running {
  background: var(--primary-red);
}

/* Hamburger real e acessível. */
.hamburger-btn {
  background: transparent;
  border: 0;
  cursor: pointer;
}

.hamburger-btn span {
  transition: transform .22s ease, opacity .22s ease;
}

.hamburger-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger-btn.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 900px) {
  .nav-links {
    gap: 1rem;
  }

  .nav-links a {
    font-size: .94rem;
  }
}

@media (max-width: 768px) {
  html {
    scroll-padding-top: 74px;
  }

  section {
    scroll-margin-top: 72px;
  }

  #main-header .nav-container {
    min-height: 68px;
  }

  .logo-img {
    max-height: 44px;
  }

  .nav-links {
    display: flex !important;
    position: fixed;
    top: 68px;
    left: 12px;
    right: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, .98);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(42, 42, 42, .07);
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(42, 42, 42, .14);
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    max-height: calc(100dvh - 84px);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  }

  .nav-links.active {
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 11px 12px;
    border-radius: 12px;
  }

  .nav-links a:hover {
    background: #fff6f1;
  }

  .nav-links .btn-cta {
    text-align: center;
    margin-top: 4px;
  }

  .nav-links>li:not(:last-child)>a::after {
    display: none;
  }

  #inicio.hero-carousel-section {
    padding-top: 68px !important;
  }

  .hero-slide {
    padding: 1.25rem 1rem 1.5rem !important;
    gap: 1rem !important;
  }

  .hero-slide>div:last-child {
    flex: 0 0 auto !important;
    width: min(78vw, 330px) !important;
  }

  .hero-slide .hero-content h1 {
    font-size: clamp(2rem, 9vw, 2.55rem) !important;
    margin-bottom: .8rem !important;
  }

  .hero-slide .hero-content p {
    font-size: 1rem !important;
    margin-bottom: 1.35rem !important;
  }

  .carousel-dots {
    padding-top: 5px !important;
  }

  #nossa-historia,
  #nosso-espaco,
  .reviews-section,
  .team-section,
  .services,
  #triagem-profissional,
  .emdr-detailed-section,
  .sozinho-section,
  .blog-section,
  .how-it-works,
  .location-section {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .btn-respirar-flutuante {
    left: 16px;
    transform: none;
    bottom: 16px;
    padding: .65rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
  }

  .btn-respirar-flutuante:hover {
    transform: translateY(-2px);
  }

  .btn-respirar-flutuante span {
    display: none;
  }

  .whatsapp-float-clean {
    bottom: 16px;
    width: 50px;
    height: 50px;
  }

  .seta-carrossel {
    display: none !important;
  }
}

@media (max-width: 420px) {
  .hero-slide>div:last-child {
    width: min(82vw, 300px) !important;
  }

  .hero-slide .btn-cta {
    width: 100%;
    text-align: center;
  }

  .section-title h2,
  .sozinho-header h2 {
    font-size: 1.75rem !important;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* ==========================================================================
   REDESIGN VISUAL V2 — CLÍNICA SELF
   ========================================================================== */
:root {
  --brand-red: #c51f2d;
  --brand-orange: #ef6f2e;
  --brand-cream: #fff8f2;
  --brand-soft: #fdf2ec;
  --brand-ink: #26211f;
  --brand-muted: #6f6762;
  --surface: #ffffff;
  --line: rgba(82, 54, 42, .10);
  --shadow-sm: 0 8px 24px rgba(82, 54, 42, .07);
  --shadow-md: 0 18px 50px rgba(82, 54, 42, .11);
  --radius-lg: 28px;
  --radius-md: 20px;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--surface) !important;
  color: var(--brand-ink);
  overflow-x: hidden;
}

body::selection {
  background: rgba(239, 111, 46, .18);
}

/* Header mais leve e premium */
#main-header {
  background: rgba(255, 255, 255, .92) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(82, 54, 42, .07) !important;
  box-shadow: none !important;
}

#main-header.scrolled {
  box-shadow: 0 12px 35px rgba(82, 54, 42, .09) !important;
}

.nav-container {
  max-width: 1240px;
  padding-top: .72rem;
  padding-bottom: .72rem;
}

.logo-img {
  max-height: 54px;
  border-radius: 10px;
}

.nav-links {
  gap: 1.35rem;
}

.nav-links a {
  font-size: .94rem;
  font-weight: 600;
  color: #403936;
}

.nav-links .btn-cta {
  padding: .78rem 1.18rem;
}

.btn-cta {
  background: linear-gradient(135deg, var(--brand-orange), #e85d22) !important;
  border-radius: 999px !important;
  padding: .82rem 1.4rem;
  box-shadow: 0 10px 25px rgba(239, 111, 46, .24) !important;
  border: 1px solid rgba(255, 255, 255, .25);
}

.btn-cta:hover {
  background: linear-gradient(135deg, #e85d22, var(--brand-red)) !important;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .79rem 1.3rem;
  border-radius: 999px;
  border: 1px solid rgba(197, 31, 45, .18);
  background: rgba(255, 255, 255, .72);
  color: var(--brand-red);
  font-weight: 700;
  text-decoration: none;
  transition: .2s ease;
}

.btn-secondary:hover {
  transform: translateY(-2px);
  background: #fff;
  border-color: rgba(197, 31, 45, .30);
}

/* Hero */
#inicio.hero-carousel-section {
  padding-top: 92px !important;
  background:
    radial-gradient(circle at 86% 24%, rgba(255, 194, 14, .13), transparent 29%),
    radial-gradient(circle at 10% 74%, rgba(239, 111, 46, .09), transparent 31%),
    linear-gradient(180deg, #fff 0%, #fffaf6 100%) !important;
}

#heroTrack {
  position: relative;
}

.hero-slide {
  min-height: 610px !important;
  padding: 4.2rem 2rem 3rem !important;
  gap: 5rem !important;
  max-width: 1240px !important;
}

.hero-slide .hero-content {
  max-width: 610px !important;
  position: relative;
  z-index: 2;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin-bottom: 1rem;
  padding: .45rem .85rem;
  border-radius: 999px;
  color: var(--brand-red);
  background: rgba(197, 31, 45, .07);
  border: 1px solid rgba(197, 31, 45, .10);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.hero-slide .hero-content h1 {
  color: var(--brand-ink) !important;
  font-size: clamp(2.8rem, 5vw, 4.45rem) !important;
  line-height: 1.01 !important;
  letter-spacing: -.055em !important;
  margin-bottom: 1.25rem !important;
  font-weight: 800;
}

.hero-slide .hero-content h1 span {
  color: var(--brand-orange) !important;
}

.hero-slide .hero-content p {
  font-size: 1.12rem !important;
  line-height: 1.75 !important;
  color: var(--brand-muted) !important;
  margin-bottom: 1.6rem !important;
}

.hero-actions {
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
  align-items: center;
}

.hero-trust {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.35rem;
  color: #756a64;
  font-size: .88rem;
  font-weight: 600;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
}

.hero-slide>div:last-child {
  flex: 0 0 455px !important;
  border-radius: 46% 54% 49% 51% / 42% 44% 56% 58%;
  background: linear-gradient(145deg, rgba(239, 111, 46, .10), rgba(255, 194, 14, .08));
  box-shadow: 0 30px 75px rgba(91, 56, 43, .12);
}

.hero-slide>div:last-child img {
  -webkit-mask-image: none !important;
  mask-image: none !important;
  border-radius: inherit;
  transform: scale(1.015);
}

.carousel-dots {
  padding: 0 0 28px !important;
}

.carousel-dots .dot {
  width: 9px !important;
  height: 9px !important;
}

.carousel-dots .dot.active {
  width: 30px !important;
  border-radius: 999px !important;
  transform: none;
}

.trust-strip {
  background: #fff;
  padding: 0 2rem 2.2rem;
}

.trust-strip-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, .96);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.trust-strip-inner>div {
  padding: 1.1rem 1.4rem;
  text-align: center;
}

.trust-strip-inner>div+div {
  border-left: 1px solid var(--line);
}

.trust-strip strong {
  display: block;
  color: var(--brand-red);
  font-size: .95rem;
  margin-bottom: .1rem;
}

.trust-strip span {
  color: var(--brand-muted);
  font-size: .88rem;
}

/* Ritmo e hierarquia das seções */
.story-section,
.space-section,
.reviews-section-modern,
.team-section-modern,
.services-section-modern,
.triage-section-modern,
.emdr-section-modern,
.support-section-modern,
.blog-section-modern,
.steps-section-modern,
.location-section-modern {
  padding-top: 96px !important;
  padding-bottom: 96px !important;
}

.story-section,
.services-section-modern,
.support-section-modern,
.steps-section-modern {
  background: linear-gradient(180deg, #fff9f5 0%, #fff6f0 100%) !important;
}

.space-section,
.reviews-section-modern,
.team-section-modern,
.blog-section-modern,
.location-section-modern {
  background: #fff !important;
}

.section-title {
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3.2rem !important;
}

.section-title h2,
.sozinho-header h2 {
  color: var(--brand-ink) !important;
  font-size: clamp(2rem, 3.5vw, 2.8rem) !important;
  line-height: 1.08 !important;
  letter-spacing: -.04em !important;
}

.section-title p,
.sozinho-header p {
  color: var(--brand-muted) !important;
  line-height: 1.7;
}

.card-tag,
.sozinho-tag {
  background: rgba(239, 111, 46, .09) !important;
  color: var(--brand-orange) !important;
  border: 1px solid rgba(239, 111, 46, .12);
  font-size: .74rem !important;
  letter-spacing: .08em !important;
  padding: .45rem .8rem !important;
}

/* História */
.story-section>div {
  max-width: 1180px !important;
  gap: 70px !important;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 54px !important;
  box-shadow: var(--shadow-sm);
}

.story-section h2 {
  color: var(--brand-ink) !important;
  font-size: clamp(2rem, 3vw, 2.7rem) !important;
  letter-spacing: -.04em;
}

.story-section p {
  color: var(--brand-muted) !important;
  line-height: 1.78 !important;
}

.story-section>div>div:last-child {
  position: relative;
}

.story-section>div>div:last-child::before {
  content: "";
  position: absolute;
  inset: 10% 4% 2% 8%;
  border-radius: 48% 52% 58% 42%;
  background: linear-gradient(145deg, rgba(239, 111, 46, .10), rgba(255, 194, 14, .10));
  z-index: 0;
}

.story-section img {
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 20px 25px rgba(82, 54, 42, .10)) !important;
}

/* Cards consistentes */
.style-card,
.professional-card,
.testimonial-card,
.google-rating-card,
.sozinho-card {
  border: 1px solid var(--line) !important;
  border-radius: var(--radius-md) !important;
  box-shadow: var(--shadow-sm) !important;
  background: #fff !important;
}

.style-card:hover,
.professional-card:hover,
.testimonial-card:hover,
.sozinho-card:hover {
  transform: translateY(-7px) !important;
  box-shadow: var(--shadow-md) !important;
}

.style-card img {
  transition: transform .45s ease;
}

.style-card:hover img {
  transform: scale(1.035);
}

.style-card h3,
.professional-card h3 {
  color: var(--brand-ink) !important;
  letter-spacing: -.02em;
}

.style-card p,
.professional-card p,
.testimonial-card p {
  color: var(--brand-muted) !important;
}

/* Formulário de triagem */
.triage-section-modern>div {
  max-width: 900px !important;
  background: #fff !important;
  border: 1px solid var(--line) !important;
  border-radius: 30px !important;
  box-shadow: var(--shadow-md) !important;
  padding: 48px !important;
}

#formTriagem input,
#formTriagem select,
#formTriagem textarea {
  border: 1px solid rgba(82, 54, 42, .16) !important;
  border-radius: 14px !important;
  background: #fffdfa !important;
  min-height: 48px;
  transition: border-color .2s ease, box-shadow .2s ease;
}

#formTriagem input:focus,
#formTriagem select:focus,
#formTriagem textarea:focus {
  border-color: rgba(239, 111, 46, .55) !important;
  box-shadow: 0 0 0 4px rgba(239, 111, 46, .10) !important;
  outline: none;
}

/* CTA apoio */
.sozinho-cta-container {
  border: 0 !important;
  border-radius: 26px !important;
  padding: 36px 30px !important;
  background: linear-gradient(135deg, var(--brand-red), #e75a31) !important;
  box-shadow: 0 22px 48px rgba(197, 31, 45, .18) !important;
}

.sozinho-cta-text {
  color: #fff !important;
  font-size: 1.15rem !important;
}

.btn-sozinho-cta {
  background: #fff !important;
  color: var(--brand-red) !important;
  box-shadow: none !important;
}

/* Localização e rodapé */
.location-section-modern iframe {
  border-radius: 24px !important;
  box-shadow: var(--shadow-sm);
}

.main-footer {
  background: #2d2421 !important;
}

.main-footer a {
  transition: color .2s ease, opacity .2s ease;
}

.main-footer a:hover {
  color: #ffb282 !important;
}

/* Carrosséis horizontais com sensação mais limpa */
.grid-carrossel-geral {
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 8px;
}

.grid-carrossel-geral>* {
  scroll-snap-align: start;
}

.seta-carrossel {
  border: 1px solid var(--line) !important;
  background: rgba(255, 255, 255, .95) !important;
  box-shadow: 0 8px 22px rgba(82, 54, 42, .10) !important;
  color: var(--brand-red) !important;
}

@media (max-width: 900px) {
  .hero-slide {
    gap: 2.2rem !important;
  }

  .hero-slide>div:last-child {
    flex-basis: 390px !important;
  }

  .story-section>div {
    padding: 38px !important;
    gap: 38px !important;
  }
}

@media (max-width: 768px) {
  #inicio.hero-carousel-section {
    padding-top: 68px !important;
  }

  .hero-slide {
    min-height: auto !important;
    padding: 3.1rem 1rem 2rem !important;
    flex-direction: column !important;
    text-align: left !important;
  }

  .hero-slide .hero-content {
    max-width: 100% !important;
  }

  .hero-slide .hero-content h1 {
    font-size: clamp(2.45rem, 12vw, 3.55rem) !important;
  }

  .hero-slide>div:last-child {
    width: min(88vw, 390px) !important;
    flex-basis: auto !important;
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-actions .btn-cta,
  .hero-actions .btn-secondary {
    flex: 1 1 100%;
    text-align: center;
  }

  .hero-trust {
    gap: .55rem 1rem;
  }

  .trust-strip {
    padding: 0 1rem 1.5rem;
  }

  .trust-strip-inner {
    grid-template-columns: 1fr;
  }

  .trust-strip-inner>div+div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .story-section,
  .space-section,
  .reviews-section-modern,
  .team-section-modern,
  .services-section-modern,
  .triage-section-modern,
  .emdr-section-modern,
  .support-section-modern,
  .blog-section-modern,
  .steps-section-modern,
  .location-section-modern {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
  }

  .story-section>div {
    padding: 28px 20px !important;
    border-radius: 24px;
  }

  .triage-section-modern>div {
    padding: 28px 18px !important;
    border-radius: 24px !important;
  }
}

@media (max-width: 430px) {
  .nav-container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .logo-img {
    max-height: 45px;
  }

  .hero-kicker {
    font-size: .67rem;
  }

  .hero-slide .hero-content p {
    font-size: 1rem !important;
  }

  .hero-trust {
    display: grid;
  }
}

/* ==========================================================================
   AJUSTE FINAL — LOGO DO CABEÇALHO
   Uma única regra final evita conflitos com estilos antigos.
   ========================================================================== */
#main-header .logo-img {
  height: 75px;
  max-height: 75px;
  width: auto;
  display: block;
}

@media (max-width: 768px) {
  #main-header .logo-img {
    height: 52px;
    max-height: 52px;
  }
}


/* ==========================================================================\n   NOSSO ESPAÇO — COMPOSIÇÃO PREMIUM\n   ========================================================================== */
.our-space-premium {
  padding: 96px 2rem;
  background: linear-gradient(180deg, #fff 0%, #fffaf7 100%);
}

.our-space-premium__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.our-space-premium__heading {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 42px;
}

.our-space-premium__eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--primary-orange, #F37021);
}

.our-space-premium__heading h2 {
  margin: 0;
  max-width: 620px;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 1.08;
  color: var(--text-dark, #2A2A2A);
}

.our-space-premium__heading p {
  margin: 0;
  font-size: 1.06rem;
  line-height: 1.8;
  color: #626262;
}

.our-space-premium__gallery {
  display: grid;
  grid-template-columns: 1.55fr .85fr;
  gap: 18px;
  min-height: 620px;
}

.our-space-premium figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 26px;
  background: #f3f3f3;
  box-shadow: 0 18px 50px rgba(54, 37, 27, .10);
}

.our-space-premium figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(18, 14, 12, .72) 100%);
  pointer-events: none;
}

.our-space-premium figure img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .55s ease;
}

.our-space-premium figure:hover img {
  transform: scale(1.025);
}

.our-space-premium__main img {
  object-position: center;
}

.our-space-premium__side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 18px;
}

.our-space-premium figcaption {
  position: absolute;
  z-index: 2;
  left: 28px;
  right: 28px;
  bottom: 26px;
  color: #fff;
}

.our-space-premium figcaption span {
  display: block;
  margin-bottom: 6px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .9;
}

.our-space-premium figcaption strong {
  display: block;
  max-width: 520px;
  font-size: 1.25rem;
  line-height: 1.35;
}

.our-space-premium__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  margin-top: 28px;
  padding: 24px 28px;
  border: 1px solid rgba(243, 112, 33, .12);
  border-radius: 20px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 10px 30px rgba(54, 37, 27, .05);
}

.our-space-premium__benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  color: #555;
  font-size: .94rem;
}

.our-space-premium__benefits span::first-letter {
  color: var(--primary-orange, #F37021);
}

.our-space-premium__button {
  flex: 0 0 auto;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .our-space-premium {
    padding: 72px 1.25rem;
  }

  .our-space-premium__heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .our-space-premium__gallery {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .our-space-premium__main {
    aspect-ratio: 4 / 3;
  }

  .our-space-premium__side {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
  }

  .our-space-premium__side figure {
    aspect-ratio: 4 / 3;
  }

  .our-space-premium__footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .our-space-premium__side {
    grid-template-columns: 1fr;
  }

  .our-space-premium__main,
  .our-space-premium__side figure {
    aspect-ratio: 4 / 3;
  }

  .our-space-premium figure {
    border-radius: 20px;
  }

  .our-space-premium figcaption {
    left: 20px;
    right: 20px;
    bottom: 18px;
  }

  .our-space-premium figcaption strong {
    font-size: 1.05rem;
  }

  .our-space-premium__footer {
    padding: 20px;
  }

  .our-space-premium__button {
    width: 100%;
    text-align: center;
  }
}


/* ==========================================================================\n   V3 - CONVERSAO / ESCOLHA DE CUIDADO\n   ========================================================================== */
.help-now-section { padding: 78px 2rem; background: #fff; }
.help-now-inner { max-width: 1180px; margin: 0 auto; }
.help-now-heading { max-width: 760px; margin: 0 auto 34px; text-align: center; }
.help-now-eyebrow { display: inline-block; margin-bottom: 10px; padding: 7px 14px; border-radius: 999px; background: rgba(243,112,33,.10); color: var(--primary-orange,#F37021); font-size: .78rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.help-now-heading h2 { margin: 0 0 12px; color: var(--primary-red,#D30815); font-size: clamp(2rem,4vw,2.7rem); line-height: 1.12; }
.help-now-heading p { margin: 0; color: #5c5c5c; font-size: 1.05rem; line-height: 1.65; }
.help-now-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 16px; }
.help-now-card { min-height: 150px; padding: 22px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 7px; color: #2a2a2a; text-decoration: none; background: #fffaf7; border: 1px solid rgba(243,112,33,.16); border-radius: 20px; box-shadow: 0 8px 28px rgba(35,25,20,.05); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.help-now-card:hover { transform: translateY(-4px); box-shadow: 0 14px 32px rgba(243,112,33,.12); border-color: rgba(243,112,33,.38); }
.help-now-icon { font-size: 1.55rem; line-height: 1; }
.help-now-card strong { color: #343434; font-size: 1.04rem; }
.help-now-card small { color: #6b6b6b; font-size: .9rem; line-height: 1.4; }
.help-now-card--primary { background: linear-gradient(135deg,var(--primary-orange,#F37021),#df5516); border-color: transparent; }
.help-now-card--primary strong,.help-now-card--primary small { color: #fff; }
.help-now-card--primary .help-now-icon { filter: grayscale(1) brightness(5); }
.help-now-note { margin: 22px 0 0; text-align: center; color: #6b6b6b; font-size: .92rem; }
.mobile-contact-bar { display: none; }
@media (max-width: 850px) { .help-now-grid { grid-template-columns: repeat(2,minmax(0,1fr)); } }
@media (max-width: 620px) {
  .help-now-section { padding: 58px 1.15rem; }
  .help-now-grid { grid-template-columns: 1fr; gap: 12px; }
  .help-now-card { min-height: 0; padding: 18px; }
  body { padding-bottom: 72px; }
  .mobile-contact-bar { position: fixed; left: 10px; right: 10px; bottom: 10px; z-index: 1500; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 11px 12px 11px 16px; background: rgba(255,255,255,.97); border: 1px solid rgba(0,0,0,.08); border-radius: 18px; box-shadow: 0 10px 32px rgba(0,0,0,.18); backdrop-filter: blur(10px); }
  .mobile-contact-bar div { min-width: 0; display: flex; flex-direction: column; }
  .mobile-contact-bar strong { color: #2b2b2b; font-size: .88rem; line-height: 1.2; }
  .mobile-contact-bar span { color: #777; font-size: .72rem; }
  .mobile-contact-bar a { flex: 0 0 auto; padding: 11px 14px; border-radius: 12px; background: var(--primary-orange,#F37021); color: #fff; text-decoration: none; font-size: .82rem; font-weight: 800; }
  .whatsapp-float-clean { bottom: 92px !important; }
}


/* ==========================================================================
   V5 — SEÇÃO PROFISSIONAIS MAIS AMPLA
   ========================================================================== */
#profissionais {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
  box-sizing: border-box;
}

#profissionais .professionals-container,
#profissionais .professionals-grid,
#profissionais .team-grid,
#profissionais .grid-carrossel-geral {
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 900px) {
  #profissionais .professionals-grid,
  #profissionais .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
  }

  #profissionais .professional-card,
  #profissionais .team-card {
    width: 100%;
    max-width: none;
  }
}

@media (max-width: 768px) {
  #profissionais {
    padding-left: 18px;
    padding-right: 18px;
  }
}


/* V6 — Instagram */
.instagram-section { padding: 80px 24px; background: #fff; }
.instagram-inner { width: 100%; max-width: 1240px; margin: 0 auto; }
.instagram-heading { max-width: 720px; margin: 0 auto 34px; text-align: center; }
.instagram-eyebrow { display:inline-block; margin-bottom:8px; font-size:.82rem; font-weight:800; letter-spacing:.12em; text-transform:uppercase; color:var(--primary-red,#D30815); }
.instagram-heading h2 { margin:0 0 12px; }
.instagram-heading p { margin:0; color:#666; line-height:1.7; }
.instagram-gallery { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:18px; }
.instagram-card { position:relative; display:block; aspect-ratio:1/1; overflow:hidden; border-radius:22px; background:#f4f4f4; box-shadow:0 10px 30px rgba(0,0,0,.08); }
.instagram-card img { width:100%; height:100%; object-fit:cover; display:block; transition:transform .35s ease; }
.instagram-card:hover img { transform:scale(1.04); }
.instagram-overlay { position:absolute; inset:auto 14px 14px 14px; padding:10px 14px; border-radius:999px; text-align:center; font-weight:700; color:#fff; background:rgba(0,0,0,.58); backdrop-filter:blur(6px); }
.instagram-cta { display:flex; align-items:center; justify-content:center; gap:18px; margin-top:28px; flex-wrap:wrap; }
.instagram-cta strong { font-size:1.05rem; }
.instagram-button { display:inline-flex; align-items:center; justify-content:center; }
.footer-instagram-link { width:100%; text-align:center; margin-top:18px; }
.footer-instagram-link a { color:inherit; font-weight:700; text-decoration:none; }
.footer-instagram-link a:hover { text-decoration:underline; }
@media (max-width:768px) {
  .instagram-section { padding:56px 18px; }
  .instagram-gallery { grid-template-columns:1fr; gap:14px; }
  .instagram-card { aspect-ratio:4/3; }
  .instagram-cta { flex-direction:column; gap:12px; }
}


/* V7 — ajuste solicitado: Instagram com uma única imagem em banner */
.instagram-gallery-banner {
  display: block;
}

.instagram-banner {
  width: 100%;
  aspect-ratio: 16 / 6;
}

.instagram-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.instagram-button {
  background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5) !important;
  color: #fff !important;
  border: none !important;
}

@media (max-width: 768px) {
  .instagram-banner {
    aspect-ratio: 16 / 9;
  }
}


/* V8 — Instagram: imagem sem formato de banner + botão arredondado */
.instagram-banner {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  background: transparent;
}

.instagram-banner img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.instagram-button {
  border-radius: 999px !important;
  padding: 13px 26px !important;
  background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5) !important;
  color: #fff !important;
  border: none !important;
}
