/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
  /* Cores da Marca */
  --primary: #008C45;
  --primary-dark: #005C38;
  --primary-light: #E8F6EF;
  --white: #FFFFFF;
  --bg-body: #FAFCFB;
  --text-dark: #1F2933;
  --text-muted: #6B7280;
  
  /* Gradientes */
  --gradient-primary: linear-gradient(135deg, #008C45 0%, #005C38 100%);
  --gradient-light: linear-gradient(180deg, #FFFFFF 0%, #E8F6EF 100%);
  --gradient-glass: rgba(255, 255, 255, 0.85);

  /* Sombras */
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(0, 140, 69, 0.05), 0 4px 6px -2px rgba(0, 140, 69, 0.02);
  --shadow-lg: 0 20px 25px -5px rgba(0, 140, 69, 0.08), 0 10px 10px -5px rgba(0, 140, 69, 0.03);
  --shadow-premium: 0 30px 60px -15px rgba(0, 92, 56, 0.12);

  /* Bordas e Layout */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --container-width: 1200px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   RESET & CONFIGURAÇÕES GERAIS
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scroll-padding-top: 125px;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-body);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

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

ul {
  list-style: none;
}

/* ==========================================================================
   ESTILOS UTILITÁRIOS (LAYOUT & COMPONENTES)
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 6.5rem 0;
}

.bg-light {
  background: var(--gradient-light);
}

.bg-dark {
  background-color: var(--text-dark);
}

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

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

/* Grids */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

/* Botões Premium */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 2rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-md);
  transition: var(--transition);
  gap: 0.5rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease-out;
  z-index: -1;
}

.btn:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: var(--primary-light);
  color: var(--primary-dark);
}

.btn-secondary:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary-dark);
  background-color: transparent;
}

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

/* Badge & Cabeçalhos */
.badge {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  background-color: var(--primary-light);
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-header {
  max-width: 700px;
  margin: 0 auto 4.5rem auto;
}

.section-tagline {
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  display: block;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 2.5rem;
  color: var(--text-dark);
  font-weight: 800;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.125rem;
}

/* ==========================================================================
   HEADER / MENU NAV (REFORMULADO)
   ========================================================================== */
#main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--white);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.015), 0 1px 3px rgba(0, 0, 0, 0.015);
  border-bottom: 1px solid rgba(0, 140, 69, 0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Container do Header Desktop */
.header-desktop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 150px; /* Altura do header desktop */
  padding: 0 56px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  max-width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

#main-header.scrolled .header-desktop {
  height: 110px; /* Altura compacta no scroll */
}

/* Área Esquerda (~55%) */
.header-left {
  flex: 0 0 55%;
  max-width: 55%;
  display: flex;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  height: 120px; /* Altura próxima à altura total do bloco de texto ao lado */
  width: auto;
  object-fit: contain;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#main-header.scrolled .logo-img {
  height: 85px; /* Compacta no scroll */
}

/* Linha divisória vertical (cor verde escura sólida, altura acompanhando o bloco de texto) */
.header-divider-vertical {
  width: 1.5px;
  height: 90px;
  background-color: var(--primary-dark); /* Verde escuro */
  margin: 0 24px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

#main-header.scrolled .header-divider-vertical {
  height: 65px;
}

/* Bloco de Texto da Marca */
.brand-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.brand-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 900; /* Peso 900 */
  font-size: 58px;
  line-height: 0.92;
  color: var(--primary-dark);
  text-transform: uppercase;
  letter-spacing: -0.015em;
  margin: 0;
  padding: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#main-header.scrolled .brand-name {
  font-size: 50px;
}

.brand-specialty {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: #333333;
  text-transform: uppercase;
  letter-spacing: 6px;
  margin-top: 4px;
  margin-bottom: 2px;
  width: 100%;
  white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#main-header.scrolled .brand-specialty {
  font-size: 18px;
  letter-spacing: 5px;
}

