/* ==========================================================================
   SER+ ESPAÇO TERAPÊUTICO - ESTILOS GERAIS & IDENTIDADE VISUAL
   ========================================================================== */

:root {
  /* Paleta Oficial SER+ */
  --pink-primary: #BE7D9D;
  --pink-dark: #A96383;
  --pink-light: #E5BFD0;
  --pink-bg: #F4E9EF;
  --pink-subtle: #FAF2F6;

  --mint-primary: #99BBB3;
  --mint-dark: #7CA198;
  --mint-light: #EDF5F3;

  --blue-primary: #A4D3DF;
  --blue-dark: #7DBECF;
  --blue-light: #EAF5F7;

  --bg-white: #FFFFFF;
  --bg-offwhite: #FDFAF8;
  --bg-alt: #F9F6F4;

  --text-main: #34383B;
  --text-muted: #62676B;
  --text-light: #8E9499;

  --border-light: rgba(190, 125, 157, 0.15);
  --border-soft: #EFE8E3;

  /* Sombras Suaves */
  --shadow-sm: 0 4px 12px rgba(190, 125, 157, 0.06);
  --shadow-md: 0 10px 28px rgba(190, 125, 157, 0.10);
  --shadow-lg: 0 18px 45px rgba(190, 125, 157, 0.14);
  --shadow-float: 0 20px 40px rgba(52, 56, 59, 0.12);

  /* Tipografia */
  --font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --transition-normal: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-bounce: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Reset Básico */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-offwhite);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  width: 100%;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-normal);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  outline: none;
  transition: var(--transition-normal);
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

/* Elementos Orgânicos de Fundo */
.decorative-puzzle-bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.puzzle-shape {
  position: absolute;
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  filter: blur(60px);
  opacity: 0.4;
  animation: floatOrb 20s infinite alternate ease-in-out;
}

.shape-pink {
  width: 500px;
  height: 500px;
  background: var(--pink-light);
  top: -100px;
  right: -100px;
}

.shape-mint {
  width: 450px;
  height: 450px;
  background: var(--mint-light);
  bottom: 10%;
  left: -150px;
  animation-delay: -5s;
}

.shape-blue {
  width: 400px;
  height: 400px;
  background: var(--blue-light);
  top: 40%;
  right: 10%;
  animation-delay: -10s;
}

.shape-soft-pink {
  width: 350px;
  height: 350px;
  background: var(--pink-bg);
  top: 20%;
  left: 20%;
}

@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -40px) scale(1.08); }
  100% { transform: translate(-20px, 20px) scale(0.95); }
}

/* ==========================================================================
   COMPONENTES GERAIS (BOTÕES, BADGES, TÍTULOS)
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: 9999px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-bounce);
}

.btn-capsule {
  border-radius: 9999px;
}

.btn-primary {
  background-color: var(--pink-primary);
  color: var(--bg-white);
  box-shadow: 0 6px 20px rgba(190, 125, 157, 0.35);
}

.btn-primary:hover {
  background-color: var(--pink-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(169, 99, 131, 0.45);
}

.btn-outline {
  background-color: var(--bg-white);
  color: var(--pink-dark);
  border: 1.5px solid var(--pink-light);
}

.btn-outline:hover {
  background-color: var(--pink-bg);
  border-color: var(--pink-primary);
  transform: translateY(-2px);
}

.btn-white {
  background-color: var(--bg-white);
  color: var(--pink-dark);
}

.btn-white:hover {
  background-color: var(--bg-offwhite);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.btn-outline-white {
  background-color: transparent;
  color: var(--bg-white);
  border: 1.5px solid rgba(255, 255, 255, 0.7);
}

.btn-outline-white:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: var(--bg-white);
  transform: translateY(-2px);
}

.btn-large {
  padding: 15px 36px;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

.btn-block {
  width: 100%;
}

.section-header {
  margin-bottom: 50px;
}

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

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--pink-bg);
  color: var(--pink-dark);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 9999px;
  margin-bottom: 16px;
  border: 1px solid rgba(190, 125, 157, 0.2);
}

.section-title {
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.25;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ==========================================================================
   1. TOPBAR SUPERIOR
   ========================================================================== */

.topbar {
  background: linear-gradient(90deg, var(--pink-dark) 0%, var(--pink-primary) 100%);
  color: var(--bg-white);
  font-size: 0.82rem;
  padding: 7px 0;
  font-weight: 500;
}

.topbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.topbar-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.2);
  padding: 2px 10px;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.icon-sm {
  width: 14px;
  height: 14px;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--bg-white);
  opacity: 0.95;
}

.topbar-link:hover {
  opacity: 1;
  text-decoration: underline;
}

.topbar-divider {
  opacity: 0.4;
}

.topbar-chat-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: var(--bg-white);
  color: var(--pink-dark);
  font-weight: 600;
  font-size: 0.78rem;
  padding: 3px 12px;
  border-radius: 9999px;
  transition: var(--transition-bounce);
}

.topbar-chat-btn:hover {
  background-color: var(--pink-bg);
  transform: scale(1.04);
}

/* ==========================================================================
   2. HEADER PRINCIPAL
   ========================================================================== */

.site-header {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 15px rgba(52, 56, 59, 0.04);
  border-bottom: 1px solid var(--border-soft);
  transition: var(--transition-normal);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.brand-logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--pink-primary);
  line-height: 1.1;
}

.logo-plus {
  color: var(--blue-primary);
  font-weight: 900;
  margin-left: 2px;
}

.logo-subtitle {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--mint-dark);
}

/* Menu de Navegação */
.main-nav .nav-list {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-main);
  position: relative;
  padding: 6px 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--pink-primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2.5px;
  background-color: var(--pink-primary);
  border-radius: 99px;
  transition: var(--transition-normal);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.mobile-toggle-btn {
  display: none;
  background: var(--pink-bg);
  color: var(--pink-dark);
  width: 42px;
  height: 42px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
}

/* Mobile Nav Drawer */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
}

.mobile-nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 82%;
  max-width: 340px;
  height: 100%;
  background: var(--bg-white);
  padding: 24px;
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.mobile-nav-overlay.open .mobile-nav-content {
  transform: translateX(0);
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-soft);
}

.mobile-nav-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand-logo-small {
  height: 36px;
}

.close-nav-btn {
  background: var(--pink-bg);
  color: var(--pink-dark);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav-list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mobile-nav-link {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-main);
  display: block;
}

.mobile-nav-link:hover {
  color: var(--pink-primary);
  padding-left: 6px;
}

.mobile-nav-footer {
  margin-top: auto;
  padding-top: 20px;
}

.mobile-contact-info {
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.mobile-contact-info p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}

/* ==========================================================================
   3. HERO PRINCIPAL
   ========================================================================== */

.hero-section {
  padding: 60px 0 70px;
  position: relative;
  overflow: hidden;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 45px;
  align-items: center;
}

.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--pink-bg);
  border: 1px solid var(--pink-light);
  color: var(--pink-dark);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 7px 18px;
  border-radius: 9999px;
  margin-bottom: 20px;
}

.pill-sparkle {
  color: var(--pink-primary);
  display: flex;
}

.pill-sparkle svg {
  width: 16px;
  height: 16px;
}

.hero-title {
  font-size: 3.1rem;
  font-weight: 800;
  line-height: 1.18;
  color: var(--text-main);
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.highlight-pink {
  color: var(--pink-primary);
  display: inline;
  background: linear-gradient(120deg, rgba(229, 191, 208, 0.45) 0%, rgba(229, 191, 208, 0.45) 100%) no-repeat 0 88% / 100% 12px;
  padding-bottom: 2px;
}

.hero-subtitle {
  font-size: 1.12rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  padding: 15px 32px;
  font-size: 1rem;
}

.btn-hero-secondary {
  padding: 14px 28px;
  font-size: 0.95rem;
}

/* Prova Social Hero */
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--border-soft);
}

.avatar-stack {
  display: flex;
  align-items: center;
}

.avatar-img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2.5px solid var(--bg-white);
  margin-left: -12px;
  object-fit: cover;
}

.avatar-img:first-child {
  margin-left: 0;
}

.avatar-count {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--pink-primary);
  color: var(--bg-white);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2.5px solid var(--bg-white);
  margin-left: -12px;
}

.proof-stars {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #F5A623;
  margin-bottom: 3px;
}

.proof-stars svg {
  width: 15px;
  height: 15px;
  fill: #F5A623;
}

.proof-rating {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
  margin-left: 6px;
}

.proof-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Coluna Direita: Imagem + Card Flutuante */
.hero-media-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-right: 30px;
}

.hero-image-frame {
  position: relative;
  width: 100%;
  max-width: 380px;
  border-radius: 36px;
  box-shadow: var(--shadow-lg);
}

.hero-main-img {
  width: 100%;
  height: 490px;
  object-fit: cover;
  border-radius: 36px;
  border: 4px solid var(--bg-white);
}

.hero-floating-pill {
  position: absolute;
  top: 18px;
  left: 18px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--pink-dark);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-sm);
  z-index: 2;
}

.pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #27AE60;
  display: inline-block;
}

.hero-puzzle-badge {
  position: absolute;
  bottom: 20px;
  left: 18px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 10px 14px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.8);
  z-index: 2;
}

.puzzle-icon {
  width: 26px;
  height: 26px;
  color: var(--pink-primary);
}

.hero-puzzle-badge strong {
  display: block;
  font-size: 0.82rem;
  color: var(--text-main);
}

.hero-puzzle-badge small {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* Card Flutuante Lateral de Especialidades */
.hero-floating-card {
  position: absolute;
  right: -12px;
  bottom: -20px;
  width: 240px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  border-radius: 22px;
  padding: 16px 14px;
  box-shadow: var(--shadow-float);
  border: 1px solid rgba(190, 125, 157, 0.2);
  z-index: 4;
}

.floating-card-header {
  margin-bottom: 10px;
}

.card-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--pink-primary);
}