/* Linhas horizontais verdes finas nas laterais */
.brand-specialty::before,
.brand-specialty::after {
  content: '';
  display: block;
  width: 25px;
  height: 1.5px;
  background-color: var(--primary);
  opacity: 0.85;
}

.brand-slogan {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
  padding: 0;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#main-header.scrolled .brand-slogan {
  font-size: 11.5px;
}

/* Área Direita (~45%) */
.header-right {
  flex: 0 0 45%;
  max-width: 45%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#main-header.scrolled .header-right {
  gap: 10px;
}

/* Menu Principal Desktop */
.nav-list-desktop {
  display: flex;
  align-items: center;
  gap: 40px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-link {
  font-family: 'Outfit', sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-dark);
  text-decoration: none;
  text-transform: uppercase; /* CAIXA ALTA */
  letter-spacing: 2px; /* Letter-spacing maior */
  position: relative;
  padding: 4px 0;
  transition: color 250ms ease;
  white-space: nowrap;
}

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

/* Underline animado */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Botão WhatsApp Desktop */
.btn-whatsapp-desktop {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 48px;
  padding: 0 30px;
  border-radius: 999px; /* Pill shape */
  background-color: var(--primary-dark); /* Verde escuro sólida */
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(0, 140, 69, 0.06);
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  cursor: pointer;
}

.btn-whatsapp-desktop:hover {
  background-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 92, 56, 0.14);
}

.icon-whatsapp-svg {
  display: inline-block;
  flex-shrink: 0;
  fill: currentColor;
}

/* Offset global do scroll anchor */
html {
  scroll-behavior: smooth;
  font-size: 16px;
  scroll-padding-top: 110px; /* Offset para cabeçalho desktop encolhido */
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  padding-top: 195px; /* Aumentado para dar respiro ao header desktop de 150px */
  padding-bottom: 6rem;
  background: radial-gradient(circle at 80% 20%, var(--primary-light) 0%, rgba(255,255,255,0) 60%), var(--white);
  position: relative;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 3.5rem;
}

.hero-content {
  max-width: 620px;
}

.hero-title {
  font-size: 3.35rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}



.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
  font-weight: 400;
}

.hero-support {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 2.25rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.btn-hero-whatsapp {
  font-size: 1.05rem;
  padding: 1.1rem 2.25rem;
}

.icon-svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  border-top: 1px solid rgba(0, 140, 69, 0.1);
  padding-top: 2rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 0.35rem;
}

/* Parte Visual da Hero (Imagens e Cards Flutuantes) */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.main-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.hero-main-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-premium);
  border: 4px solid var(--white);
  aspect-ratio: 1 / 1;
  object-fit: cover;
}



/* ==========================================================================
   DIFERENCIAIS
   ========================================================================== */
.diff-card {
  background-color: var(--white);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 140, 69, 0.03);
  transition: var(--transition);
}

.diff-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 140, 69, 0.15);
}

.diff-icon-wrapper {
  width: 60px;
  height: 60px;
  background-color: var(--primary-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.diff-icon {
  width: 32px;
  height: 32px;
  fill: var(--primary);
}

.diff-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.diff-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ==========================================================================
   SOBRE A CLÍNICA
   ========================================================================== */
.about-container {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 5rem;
}

.about-visual {
  position: relative;
}

.about-image-wrapper {
  position: relative;
  width: 100%;
}

.about-img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.about-content .section-title {
  margin-bottom: 1.5rem;
}

.about-text-lead {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
}

.about-text-body {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.value-icon {
  width: 22px;
  height: 22px;
  fill: var(--primary);
  flex-shrink: 0;
}

.value-item span {
  font-weight: 600;
  color: var(--text-dark);
}

.btn-about-cta {
  padding: 1rem 2.5rem;
}

/* ==========================================================================
   ESPECIALIDADES
   ========================================================================== */
.spec-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}

.spec-card {
  background-color: var(--white);
  padding: 2.25rem 1.75rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 140, 69, 0.02);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.spec-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 140, 69, 0.1);
}