.card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
}

.floating-specialties-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.specialty-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 14px;
  cursor: pointer;
  transition: var(--transition-normal);
  background: var(--bg-offwhite);
}

.specialty-item:hover {
  background: var(--pink-bg);
  transform: translateX(4px);
}

.item-icon-box {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.item-icon-box svg {
  width: 16px;
  height: 16px;
}

.bg-pink { background: var(--pink-bg); color: var(--pink-primary); }
.bg-mint { background: var(--mint-light); color: var(--mint-dark); }
.bg-blue { background: var(--blue-light); color: var(--blue-dark); }
.bg-pink-light { background: #FCF0F5; color: var(--pink-dark); }
.bg-mint-light { background: #EAF8F4; color: #4E8679; }
.bg-blue-light { background: #E8F5F9; color: #4B9AB0; }

.item-text {
  flex-grow: 1;
}

.item-text strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.2;
}

.item-text span {
  font-size: 0.68rem;
  color: var(--text-muted);
}

.item-arrow {
  width: 14px;
  height: 14px;
  color: var(--text-light);
  transition: var(--transition-normal);
}

.specialty-item:hover .item-arrow {
  color: var(--pink-primary);
  transform: translateX(2px);
}

.floating-card-more-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
  padding: 8px 12px;
  border-radius: 12px;
  background: var(--pink-bg);
  color: var(--pink-dark);
  font-size: 0.76rem;
  font-weight: 600;
  transition: var(--transition-normal);
}

.floating-card-more-link svg {
  width: 13px;
  height: 13px;
  transition: transform var(--transition-normal);
}

.floating-card-more-link:hover {
  background: var(--pink-primary);
  color: var(--bg-white);
}

.floating-card-more-link:hover svg {
  transform: translateX(3px);
}

/* ==========================================================================
   4. FAIXA DE DIFERENCIAIS
   ========================================================================== */

.benefits-section {
  padding: 20px 0 50px;
}

.benefits-card-strip {
  background: var(--bg-white);
  border-radius: 28px;
  padding: 28px 24px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-soft);
}

.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.benefit-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon-wrapper svg {
  width: 24px;
  height: 24px;
}

.color-pink { background: var(--pink-bg); color: var(--pink-primary); }
.color-mint { background: var(--mint-light); color: var(--mint-dark); }
.color-blue { background: var(--blue-light); color: var(--blue-dark); }
.color-pink-dark { background: #F8E6EE; color: var(--pink-dark); }
.color-mint-dark { background: #E1F2EE; color: #438072; }
.color-blue-dark { background: #DFF1F5; color: #36889F; }

.benefit-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.3;
}

.benefit-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* ==========================================================================
   5. SEÇÃO DE ESPECIALIDADES / SERVIÇOS
   ========================================================================== */

.specialties-section {
  padding: 60px 0 80px;
  background: linear-gradient(180deg, transparent 0%, rgba(244, 233, 239, 0.4) 100%);
}

.specialties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 45px;
}

.specialty-card {
  background: var(--bg-white);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-soft);
  transition: var(--transition-bounce);
  display: flex;
  flex-direction: column;
}

.specialty-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--pink-light);
}

.card-image-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.card-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 9999px;
  backdrop-filter: blur(6px);
}

.card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-icon-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.card-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-icon svg {
  width: 20px;
  height: 20px;
}

.card-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.25;
}

.card-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 18px;
  flex-grow: 1;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.card-tags span {
  font-size: 0.72rem;
  font-weight: 500;
  background: var(--bg-offwhite);
  color: var(--text-muted);
  padding: 4px 10px;
  border-radius: 8px;
  border: 1px solid var(--border-soft);
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border-soft);
}

.btn-card-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--pink-dark);
}

.btn-card-learn-more svg {
  width: 16px;
  height: 16px;
  transition: var(--transition-normal);
}

.btn-card-learn-more:hover svg {
  transform: translateX(4px);
}

.btn-card-schedule {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--pink-bg);
  color: var(--pink-dark);
  padding: 7px 16px;
  border-radius: 9999px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: var(--transition-normal);
}

.btn-card-schedule:hover {
  background: var(--pink-primary);
  color: var(--bg-white);
}

.btn-card-schedule svg {
  width: 14px;
  height: 14px;
}

.specialties-bottom-cta {
  background: var(--bg-white);
  border-radius: 24px;
  padding: 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-soft);
  max-width: 760px;
  margin: 0 auto;
}

.cta-note {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* ==========================================================================
   6. BLOCO SOBRE NÓS & NÚMEROS
   ========================================================================== */

.about-section {
  padding: 80px 0;
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.about-gallery-wrapper {
  position: relative;
}

.gallery-main-card {
  position: relative;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 5px solid var(--bg-white);
}

.about-main-photo {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.about-badge-overlay {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 16px 20px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-md);
}

.badge-icon {
  width: 32px;
  height: 32px;
  color: var(--pink-primary);
}

.about-badge-overlay strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-main);
}

.about-badge-overlay span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.gallery-secondary-card {
  position: absolute;
  top: -25px;
  right: -30px;
  width: 180px;
  height: 180px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--bg-white);
}

.about-sub-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-puzzle-float {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: var(--mint-light);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  color: var(--mint-dark);
}

.puzzle-heart {
  width: 28px;
  height: 28px;
  fill: var(--mint-dark);
}

.about-text-lead {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--pink-dark);
  line-height: 1.6;
  margin-bottom: 16px;
}

.about-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 26px;
}

.about-pillars-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.pillar-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.pillar-bullet {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.pillar-bullet svg {
  width: 16px;
  height: 16px;
}

.pillar-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-main);
  margin-bottom: 2px;
}

.pillar-item p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* Bloco de Métricas / Números */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  background: var(--bg-white);
  padding: 24px 20px;
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-soft);
}

.metric-card {
  text-align: center;
}

.metric-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--pink-primary);
  line-height: 1.1;
  margin-bottom: 4px;
}

.metric-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.3;
}

/* ==========================================================================
   8. SEÇÃO NOSSO ESPAÇO
   ========================================================================== */

.clinic-spaces-section {
  padding: 70px 0;
  background: var(--bg-white);
}

.spaces-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.space-card {
  border-radius: 24px;
  overflow: hidden;
  background: var(--bg-offwhite);
  border: 1px solid var(--border-soft);
  transition: var(--transition-normal);
}

.space-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.space-img-wrap {
  height: 180px;
  overflow: hidden;
}

.space-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.space-card:hover .space-img {
  transform: scale(1.08);
}

.space-caption {
  padding: 18px;
}

.space-caption h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 6px;
}

.space-caption p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* ==========================================================================
   9. SEÇÃO DE DEPOIMENTOS
   ========================================================================== */

.testimonials-section {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-offwhite) 100%);
}

.testimonials-carousel-wrapper {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
}

.testimonials-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 30px;
}

.testimonial-card {
  background: var(--bg-white);
  border-radius: 28px;
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-soft);
  display: flex;
  flex-direction: column;
  transition: var(--transition-bounce);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--pink-light);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.test-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--pink-light);
}

.test-author-info {
  flex-grow: 1;
}

.test-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
}

.test-role {
  font-size: 0.72rem;
  color: var(--pink-dark);
  font-weight: 500;
  display: block;
}

.test-quote-icon {
  color: var(--pink-light);
  opacity: 0.7;
}

.test-rating {
  display: flex;
  gap: 3px;
  color: #F5A623;
  margin-bottom: 14px;
}

.test-rating svg {
  width: 15px;
  height: 15px;
  fill: #F5A623;
}

.test-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 20px;
  flex-grow: 1;
}

.test-footer-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: #27AE60;
  font-weight: 600;
  padding-top: 14px;
  border-top: 1px solid var(--border-soft);
}

.test-footer-tag svg {
  width: 14px;
  height: 14px;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-white);
  color: var(--pink-dark);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-soft);
  transition: var(--transition-normal);
}

.carousel-btn:hover {
  background: var(--pink-primary);
  color: var(--bg-white);
  transform: scale(1.08);
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 99px;
  background: var(--pink-light);
  cursor: pointer;
  transition: var(--transition-normal);
}

.dot.active {
  width: 28px;
  background: var(--pink-primary);
}

/* ==========================================================================
   10. FAQ / DÚVIDAS FREQUENTES
   ========================================================================== */

.faq-section {
  padding: 80px 0;
}

.faq-accordion {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-white);
  border-radius: 20px;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition-normal);
}

.faq-item.active {
  border-color: var(--pink-light);
  box-shadow: var(--shadow-md);
}

.faq-trigger {
  width: 100%;
  padding: 22px 26px;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--text-main);
  background: transparent;
}

.faq-trigger:hover {
  color: var(--pink-primary);
}