.spec-icon-box {
  width: 52px;
  height: 52px;
  background-color: var(--primary-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.spec-icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}

.spec-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.spec-card p {
  color: var(--text-muted);
  font-size: 0.925rem;
  line-height: 1.55;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.spec-link {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: var(--transition);
}

.spec-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  transition: transform 0.2s ease;
}

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

.spec-link:hover {
  color: var(--primary-dark);
}

/* ==========================================================================
   PILATES SECTION
   ========================================================================== */
.pilates-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 5rem;
}

.pilates-desc-text {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 2rem;
}

.pilates-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.benefit-card {
  background-color: var(--bg-body);
  border: 1px solid rgba(0, 140, 69, 0.05);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: var(--transition);
}

.benefit-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
  background-color: var(--white);
}

.bc-num {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  opacity: 0.7;
}

.benefit-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
}

.pilates-partners-info {
  border-top: 1px solid rgba(0, 140, 69, 0.1);
  padding-top: 1.5rem;
  margin-bottom: 2.5rem;
}

.partners-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.partners-logos-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.partner-badge {
  background-color: var(--primary-light);
  color: var(--primary-dark);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
}

.pilates-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.pilates-visual {
  display: flex;
  justify-content: center;
}

.pilates-image-wrapper {
  width: 100%;
  max-width: 420px;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

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

/* ==========================================================================
   CONVÊNIOS E PARCEIROS
   ========================================================================== */
.convenios-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin: 3.5rem 0;
}

.convenio-item {
  background-color: var(--white);
  padding: 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-width: 160px;
  height: auto;
  transition: var(--transition);
}

.convenio-item:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.convenio-logo {
  max-height: 32px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.convenio-item span {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary-dark);
  text-align: center;
}

.convenios-note {
  font-size: 0.875rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ==========================================================================
   UNIDADES
   ========================================================================== */
.unidades-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 3rem;
  margin-top: 1.5rem;
}

.unit-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 140, 69, 0.04);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.unit-card:hover {
  box-shadow: var(--shadow-premium);
  transform: translateY(-4px);
}

.unit-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  height: auto;
}

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

.unit-card:hover .unit-img {
  transform: scale(1.05);
}

.unit-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background-color: var(--primary);
  color: var(--white);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: var(--shadow-md);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: var(--radius-full);
  line-height: 1;
}

.status-badge::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.status-badge.status-open {
  background-color: #E8F6EF;
  color: #008C45;
}

.status-badge.status-open::before {
  background-color: #00C853;
  box-shadow: 0 0 0 0 rgba(0, 200, 83, 0.4);
  animation: pulse-green 2s infinite;
}

.status-badge.status-closed {
  background-color: #FDE8E8;
  color: #9B1C1C;
}

.status-badge.status-closed::before {
  background-color: #D32F2F;
}

@keyframes pulse-green {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(0, 200, 83, 0.7);
  }
  
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(0, 200, 83, 0);
  }
  
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(0, 200, 83, 0);
  }
}

.facade-pacajus-wrapper {
  position: relative;
  overflow: hidden;
  background-color: #1F2933;
}

.facade-pacajus-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('assets/facade-pacajus.jpg');
  background-size: cover;
  background-position: center;
  filter: blur(12px) brightness(0.85);
  transform: scale(1.15);
  z-index: 0;
}

.facade-pacajus-wrapper .unit-badge {
  z-index: 2;
}

.facade-pacajus-wrapper img {
  position: relative;
  z-index: 1;
  object-fit: contain !important;
}

.unit-info {
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.unit-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.unit-info h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-dark);
}

.google-rating {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
}

.rating-stars {
  color: #FFC107;
  font-size: 1rem;
  line-height: 1;
}

.rating-text {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 0.15rem;
}

.unit-contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.contact-line {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.unit-info-icon {
  width: 20px;
  height: 20px;
  fill: var(--primary);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.contact-value {
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 500;
}

.contact-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.1rem;
}

.unit-ctas {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.unit-ctas .btn {
  padding: 0.75rem 0.25rem;
  font-size: 0.8rem;
  border-radius: var(--radius-sm);
  text-align: center;
}

/* ==========================================================================
   DEPOIMENTOS / TESTIMONIALS
   ========================================================================== */
.testimonials-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4.5rem;
  gap: 3rem;
  flex-wrap: wrap;
}

.thr-left {
  max-width: 600px;
}

.thr-left .section-title {
  margin-bottom: 0.75rem;
}

.google-stats-card {
  background-color: var(--white);
  padding: 1.5rem 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 140, 69, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 260px;
}

.gsc-logo {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.gsc-logo svg {
  width: 18px;
  height: 18px;
}

.gsc-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.rating-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark);
}

.rating-stars-gold {
  color: #FFC107;
  font-size: 1.15rem;
}

.gsc-reviews-count {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.gsc-badge {
  background-color: #E8F6EF;
  color: #005C38;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.75rem;
  border-radius: var(--radius-full);
}

/* Slider de Depoimentos */
.carousel-wrapper {
  position: relative;
  overflow: hidden;
}

.testimonials-slider {
  display: flex;
  gap: 1.75rem;
  transition: transform 0.5s ease-in-out;
  width: 100%;
  height: auto;
  align-items: stretch;
}

.testimonial-card {
  background-color: var(--white);
  padding: 2.25rem 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 140, 69, 0.02);
  min-width: calc(33.333% - 1.2rem);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  height: auto;
  max-height: none;
}

.t-stars {
  color: #FFC107;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.t-text {
  font-size: 0.95rem;
  color: var(--text-dark);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1.75rem;
  flex-grow: 1;
  white-space: normal;
  word-wrap: break-word;
  overflow: visible;
  max-height: none;
}

.review-card, .review-card p, .review-text, .testimonial-card, .testimonial-card p, .t-text {
  overflow: visible !important;
  text-overflow: unset !important;
  white-space: normal !important;
  -webkit-line-clamp: unset !important;
  line-clamp: unset !important;
  height: auto !important;
  max-height: none !important;
  display: block !important;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 1rem;
}

.t-avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background-color: var(--primary-light);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.t-author-info {
  display: flex;
  flex-direction: column;
}

.t-author-info strong {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-dark);
}

.testimonial-print {
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
}

.testimonial-print-img {
  max-width: 100%;
  max-height: 150px;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

/* Controles */
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 3rem;
  gap: 1.5rem;
}

.carousel-control-btn {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(0, 140, 69, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
}

.carousel-control-btn svg {
  width: 24px;
  height: 24px;
  fill: var(--primary);
}

.carousel-control-btn:hover {
  background-color: var(--primary);
  border-color: var(--primary);
}

.carousel-control-btn:hover svg {
  fill: var(--white);
}

.carousel-dots {
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background-color: var(--text-muted);
  opacity: 0.3;
  transition: var(--transition);
  cursor: pointer;
}

.dot.active {
  background-color: var(--primary);
  opacity: 1;
  width: 20px;
}

/* ==========================================================================
   GALERIA / ESTRUTURA
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  cursor: pointer;
}

.gallery-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-caption {
  padding: 0.25rem 0.25rem 0.5rem 0.25rem;
  text-align: center;
}

.gallery-caption span {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
}

.gallery-item:hover .gallery-img {
  transform: scale(1.05);
}

/* ==========================================================================
   CHAMADA FINAL / CTA BANNER
   ========================================================================== */
.cta-banner-section {
  position: relative;
  background: var(--gradient-primary);
  overflow: hidden;
}

.cta-banner-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: var(--radius-full);
  background-color: rgba(255, 255, 255, 0.04);
}

.cta-banner-container {
  max-width: 800px;
}