.faq-icon {
  width: 20px;
  height: 20px;
  color: var(--pink-primary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
  padding: 0 26px;
}

.faq-item.active .faq-content {
  max-height: 300px;
  padding-bottom: 22px;
}

.faq-content p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ==========================================================================
   11. CTA FINAL
   ========================================================================== */

.final-cta-section {
  padding: 40px 0 80px;
}

.final-cta-card {
  position: relative;
  background: linear-gradient(135deg, var(--pink-dark) 0%, var(--pink-primary) 60%, #CF8FAF 100%);
  border-radius: 36px;
  padding: 70px 40px;
  text-align: center;
  color: var(--bg-white);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.final-cta-decorations {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.cta-puzzle-1 {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 180px;
  height: 180px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 40px;
  transform: rotate(25deg);
}

.cta-puzzle-2 {
  position: absolute;
  bottom: -40px;
  left: -20px;
  width: 160px;
  height: 160px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 36px;
  transform: rotate(-15deg);
}

.final-cta-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
}

.cta-mini-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 16px;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.cta-desc {
  font-size: 1.08rem;
  opacity: 0.95;
  line-height: 1.6;
  margin-bottom: 36px;
}

.cta-button-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ==========================================================================
   12. FOOTER COMPLETO
   ========================================================================== */

.site-footer {
  background-color: var(--text-main);
  color: #D3D7DB;
  padding: 70px 0 0;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 1fr 1.2fr;
  gap: 45px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  margin-bottom: 16px;
}

.text-white {
  color: var(--bg-white) !important;
}

.text-white-70 {
  color: var(--mint-primary) !important;
}

.footer-bio {
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-social-links {
  display: flex;
  gap: 12px;
}

.footer-social-links a {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-white);
  transition: var(--transition-normal);
}

.footer-social-links a:hover {
  background: var(--pink-primary);
  transform: translateY(-3px);
}

.footer-col-title {
  color: var(--bg-white);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links li a {
  font-size: 0.88rem;
  color: #B4B9BE;
}

.footer-links li a:hover {
  color: var(--pink-light);
  padding-left: 4px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
}

.footer-contact-list li svg {
  width: 18px;
  height: 18px;
  color: var(--pink-light);
  flex-shrink: 0;
  margin-top: 2px;
}

.mt-3 {
  margin-top: 16px;
}

.footer-bottom {
  padding: 24px 0;
  font-size: 0.8rem;
  color: #8C9298;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.legal-link {
  color: #8C9298;
  font-size: 0.8rem;
}

.legal-link:hover {
  color: var(--pink-light);
  text-decoration: underline;
}

/* ==========================================================================
   13. FLOATING CHAT BUTTON & BUBBLE
   ========================================================================== */

.floating-chat-trigger {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 990;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.chat-bubble-popup {
  background: var(--bg-white);
  padding: 12px 16px;
  border-radius: 20px;
  box-shadow: var(--shadow-float);
  border: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  max-width: 290px;
  animation: slideInPopup 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes slideInPopup {
  from { opacity: 0; transform: translateY(15px) scale(0.9); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.popup-avatar {
  position: relative;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.popup-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.online-indicator {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 10px;
  height: 10px;
  background: #27AE60;
  border: 2px solid var(--bg-white);
  border-radius: 50%;
}

.popup-text {
  flex-grow: 1;
}

.popup-text strong {
  display: block;
  font-size: 0.82rem;
  color: var(--text-main);
}

.popup-text span {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.2;
}

.popup-close-btn {
  font-size: 1.2rem;
  color: var(--text-light);
  line-height: 1;
  padding: 2px 4px;
}

.popup-close-btn:hover {
  color: var(--text-main);
}

.chat-main-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-primary) 0%, var(--pink-dark) 100%);
  color: var(--bg-white);
  box-shadow: 0 10px 25px rgba(190, 125, 157, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: var(--transition-bounce);
}

.chat-main-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 14px 30px rgba(169, 99, 131, 0.55);
}

.btn-icon-stack {
  position: relative;
  width: 28px;
  height: 28px;
}

.btn-icon-stack svg {
  width: 28px;
  height: 28px;
  position: absolute;
  top: 0;
  left: 0;
  transition: var(--transition-normal);
}

.icon-close {
  opacity: 0;
  transform: rotate(-90deg);
}

.chat-badge-dot {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 14px;
  height: 14px;
  background: #27AE60;
  border: 2.5px solid var(--bg-white);
  border-radius: 50%;
  animation: pulseGreen 2s infinite;
}

@keyframes pulseGreen {
  0% { box-shadow: 0 0 0 0 rgba(39, 174, 96, 0.7); }
  70% { box-shadow: 0 0 0 8px rgba(39, 174, 96, 0); }
  100% { box-shadow: 0 0 0 0 rgba(39, 174, 96, 0); }
}

/* ==========================================================================
   14. CHATFLOW MANYCHAT MODAL (15 ETAPAS INTERATIVAS)
   ========================================================================== */

.chat-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(52, 56, 59, 0.45);
  backdrop-filter: blur(6px);
  z-index: 1000;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
}

.chat-modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.chat-container {
  width: 100%;
  max-width: 440px;
  height: 640px;
  max-height: calc(100vh - 48px);
  background: var(--bg-white);
  border-radius: 28px;
  box-shadow: var(--shadow-float);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  transform: translateY(30px) scale(0.95);
  transition: var(--transition-bounce);
}

.chat-modal-overlay.open .chat-container {
  transform: translateY(0) scale(1);
}

/* Cabeçalho do Chat */
.chat-header {
  background: linear-gradient(135deg, var(--pink-dark) 0%, var(--pink-primary) 100%);
  color: var(--bg-white);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.chat-header-profile {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chat-avatar-wrapper {
  position: relative;
  width: 44px;
  height: 44px;
}

.chat-avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.chat-status-pulse {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 12px;
  height: 12px;
  background: #27AE60;
  border: 2px solid var(--bg-white);
  border-radius: 50%;
}

.chat-agent-name {
  display: flex;
  align-items: center;
  gap: 6px;
}

.chat-agent-name strong {
  font-size: 1rem;
  font-weight: 700;
}

.agent-badge {
  font-size: 0.68rem;
  background: rgba(255, 255, 255, 0.25);
  padding: 2px 8px;
  border-radius: 999px;
  font-weight: 600;
}

.chat-status-text {
  font-size: 0.72rem;
  opacity: 0.9;
  display: flex;
  align-items: center;
  gap: 5px;
}

.status-dot {
  width: 6px;
  height: 6px;
  background: #2ECC71;
  border-radius: 50%;
  display: inline-block;
}

.chat-header-actions {
  display: flex;
  gap: 6px;
}

.chat-action-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-normal);
}

.chat-action-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

.chat-action-btn svg {
  width: 18px;
  height: 18px;
}

/* Barra de Progresso */
.chat-progress-bar-container {
  height: 4px;
  background: var(--pink-bg);
  width: 100%;
}

.chat-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--mint-primary) 0%, var(--pink-primary) 100%);
  transition: width 0.4s ease;
}

/* Corpo das Mensagens */
.chat-messages-body {
  flex-grow: 1;
  overflow-y: auto;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #FAF8F6;
  scroll-behavior: smooth;
}

/* Balões de Mensagem */
.msg-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 85%;
  animation: popMessage 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.msg-bot {
  align-self: flex-start;
}

.msg-bot .msg-bubble {
  background: var(--bg-white);
  color: var(--text-main);
  padding: 12px 16px;
  border-radius: 18px 18px 18px 4px;
  font-size: 0.9rem;
  line-height: 1.45;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--border-soft);
}

.msg-bot .msg-bubble strong {
  color: var(--pink-dark);
}

.msg-user {
  align-self: flex-end;
}

.msg-user .msg-bubble {
  background: var(--pink-primary);
  color: var(--bg-white);
  padding: 12px 16px;
  border-radius: 18px 18px 4px 18px;
  font-size: 0.9rem;
  line-height: 1.45;
  box-shadow: 0 4px 12px rgba(190, 125, 157, 0.25);
}

.msg-time {
  font-size: 0.68rem;
  color: var(--text-light);
  margin-top: 2px;
  padding: 0 4px;
}

.msg-user .msg-time {
  text-align: right;
}

/* Indicador de Digitação */
.chat-typing-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #FAF8F6;
}

.typing-bubble {
  background: var(--bg-white);
  padding: 10px 14px;
  border-radius: 16px 16px 16px 4px;
  display: flex;
  gap: 5px;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--border-soft);
}

.typing-dot {
  width: 7px;
  height: 7px;
  background: var(--pink-primary);
  border-radius: 50%;
  animation: typingBounce 1.4s infinite ease-in-out;
}

.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingBounce {
  0%, 80%, 100% { transform: translateY(0); opacity: 0.4; }
  40% { transform: translateY(-6px); opacity: 1; }
}

.typing-text {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-style: italic;
}

/* Área de Interação e Input */
.chat-input-area {
  padding: 14px 16px;
  background: var(--bg-white);
  border-top: 1px solid var(--border-soft);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Opções Clicáveis no Chat */
.chat-options-stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.chat-chips-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chat-chip-btn {
  background: var(--pink-bg);
  color: var(--pink-dark);
  border: 1px solid var(--pink-light);
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-bounce);
}

.chat-chip-btn:hover {
  background: var(--pink-primary);
  color: var(--bg-white);
  transform: translateY(-2px);
}

.chat-chip-btn.selected {
  background: var(--pink-primary);
  color: var(--bg-white);
  border-color: var(--pink-dark);
}

/* Multi-select Tags Demanda */
.chat-tag-pill {
  background: var(--bg-offwhite);
  border: 1px solid var(--border-soft);
  padding: 7px 12px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-normal);
}

.chat-tag-pill.active {
  background: var(--pink-bg);
  border-color: var(--pink-primary);
  color: var(--pink-dark);
  font-weight: 600;
}

/* Input de Texto com Botão Enviar */
.chat-input-form {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}

.chat-text-field {
  flex-grow: 1;
  background: var(--bg-offwhite);
  border: 1.5px solid var(--border-soft);
  border-radius: 999px;
  padding: 12px 18px;
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--text-main);
  outline: none;
  transition: var(--transition-normal);
}

.chat-text-field:focus {
  border-color: var(--pink-primary);
  background: var(--bg-white);
  box-shadow: 0 0 0 3px rgba(190, 125, 157, 0.15);
}

.chat-send-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--pink-primary);
  color: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition-bounce);
}

.chat-send-btn:hover {
  background: var(--pink-dark);
  transform: scale(1.06);
}

.chat-send-btn svg {
  width: 18px;
  height: 18px;
}