.cta-banner-title {
  font-size: 2.85rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.cta-banner-desc {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  opacity: 0.95;
}

.cta-banner-support {
  font-size: 0.95rem;
  opacity: 0.8;
  font-weight: 600;
  margin-bottom: 2.75rem;
}

.cta-banner-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.cta-banner-buttons .btn {
  padding: 1.1rem 2.5rem;
  font-size: 1.05rem;
}

.cta-banner-buttons .btn-primary {
  background-color: var(--white);
  color: var(--primary-dark);
}

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

.cta-banner-buttons .btn-secondary {
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.cta-banner-buttons .btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

/* ==========================================================================
   RODAPÉ / FOOTER
   ========================================================================== */
.footer-section {
  background-color: var(--white);
  color: var(--text-dark);
  border-top: 1px solid rgba(0, 140, 69, 0.08);
}

.footer-top {
  padding: 5rem 0 3.5rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 3.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.footer-logo-img {
  height: 40px;
  width: 40px;
  object-fit: contain;
}

.footer-logo-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary-dark);
  display: block;
}

.footer-logo-sub {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-about-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.footer-socials {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.social-unit-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.social-unit-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  min-width: 75px;
}

.social-unit-row a {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  background-color: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-unit-row a svg {
  width: 16px;
  height: 16px;
  fill: var(--primary);
}

.social-unit-row a:hover {
  background-color: var(--primary);
  transform: translateY(-2px);
}

.social-unit-row a:hover svg {
  fill: var(--white);
}

.footer-col h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background-color: var(--primary);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
}

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

.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-unit-contact strong {
  font-size: 0.9rem;
  color: var(--primary-dark);
  display: block;
  margin-bottom: 0.35rem;
}

.footer-unit-contact p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 0.25rem;
}

.footer-unit-contact a {
  color: var(--primary);
  font-weight: 600;
}

.footer-unit-contact a:hover {
  text-decoration: underline;
}

/* Bottom */
.footer-bottom {
  border-top: 1px solid rgba(0, 140, 69, 0.08);
  padding: 2rem 0;
  font-size: 0.8rem;
  color: var(--text-muted);
  background-color: var(--bg-body);
}

.footer-bottom-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ==========================================================================
   BOTÃO FLUTUANTE DO WHATSAPP (MÚLTIPLAS UNIDADES)
   ========================================================================== */
.wa-floating-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

/* Botão principal */
.wa-main-trigger {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  background-color: #25D366;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.wa-main-trigger .icon-whatsapp {
  width: 32px;
  height: 32px;
}

.wa-main-trigger:hover {
  transform: scale(1.08);
}

.wa-main-trigger.active {
  transform: rotate(45deg);
  background-color: var(--text-dark);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* Painel de Seleção */
.wa-panel {
  position: absolute;
  bottom: 75px;
  right: 0;
  width: 330px;
  background-color: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-premium);
  border: 1px solid rgba(0, 140, 69, 0.1);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  z-index: 1;
}

.wa-panel.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.wa-panel-header {
  background: var(--gradient-primary);
  color: var(--white);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wa-panel-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.wa-panel-title .icon-whatsapp {
  width: 28px;
  height: 28px;
}

.icon-whatsapp {
  display: inline-block;
  vertical-align: middle;
  object-fit: contain;
}

.btn .icon-whatsapp {
  width: 22px;
  height: 22px;
}

.wa-panel-title strong {
  font-size: 0.95rem;
  display: block;
}

.wa-panel-title span {
  font-size: 0.75rem;
  opacity: 0.85;
}

.wa-close-btn {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1;
  opacity: 0.8;
}

.wa-close-btn:hover {
  opacity: 1;
}

.wa-panel-body {
  padding: 1.5rem;
  background-color: #F8F9FA;
}

.wa-welcome {
  font-size: 0.875rem;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.wa-unit-btn {
  background-color: var(--white);
  border: 1px solid rgba(0, 140, 69, 0.08);
  border-radius: var(--radius-sm);
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.75rem;
  text-align: left;
}

.wa-unit-btn:last-child {
  margin-bottom: 0;
}

.wa-unit-btn:hover {
  border-color: #25D366;
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.wa-btn-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background-color: #E8F6EF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wa-btn-icon svg {
  width: 18px;
  height: 18px;
  fill: var(--primary);
}

.wa-unit-btn:hover .wa-btn-icon {
  background-color: #25D366;
}

.wa-unit-btn:hover .wa-btn-icon svg {
  fill: var(--white);
}

.wa-btn-text strong {
  font-size: 0.9rem;
  color: var(--text-dark);
  display: block;
}

.wa-btn-text span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ==========================================================================
   RESPONSIVIDADE (MEDIA QUERIES)
   ========================================================================== */

/* Telas Grandes (Desktops Médios) */
@media (max-width: 1200px) {
  .section-title {
    font-size: 2.25rem;
  }
}

/* Notebooks / Tablets em Paisagem (Até 992px) */
@media (max-width: 992px) {
  .section-padding {
    padding: 5rem 0;
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

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

  .hero-title {
    font-size: 2.75rem;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-stats {
    width: 100%;
    justify-content: center;
    gap: 2.5rem;
  }

  .hero-visual {
    margin-top: 2rem;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

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

  .about-values {
    align-items: center;
  }



  .pilates-container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

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

  .pilates-benefits-grid {
    max-width: 600px;
    margin: 0 auto 2.5rem auto;
  }

  .partners-logos-row {
    justify-content: center;
  }

  .pilates-ctas {
    justify-content: center;
  }

  .unidades-container {
    grid-template-columns: 1fr;
  }

  .unit-card {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 2.5rem;
  }

  .footer-contacts {
    grid-column: span 3;
  }

  .testimonial-card {
    min-width: calc(50% - 0.9rem);
  }
}

/* ==========================================================================
   MOBILE HEADER STYLE (GLOBAL - OCULTO NO DESKTOP)
   ========================================================================== */
.header-mobile {
  display: none;
}

.menu-toggle-mobile {
  display: none;
}

/* Tablets em Retrato / Mobile Grande (Até 768px) */
@media (max-width: 768px) {
  html {
    scroll-padding-top: 50px; /* Offset compactado no scroll mobile */
  }

  /* Ocultar cabeçalho Desktop */
  .header-desktop {
    display: none;
  }
  
  /* Exibir cabeçalho Mobile */
  .header-mobile {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0;
    background-color: var(--white);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
    height: 240px; /* Altura para acomodar todos os itens confortavelmente */
    overflow: hidden;
  }

  /* Ajuste de Espaçamento no Hero para evitar sobreposição */
  .hero-section {
    padding-top: 270px !important;
  }
  
  /* Barra Superior Mobile (Topbar - Fundo verde escuro institucional) */
  .header-mobile-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 50px;
    background-color: var(--primary-dark); /* Fundo verde escuro */
    padding: 0 24px;
    box-sizing: border-box;
    position: relative;
    z-index: 1001;
  }

  /* Hambúrguer Menu Mobile (☰) em branco */
  .menu-toggle-mobile {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 16px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    z-index: 1002;
  }

  .menu-toggle-mobile .bar {
    width: 100%;
    height: 2.2px;
    background-color: var(--white); /* Ícones brancos */
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  /* Animação do botão hambúrguer ativo */
  .menu-toggle-mobile.active .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle-mobile.active .bar:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle-mobile.active .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* WhatsApp superior mobile (Solto sobre o fundo verde, sem borda/quadrado) */
  .btn-whatsapp-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: none;
    padding: 0;
    transition: all 250ms ease;
    text-decoration: none;
    z-index: 1002;
  }

  .btn-whatsapp-mobile img {
    display: block;
    width: 22px;
    height: 22px;
    filter: brightness(0) invert(1); /* WhatsApp branco */
  }

  /* Área Central Mobile (Fundo Branco com Logomarca centralizada) */
  .header-mobile-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 190px;
    background-color: var(--white);
    padding: 14px 24px 0 24px;
    box-sizing: border-box;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    transform: translateY(0);
  }

  .logo-link-mobile {
    display: block;
    margin-bottom: 2px;
  }

  .logo-img-mobile {
    height: 70px; /* Logo circular média */
    width: auto;
    object-fit: contain;
  }

  .brand-name-mobile {
    font-family: 'Outfit', sans-serif;
    font-size: 34px;
    font-weight: 900;
    line-height: 0.95;
    color: var(--primary-dark); /* Verde escuro */
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 2px;
    letter-spacing: -0.5px;
  }

  .brand-specialty-mobile {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #333333; /* Cinza escuro */
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: center;
    margin-bottom: 2px;
  }

  /* Linha horizontal com coração centralizado */
  .mobile-slogan-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 4px 0;
    gap: 12px;
  }

  .mobile-slogan-line {
    height: 1px;
    flex: 1;
    max-width: 80px;
    background-color: #A0B2A6;
    opacity: 0.4;
  }

  .mobile-heart-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border: 1px solid var(--primary);
    border-radius: 50%;
    color: var(--primary);
    background-color: var(--white);
  }

  .brand-slogan-mobile {
    font-family: 'Outfit', sans-serif;
    font-size: 10.5px;
    font-weight: 500;
    color: var(--primary); /* Verde institucional */
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 0.5px;
  }

  /* Divisor de Onda svg (transição suave para a próxima seção) */
  .mobile-header-wave {
    width: 100%;
    height: 20px;
    margin-top: 6px;
    flex-shrink: 0;
  }

  .mobile-header-wave svg {
    width: 100%;
    height: 100%;
    display: block;
  }

  /* Comportamento dinâmico no scroll mobile */
  #main-header.scrolled .header-mobile {
    height: 50px; /* Reduz para apenas a barra superior */
  }
  
  #main-header.scrolled .header-mobile-center {
    opacity: 0;
    max-height: 0;
    margin-top: 0;
    pointer-events: none;
    overflow: hidden;
    transform: translateY(-10px);
  }

  /* Menu Drawer Mobile */
  #nav-menu {
    position: fixed;
    top: 240px; /* Alinhado à altura inicial */
    left: -100%;
    width: 100%;
    height: calc(100vh - 240px);
    background-color: var(--white);
    padding: 3rem 2rem;
    box-shadow: 0 15px 30px rgba(0, 92, 56, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 998;
    overflow-y: auto;
    display: block;
  }

  #nav-menu.active {
    left: 0;
  }

  #main-header.scrolled #nav-menu {
    top: 50px;
    height: calc(100vh - 50px);
  }

  .nav-list-mobile {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .nav-list-mobile .nav-link {
    font-size: 1.25rem;
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 0.85rem;
  }

  /* Grid e Slider Depoimentos */
  .carousel-wrapper {
    overflow: visible !important;
  }

  .testimonials-slider {
    display: flex !important;
    flex-direction: column !important;
    transform: none !important;
    gap: 1.5rem !important;
    width: 100% !important;
    height: auto !important;
  }

  .testimonial-card {
    min-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    margin-bottom: 0 !important;
  }

  .carousel-controls {
    display: none !important;
  }

  .testimonials-header-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .cta-banner-title {
    font-size: 2.25rem;
  }

  .cta-banner-buttons {
    flex-direction: column;
    align-items: stretch;
    max-width: 400px;
    margin: 0 auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

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

  .footer-socials {
    gap: 1.5rem;
  }

  .social-unit-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .footer-contacts {
    grid-column: span 1;
  }

  .footer-bottom-container {
    flex-direction: column;
    text-align: center;
  }

  footer > * {
    margin-bottom: 24px !important;
  }
  footer {
    padding: 32px 20px !important;
  }
}

/* Smartphones Pequenos (Até 480px) */
@media (max-width: 480px) {
  .hero-section {
    padding-top: 140px;
    padding-bottom: 4rem;
  }

  .hero-title {
    font-size: 2.25rem;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }

  .section-title {
    font-size: 1.85rem;
  }

  .pilates-benefits-grid {
    grid-template-columns: 1fr;
  }

  .unit-ctas {
    grid-template-columns: 1fr;
  }

  .unit-ctas .btn {
    width: 100%;
  }

  .wa-panel {
    width: calc(100vw - 2rem);
    right: -1rem;
  }

  .wa-floating-container {
    bottom: 1rem;
    right: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