/* Resumo Final Card */
.chat-summary-box {
  background: var(--bg-white);
  border: 1.5px solid var(--pink-light);
  border-radius: 18px;
  padding: 16px;
  margin: 10px 0;
  font-size: 0.82rem;
  box-shadow: var(--shadow-sm);
}

.summary-title {
  color: var(--pink-dark);
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--pink-bg);
}

.summary-row {
  display: flex;
  margin-bottom: 6px;
  line-height: 1.4;
}

.summary-row strong {
  width: 110px;
  color: var(--text-main);
  flex-shrink: 0;
}

.summary-row span {
  color: var(--text-muted);
  flex-grow: 1;
}

/* Rodapé Seguro */
.chat-footer-secure {
  padding: 8px 16px;
  background: var(--bg-offwhite);
  border-top: 1px solid var(--border-soft);
  font-size: 0.7rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.icon-secure {
  width: 14px;
  height: 14px;
  color: #27AE60;
}

/* ==========================================================================
   15 & 16. MODAIS DE DETALHES E PRIVACIDADE
   ========================================================================== */

.service-modal-overlay, .legal-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
}

.service-modal-overlay.open, .legal-modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.service-modal-card, .legal-modal-card {
  background: var(--bg-white);
  width: 100%;
  max-width: 580px;
  max-height: 90vh;
  border-radius: 28px;
  padding: 32px;
  box-shadow: var(--shadow-lg);
  overflow-y: auto;
  position: relative;
  transform: scale(0.95);
  transition: var(--transition-bounce);
}

.service-modal-overlay.open .service-modal-card,
.legal-modal-overlay.open .legal-modal-card {
  transform: scale(1);
}

.service-modal-close, .legal-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-offwhite);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-modal-close:hover, .legal-modal-close:hover {
  background: var(--pink-bg);
  color: var(--pink-dark);
}

.service-modal-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-soft);
}

.service-modal-icon-badge {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: var(--pink-bg);
  color: var(--pink-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-modal-category {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--pink-primary);
}

.service-modal-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-main);
}

.service-modal-body {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 26px;
}

.service-modal-body h4 {
  color: var(--text-main);
  margin: 16px 0 8px;
  font-size: 1rem;
}

.service-modal-body ul {
  padding-left: 20px;
  list-style: disc;
  margin-bottom: 14px;
}

.service-modal-body li {
  margin-bottom: 6px;
}

/* Legal Modal */
.legal-modal-header {
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-soft);
}

.legal-modal-body {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-height: 55vh;
  overflow-y: auto;
  padding-right: 8px;
  margin-bottom: 20px;
}

.legal-modal-body h4 {
  color: var(--text-main);
  margin: 16px 0 6px;
}

.legal-modal-body ul {
  padding-left: 20px;
  list-style: disc;
  margin-bottom: 12px;
}

.legal-modal-footer {
  text-align: right;
  padding-top: 14px;
  border-top: 1px solid var(--border-soft);
}

/* ==========================================================================
   17. RESPONSIVIDADE (TABLET & MOBILE)
   ========================================================================== */

@media (max-width: 1250px) {
  .main-nav .nav-list {
    gap: 16px;
  }

  .nav-link {
    font-size: 0.85rem;
  }

  .benefits-card-strip {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (max-width: 1100px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-floating-card {
    position: relative;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    transform: none !important;
    width: 100% !important;
    max-width: 360px !important;
    margin: 20px auto 0 !important;
    box-sizing: border-box;
  }

  .hero-media-wrapper {
    flex-direction: column;
    align-items: center;
    padding-right: 0;
  }

  .benefits-card-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .specialties-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .spaces-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-track {
    grid-template-columns: 1fr;
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    position: relative;
  }

  .container {
    padding: 0 16px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .topbar {
    display: none; /* Simplifica topo no celular */
  }

  .main-nav, .btn-flow-header, .header-actions .btn {
    display: none;
  }

  .mobile-toggle-btn {
    display: flex;
  }

  .section-padding {
    padding: 48px 0;
  }

  .section-header {
    margin-bottom: 28px;
  }

  .section-title {
    font-size: clamp(1.6rem, 6vw, 2rem);
    line-height: 1.25;
  }

  .section-subtitle {
    font-size: 0.92rem;
  }

  /* Hero Mobile */
  .hero-section {
    padding: 24px 0 40px;
    overflow: hidden;
  }

  .hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 100%;
  }

  .hero-pill-badge {
    margin: 0 auto 12px;
    font-size: 0.75rem;
    padding: 6px 12px;
  }

  .hero-title {
    font-size: clamp(1.75rem, 6.8vw, 2.25rem);
    line-height: 1.22;
    letter-spacing: -0.4px;
    text-align: center;
    width: 100%;
    word-break: break-word;
    margin-bottom: 12px;
  }

  .hero-subtitle {
    font-size: 0.92rem;
    line-height: 1.55;
    text-align: center;
    margin: 0 auto 20px;
    max-width: 100%;
  }

  .hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 10px;
    margin-bottom: 16px;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    padding: 13px 18px;
  }

  .hero-social-proof {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    width: 100%;
    padding-top: 14px;
    border-top: 1px solid var(--border-soft);
  }

  .hero-avatars {
    display: flex;
    justify-content: center;
    margin-left: 12px;
  }

  .proof-stars {
    justify-content: center;
  }

  .proof-desc {
    font-size: 0.76rem;
    text-align: center;
  }

  /* Hero Media & Imagem */
  .hero-media-wrapper {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    margin: 10px 0 0 0;
    position: relative;
  }

  .hero-image-frame {
    width: 100%;
    max-width: 320px;
    height: 380px;
    border-radius: 24px;
    position: relative;
    margin: 0 auto;
    overflow: hidden;
  }

  .hero-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
  }

  .hero-floating-pill {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 0.7rem;
    padding: 5px 10px;
    border-radius: 9999px;
  }

  .hero-puzzle-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    padding: 7px 10px;
    border-radius: 12px;
  }

  .hero-puzzle-badge strong {
    font-size: 0.74rem;
  }

  .hero-puzzle-badge small {
    font-size: 0.65rem;
  }

  .hero-floating-card {
    position: relative;
    right: auto !important;
    bottom: auto !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    width: 100% !important;
    max-width: 320px !important;
    margin: 16px auto 0 !important;
    box-sizing: border-box;
    border-radius: 18px;
    padding: 14px;
  }

  /* Diferenciais */
  .benefits-card-strip {
    grid-template-columns: 1fr;
    padding: 16px 14px;
    gap: 12px;
    border-radius: 18px;
  }

  .benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .benefit-icon-wrapper {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 10px;
  }

  .benefit-title {
    font-size: 0.88rem;
  }

  .benefit-desc {
    font-size: 0.75rem;
  }

  /* Especialidades */
  .specialties-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .specialty-card {
    border-radius: 18px;
  }

  .card-image-wrap {
    height: 160px;
  }

  .card-body {
    padding: 16px 14px;
  }

  .card-title {
    font-size: 1.15rem;
  }

  .card-desc {
    font-size: 0.82rem;
  }

  /* Sobre Nós */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-gallery {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    position: relative;
  }

  .about-main-photo {
    width: 100%;
    height: 300px;
    border-radius: 22px;
    object-fit: cover;
  }

  .gallery-secondary-card {
    position: absolute;
    top: -10px;
    right: 0px;
    width: 100px;
    height: 100px;
    border-radius: 14px;
  }

  .about-puzzle-float {
    position: absolute;
    bottom: -6px;
    left: 0px;
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }

  .about-badge-overlay {
    position: absolute;
    bottom: 8px;
    left: 8px;
    right: 8px;
    padding: 8px 10px;
    border-radius: 12px;
  }

  .about-badge-overlay strong {
    font-size: 0.74rem;
  }

  .about-badge-overlay span {
    font-size: 0.65rem;
  }

  .about-values-list {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .value-item {
    padding: 8px 10px;
    font-size: 0.82rem;
  }

  /* Métricas & Depoimentos */
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 14px 10px;
    border-radius: 16px;
    margin-bottom: 20px;
  }

  .metric-number {
    font-size: 1.35rem;
  }

  .metric-label {
    font-size: 0.68rem;
  }

  .testimonials-track {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .testimonial-card {
    padding: 18px 14px;
    border-radius: 16px;
  }

  /* Espaços */
  .spaces-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .space-card {
    height: 200px;
    border-radius: 18px;
  }

  /* FAQ */
  .faq-question {
    padding: 14px 16px;
    font-size: 0.9rem;
  }

  .faq-answer {
    padding: 0 16px 14px;
    font-size: 0.82rem;
  }

  /* CTA Final */
  .final-cta-card {
    padding: 36px 16px;
    border-radius: 22px;
    overflow: hidden;
  }

  .cta-title {
    font-size: 1.55rem;
    line-height: 1.25;
  }

  .cta-desc {
    font-size: 0.86rem;
    margin-bottom: 20px;
  }

  .cta-button-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 10px;
  }

  .cta-button-group .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  /* Footer */
  .footer {
    padding: 40px 0 20px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-bottom-content {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    font-size: 0.75rem;
  }

  /* Chat Modal em Tela Cheia no Mobile */
  .chat-modal-overlay {
    padding: 0;
  }

  .chat-container {
    max-width: 100%;
    width: 100%;
    height: 100vh;
    max-height: 100vh;
    border-radius: 0;
  }

  .chat-bubble-popup {
    display: none !important; /* Mantém apenas o botão flutuante no mobile */
  }

  .floating-chat-bubble {
    bottom: 14px;
    right: 14px;
  }

  .chat-bubble-btn {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 480px) {
  .hero-actions .btn,
  .cta-button-group .btn {
    width: 100%;
    max-width: 100%;
  }

  .hero-image-frame,
  .hero-floating-card,
  .about-gallery {
    max-width: 100% !important;
  }
}

