/* ============================================
   HT PILATES — Premium Dark Theme
   Inspired by Jet Set Pilates aesthetic
   ============================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #1a7278;
  --primary-light: #2a9a9a;
  --primary-dark: #0e5558;
  --dark: #0a0a0a;
  --dark-2: #111111;
  --dark-3: #1a1a1a;
  --dark-4: #222222;
  --light: #f8f6f3;
  --light-2: #eee9e2;
  --light-3: #d4cec5;
  --white: #ffffff;
  --text-dark: #333333;
  --text-light: #cccccc;
  --text-muted: #888888;
  --whatsapp: #25d366;
  --whatsapp-dark: #1da851;
  --shadow: 0 4px 30px rgba(0,0,0,0.3);
  --shadow-lg: 0 10px 60px rgba(0,0,0,0.5);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Oswald', 'Arial Narrow', Arial, sans-serif;
  --font-body: 'Roboto', sans-serif;
  --font-nav: 'Oswald', 'Arial Narrow', Arial, sans-serif;
}

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

body {
  font-family: var(--font-body);
  color: var(--white);
  background: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--primary);
  color: var(--white);
  animation: ctaPulse 2s ease-in-out infinite;
}

.btn--primary:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(26, 114, 120, 0.4);
  animation: none;
}

@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 2px 10px rgba(26, 114, 120, 0.2); }
  50% { box-shadow: 0 4px 20px rgba(26, 114, 120, 0.5), 0 0 0 8px rgba(26, 114, 120, 0.08); }
}

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

.btn--outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}

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

.btn--whatsapp:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.btn--lg {
  padding: 16px 40px;
  font-size: 0.9rem;
}

.btn--full {
  width: 100%;
}

.btn--nav {
  font-family: var(--font-nav);
  background: var(--primary);
  color: var(--white);
  padding: 10px 24px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1px solid var(--primary);
  animation: ctaPulse 2s ease-in-out infinite;
}

.btn--nav:hover {
  background: var(--primary-light);
  animation: none;
}


/* ---------- Top Bar ---------- */
.top-bar {
  background: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 6px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
}

.top-bar__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.top-bar__text {
  font-family: var(--font-nav);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.top-bar__selo {
  width: 28px;
  height: 28px;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  flex-shrink: 0;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
}

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 36px;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Header solid variant for inner pages (planos, etc) */
.header--solid {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Planos page — push content below fixed header + top bar */
.section--planos-page {
  padding-top: 140px !important;
}

.header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.header__logo {
  display: flex;
  align-items: center;
}

.header__logo-img {
  height: 48px;
  width: auto;
  transition: var(--transition);
}

.nav__list {
  display: flex;
  gap: 36px;
}

.nav__link {
  font-family: var(--font-nav);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.6);
  position: relative;
  padding: 4px 0;
  transition: var(--transition);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--primary);
  transition: var(--transition);
}

.nav__link:hover {
  color: var(--dark);
}

.nav__link:hover::after {
  width: 100%;
}

/* Active page indicator - desktop nav */
.nav__link.active {
  color: var(--primary);
  font-weight: 700;
}

.nav__link.active::after {
  width: 100%;
  background: var(--primary);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Header Social Icons */
.header__social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(26, 114, 120, 0.1);
  color: var(--primary);
  transition: all 0.3s ease;
}

.header__social-link:hover {
  background: var(--primary);
  color: #fff;
  transform: scale(1.1);
}

.header__social-link svg {
  stroke: currentColor;
}

/* Mobile Nav Social */
.mobile-nav__social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 20px 0;
  margin-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.mobile-nav__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(26, 114, 120, 0.1);
  color: var(--primary);
  transition: all 0.3s ease;
}

.mobile-nav__social a:hover {
  background: var(--primary);
  color: #fff;
}

.mobile-nav__social a svg {
  stroke: currentColor;
}

/* Cart Button */
.cart-btn {
  position: relative;
  background: none;
  border: none;
  color: var(--dark);
  cursor: pointer;
  padding: 8px;
  transition: var(--transition);
}

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

.cart-btn__badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--primary);
  color: var(--dark);
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---------- Mobile Nav ---------- */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  pointer-events: none;
}

.mobile-nav.active {
  pointer-events: all;
}

.mobile-nav__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  opacity: 0;
  transition: opacity 0.3s;
}

.mobile-nav.active .mobile-nav__overlay {
  opacity: 1;
}

.mobile-nav__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 85vw;
  height: 100%;
  background: linear-gradient(180deg, #1a7278 0%, #0d4a4f 100%);
  padding: 80px 32px 32px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav.active .mobile-nav__panel {
  transform: translateX(0);
}

.mobile-nav__close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 8px;
}

.mobile-nav__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-nav__list li a {
  display: block;
  padding: 16px 0;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.mobile-nav__list li a:hover {
  color: #fff;
}

/* Active page indicator - mobile nav */
.mobile-nav__list li a.active {
  color: #fff;
  font-weight: 700;
  border-left: 3px solid #fff;
  padding-left: 12px;
}

.mobile-nav__cta {
  margin-top: 32px;
}

/* ---------- Cart Sidebar ---------- */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 3000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.cart-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 380px;
  max-width: 90vw;
  height: 100%;
  background: var(--dark-2);
  z-index: 3001;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-sidebar.active {
  transform: translateX(0);
}

.cart-sidebar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.cart-sidebar__header h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
}

.cart-sidebar__close {
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 4px;
}

.cart-sidebar__body {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
}

.cart-sidebar__empty {
  text-align: center;
  padding: 60px 0;
  color: var(--text-muted);
}

.cart-sidebar__empty svg {
  margin-bottom: 16px;
  opacity: 0.3;
}

.cart-sidebar__footer {
  padding: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.cart-sidebar__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-size: 1.1rem;
  font-weight: 700;
}

/* Cart Item */
.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.cart-item__info {
  flex: 1;
}

.cart-item__name {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.cart-item__price {
  color: var(--primary);
  font-weight: 600;
}

.cart-item__remove {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 8px;
  transition: var(--transition);
}

.cart-item__remove:hover {
  color: #e74c3c;
}

/* ---------- Hero — Modelo A: Circulos Flutuantes ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  animation: kenBurns 25s ease-in-out infinite alternate;
}

/* Desktop: show desktop hero, hide mobile hero */
.hero__bg-img--mobile {
  display: none;
}

.hero__bg-img--desktop {
  display: block;
}

@keyframes kenBurns {
  0% { transform: scale(1); }
  100% { transform: scale(1.06); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 50px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes hintFade {
  0% { opacity: 0.7; }
  70% { opacity: 0.7; }
  100% { opacity: 0; }
}

/* Scroll dots - hidden on desktop */
.scroll-dots {
  display: none;
}

.freq-toggle-btn {
  display: none;
}

.plan-card__price-big {
  display: none;
}

/* Badge do premio */
.hero__badge-row {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 40px;
  padding: 6px 20px 6px 6px;
  margin-bottom: 24px;
  animation: fadeInUp 0.7s ease-out 0.2s both;
}

.hero__seal {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(26, 114, 120, 0.5));
}

.hero__badge-text {
  font-family: var(--font-nav);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary-light);
}

/* Titulo */
.hero__title {
  font-family: 'Oswald', 'Arial Narrow', Arial, sans-serif;
  font-size: clamp(1.8rem, 4.5vw, 4rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 16px;
  animation: fadeInUp 0.7s ease-out 0.35s both;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: normal;
}

.hero__title em {
  font-style: normal;
  color: var(--white);
}

/* Subtitulo */
.hero__subtitle {
  font-family: 'Roboto', sans-serif;
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  line-height: 1.6;
  margin-bottom: 50px;
  animation: fadeInUp 0.7s ease-out 0.5s both;
  letter-spacing: normal;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

/* ---------- Hero Bars ---------- */
.hero__bars {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
  animation: fadeInUp 0.7s ease-out 0.65s both;
}

.hero__bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 16px 22px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

/* -- Barra Glass (transparente verde) -- */
.hero__bar--glass {
  background: rgba(26, 114, 120, 0.45);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 2px solid rgba(26, 114, 120, 0.6);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  min-height: 62px;
}

.hero__bar--glass:hover {
  transform: scale(1.05);
  background: rgba(26, 114, 120, 0.4);
  border-color: rgba(26, 114, 120, 0.7);
  box-shadow: 0 8px 32px rgba(26, 114, 120, 0.3), 0 4px 16px rgba(0, 0, 0, 0.2);
}

.hero__bar--glass .hero__bar-label {
  color: #fff;
}

.hero__bar--glass .hero__bar-desc {
  color: rgba(255, 255, 255, 0.85);
}

.hero__bar--glass .hero__bar-desc s {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
}

.hero__bar--glass .hero__bar-desc strong {
  color: #fff;
  font-size: 1em;
}

.hero__bar--glass .hero__bar-chevron {
  color: rgba(255, 255, 255, 0.5);
}

.hero__bar--glass:hover .hero__bar-chevron {
  color: #fff;
}

.hero__bar--glass .hero__bar-svg-icon {
  stroke: rgba(255, 255, 255, 0.9);
}

/* -- Barra CTA (destaque FORTE com efeito de atenção) -- */
.hero__bar--cta {
  position: relative;
  overflow: hidden;
  padding: 20px 28px;
  background: linear-gradient(135deg, rgba(26, 114, 120, 0.75) 0%, rgba(42, 154, 154, 0.70) 50%, rgba(26, 114, 120, 0.75) 100%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 2.5px solid rgba(255, 255, 255, 0.75);
  box-shadow:
    0 4px 20px rgba(26, 114, 120, 0.35),
    0 0 30px rgba(26, 114, 120, 0.20),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  animation: fadeInUp 0.7s ease-out 0.65s both, ctaGlow 2s ease-in-out 1.5s infinite;
}

/* Shimmer sweep — faixa de luz que passa por cima */
.hero__bar--cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 70%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.05) 20%, rgba(255,255,255,0.30) 50%, rgba(255,255,255,0.05) 80%, transparent 100%);
  animation: ctaSweep 2.5s ease-in-out 2s infinite;
  pointer-events: none;
  z-index: 1;
}

/* Glow ring pulsante — borda que "respira" */
.hero__bar--cta::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  background: transparent;
  border: 2px solid rgba(42, 154, 154, 0.5);
  animation: ctaRing 2s ease-in-out 1.5s infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes ctaGlow {
  0%, 100% {
    box-shadow:
      0 4px 20px rgba(26, 114, 120, 0.35),
      0 0 30px rgba(26, 114, 120, 0.20),
      inset 0 1px 0 rgba(255, 255, 255, 0.25);
  }
  50% {
    box-shadow:
      0 6px 30px rgba(26, 114, 120, 0.50),
      0 0 50px rgba(26, 114, 120, 0.35),
      0 0 80px rgba(42, 154, 154, 0.15),
      inset 0 1px 0 rgba(255, 255, 255, 0.35);
  }
}

@keyframes ctaSweep {
  0% { left: -100%; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { left: 200%; opacity: 0; }
}

@keyframes ctaRing {
  0%, 100% {
    border-color: rgba(42, 154, 154, 0.0);
    transform: scale(1);
  }
  50% {
    border-color: rgba(42, 154, 154, 0.4);
    transform: scale(1.02);
  }
}

.hero__bar--cta:hover {
  transform: scale(1.07);
  background: linear-gradient(135deg, rgba(26, 114, 120, 0.65) 0%, rgba(42, 154, 154, 0.60) 50%, rgba(26, 114, 120, 0.65) 100%);
  border-color: #fff;
  box-shadow:
    0 8px 40px rgba(26, 114, 120, 0.50),
    0 0 60px rgba(26, 114, 120, 0.30),
    0 0 0 4px rgba(255, 255, 255, 0.15);
  animation: none;
}

.hero__bar--cta:hover::before,
.hero__bar--cta:hover::after {
  animation: none;
  opacity: 0;
}

.hero__bar--cta .hero__bar-text {
  position: relative;
  z-index: 2;
}

.hero__bar--cta .hero__bar-label {
  color: #fff;
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 3px;
  position: relative;
  z-index: 2;
}

.hero__bar--cta .hero__bar-desc {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.05rem;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.hero__bar--cta .hero__bar-chevron {
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  z-index: 2;
}

.hero__bar--cta:hover .hero__bar-chevron {
  color: #fff;
  transform: translateX(4px);
}

.hero__bar--cta .hero__bar-svg-icon {
  stroke: #fff;
  position: relative;
  z-index: 2;
}

.hero__bar--cta .hero__bar-icon-wrap {
  position: relative;
  z-index: 2;
}

/* -- Elementos internos das barras -- */
.hero__bar-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
}

.hero__bar-svg-icon {
  width: 28px;
  height: 28px;
}

.hero__bar-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: center;
}

.hero__bar-label {
  font-family: var(--font-nav);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  line-height: 1.2;
}

.hero__bar-desc {
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1.2;
}

.hero__bar-chevron {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.hero__bar:hover .hero__bar-chevron {
  transform: translateX(4px);
}

/* -- Selos do Hero -- */
.hero__selos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 20px;
  animation: fadeInUp 0.7s ease-out 0.85s both;
}

.hero__selo {
  height: 80px;
  width: auto;
  border-radius: 0;
  background: none;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease;
}

.hero__selo:hover {
  transform: scale(1.08);
}

/* ---------- Stats Bar ---------- */
.stats-bar {
  background: linear-gradient(135deg, #1a7278 0%, #1e8a8a 50%, #1a7278 100%);
  border-top: none;
  border-bottom: none;
  padding: 40px 0;
}

.stats-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.stats-bar__item {
  flex: 1;
  text-align: center;
  padding: 0 20px;
}

.stats-bar__number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}

.stats-bar__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.stats-bar__divider {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.25);
}

/* ---------- Sections ---------- */
.section {
  padding: 100px 0;
}

.section--dark {
  background: var(--dark);
}

.section--contato {
  background: linear-gradient(135deg, #f0f7f7 0%, #e6f2f2 50%, #f0f7f7 100%);
  color: var(--text-dark);
}

.section--contato .section__label {
  color: var(--primary);
}

.section--contato .section__title {
  color: var(--dark);
}

.section--sobre {
  background: linear-gradient(135deg, #f0f7f7 0%, #e6f2f2 50%, #f0f7f7 100%);
  color: var(--text-dark);
}

.section--sobre .section__label {
  color: var(--primary);
}

.section--sobre .section__title {
  color: var(--dark);
}

.section--sobre .about__text {
  color: #444;
}

.section--sobre .about__features span {
  color: #333;
}

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

.section__header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 50px;
}

#precos .section__header {
  max-width: 100%;
  margin-bottom: 40px;
}

.section__label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3.5vw, 3rem);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 16px;
  text-transform: uppercase;
  white-space: nowrap;
}

.section--light .section__title {
  color: var(--dark);
}

.section__title--left {
  text-align: left;
}

.section__subtitle {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  font-weight: 300;
}

.section--light .section__subtitle {
  color: #666;
}

.section__subtitle--bold {
  font-size: 1.15rem;
  font-weight: 600;
  color: #333;
  line-height: 1.6;
}

/* Hide pricing section from plan cards */
.plan-card__pricing {
  display: none;
}

/* ---------- Plans Grid (Unified) ---------- */
.plans__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.plan-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
}

.plan-card:hover {
  transform: translateY(-6px);
  border-color: rgba(26, 114, 120, 0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.plan-card__photo {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.plan-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.plan-card__body {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.plan-card__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--dark);
  text-align: center;
}

.plan-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  text-align: left;
}

.plan-card__features li {
  position: relative;
  padding-left: 20px;
  font-size: 0.82rem;
  color: #555;
  line-height: 1.5;
  margin-bottom: 6px;
}

.plan-card__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
}

/* Avulsa Banner */
.avulsa-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: rgba(26, 114, 120, 0.06);
  border: 1px solid rgba(26, 114, 120, 0.15);
  border-radius: var(--radius-lg);
  padding: 16px 32px;
  margin-bottom: 32px;
  text-align: center;
  flex-wrap: wrap;
}

.avulsa-banner__label {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
}

.avulsa-banner__price {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--dark);
}

.avulsa-banner__desc {
  font-size: 0.8rem;
  color: #111;
}

.plan-card__pricing {
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: 16px;
  margin-bottom: 20px;
}

/* Plan Tabs */
.plan-card__tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 12px;
  background: rgba(0,0,0,0.04);
  border-radius: 8px;
  padding: 3px;
}

.plan-card__tab {
  flex: 1;
  padding: 6px 4px;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  background: transparent;
  color: #888;
  cursor: pointer;
  border-radius: 6px;
  transition: var(--transition);
}

.plan-card__tab.active {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 2px 8px rgba(26, 114, 120, 0.3);
}

.plan-card__tab {
  position: relative;
}

.plan-card__tab--best::after {
  content: 'Mais escolhido';
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-body);
  font-size: 0.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #e8a200;
  white-space: nowrap;
}

.plan-card__tab-content {
  display: none;
}

.plan-card__tab-content.active {
  display: block;
}

.plan-card__matricula {
  display: block;
  text-align: center;
  font-size: 0.7rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.plan-card__matricula--free {
  color: #e8a200;
  font-weight: 700;
}

/* Plan benefits (vacation, reschedule) */
.plan-card__benefits {
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px dashed rgba(0,0,0,0.08);
}

.plan-card__benefit {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  color: #666;
  margin-bottom: 4px;
}

.plan-card__benefit svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  stroke: var(--primary);
}

.plan-card__benefit--highlight {
  color: #e8a200;
  font-weight: 600;
}

.plan-card__benefit--highlight svg {
  stroke: #e8a200;
}

/* Reschedule banner under all plans */
.plan-card__reschedule {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(26, 114, 120, 0.06);
  border-radius: 6px;
  padding: 8px 12px;
  margin-top: 12px;
  font-size: 0.68rem;
  color: var(--primary-dark);
  font-weight: 500;
}

.plan-card__reschedule svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  stroke: var(--primary);
}

/* Annual plan highlight wrapper */
.plan-card__tab-content--anual .plan-card__matricula {
  background: linear-gradient(135deg, rgba(232, 162, 0, 0.1), rgba(232, 162, 0, 0.05));
  border-radius: 6px;
  padding: 6px 10px;
  color: #e8a200;
  font-weight: 700;
}

.plan-card__price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  border-radius: 6px;
  margin-bottom: 4px;
}

.plan-card__price-row--featured {
  background: linear-gradient(135deg, rgba(26, 114, 120, 0.10), rgba(26, 114, 120, 0.18));
  border: 1.5px solid rgba(26, 114, 120, 0.25);
  padding: 10px 12px;
  margin-bottom: 6px;
  margin-top: 2px;
  border-radius: 8px;
  position: relative;
}

.plan-card__price-row--featured .plan-card__price-value {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.plan-card__price-row--featured .plan-card__price-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-dark);
}

.plan-card__price-label {
  font-size: 0.8rem;
  color: #555;
}

.plan-card__price-label em {
  font-style: normal;
  font-size: 0.7rem;
  color: #999;
  display: block;
}

.plan-card__price-value {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark);
  white-space: nowrap;
  text-align: right;
}

/* Bodytech-style: new price with discount */
.plan-card__price-value--new {
  color: var(--primary-dark);
  font-weight: 600;
}

.plan-card__price-was {
  font-size: 0.75rem;
  color: #aaa;
  font-weight: 400;
  text-decoration: line-through;
  margin-left: 6px;
}

/* Discount banner on annual tab */
.plan-card__discount-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 8px 14px;
  border-radius: 8px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.plan-card__discount-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #e74c3c;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0;
}

/* "Mais Vendido" badge */
.badge-popular {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 0.55rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 2px 7px;
  border-radius: 10px;
  margin-left: 6px;
  vertical-align: middle;
  position: relative;
  top: -1px;
}

/* Aula experimental: strikethrough old price + big GRÁTIS */
.avulsa-banner__price-old {
  font-size: 1.2rem;
  color: #999;
  text-decoration: line-through;
  font-weight: 400;
}

.avulsa-banner__price-free {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 1px;
  text-shadow: 0 2px 8px rgba(26, 114, 120, 0.15);
}

/* Avulsa Banner CTA — clickable shimmer button */
.avulsa-banner--cta {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: linear-gradient(135deg, rgba(26, 114, 120, 0.10) 0%, rgba(26, 114, 120, 0.18) 100%);
  border: 2px solid rgba(26, 114, 120, 0.35);
  transition: all 0.3s ease;
  animation: avulsaPulse 2.5s ease-in-out infinite;
}

.avulsa-banner--cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(26, 114, 120, 0.20), rgba(255, 255, 255, 0.15), transparent);
  animation: avulsaShimmer 2.8s ease-in-out 1s infinite;
  pointer-events: none;
  z-index: 1;
}

.avulsa-banner--cta:hover {
  transform: scale(1.03);
  border-color: var(--primary);
  background: linear-gradient(135deg, rgba(26, 114, 120, 0.15) 0%, rgba(26, 114, 120, 0.25) 100%);
  box-shadow: 0 6px 30px rgba(26, 114, 120, 0.25), 0 0 0 4px rgba(26, 114, 120, 0.08);
}

.avulsa-banner--cta:hover .avulsa-banner__price-free {
  text-shadow: 0 2px 12px rgba(26, 114, 120, 0.35);
}

@keyframes avulsaPulse {
  0%, 100% { box-shadow: 0 2px 10px rgba(26, 114, 120, 0.1); }
  50% { box-shadow: 0 4px 24px rgba(26, 114, 120, 0.25), 0 0 0 6px rgba(26, 114, 120, 0.06); }
}

@keyframes avulsaShimmer {
  0% { left: -100%; }
  100% { left: 200%; }
}

/* "Valor por pessoa" note for Dupla */
.plan-card__per-person {
  display: block;
  text-align: right;
  font-size: 0.6rem;
  color: #999;
  font-style: italic;
  margin-top: 2px;
  margin-bottom: 4px;
  padding-right: 12px;
}

.plan-card__actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

.plan-card__actions .btn {
  flex: 1;
  text-align: center;
  padding: 10px 8px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
}

/* Green CTA "Quero esse" button on index.html */
.plan-card__cta {
  margin-top: auto;
  padding-top: 8px;
}

.btn--quero-esse {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px 20px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  background: var(--primary);
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.3s ease;
  animation: queroEssePulse 2s ease-in-out infinite;
}

.btn--quero-esse:hover {
  background: var(--primary-dark);
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(26, 114, 120, 0.4);
  animation: none;
}

@keyframes queroEssePulse {
  0%, 100% { transform: scale(1); box-shadow: 0 2px 10px rgba(26, 114, 120, 0.2); }
  50% { transform: scale(1.03); box-shadow: 0 4px 16px rgba(26, 114, 120, 0.35); }
}

.btn--saiba-mais {
  display: inline-block;
  padding: 10px 28px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
}

.btn--saiba-mais:hover {
  background: var(--primary);
  color: #fff;
}

/* ---------- Modal Saiba Mais ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 20px;
}

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

.modal {
  background: #fff;
  border-radius: var(--radius-lg);
  max-width: 700px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(30px) scale(0.95);
  transition: transform 0.3s ease;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.modal-overlay.active .modal {
  transform: translateY(0) scale(1);
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.modal__close:hover {
  background: #fff;
  transform: scale(1.1);
}

.modal__img {
  width: 100%;
  height: 350px;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

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

.modal__content {
  padding: 32px;
}

.modal__title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 8px;
}

.modal__duration {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 20px;
}

.modal__text {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 28px;
}

.modal__cta {
  display: inline-block;
  text-decoration: none;
}

@media (max-width: 768px) {
  .modal__img {
    height: 220px;
  }

  .modal__content {
    padding: 24px;
  }

  .modal__title {
    font-size: 1.4rem;
  }
}

/* ---------- Pricing ---------- */
.pricing-toggle {
  display: flex;
  justify-content: center;
  gap: 4px;
  background: var(--light-2);
  border-radius: 8px;
  padding: 4px;
  max-width: 500px;
  margin: 0 auto 48px;
}

.pricing-toggle__btn {
  flex: 1;
  padding: 12px 20px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: none;
  border: none;
  border-radius: 6px;
  color: #666;
  cursor: pointer;
  transition: var(--transition);
}

.pricing-toggle__btn.active {
  background: var(--dark);
  color: var(--white);
  box-shadow: var(--shadow);
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing__grid--hidden {
  display: none;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  border: 2px solid transparent;
  transition: var(--transition);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.pricing-card--featured {
  border-color: var(--primary);
  transform: scale(1.05);
  box-shadow: 0 20px 60px rgba(26, 114, 120, 0.2);
}

.pricing-card--featured:hover {
  transform: scale(1.05) translateY(-8px);
}

.pricing-card__tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 20px;
}

.pricing-card__name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 8px;
  margin-top: 8px;
}

.pricing-card__price {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 500;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-card__currency {
  font-size: 1.2rem;
  vertical-align: super;
}

.pricing-card__period {
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 24px;
}

.pricing-card__features {
  list-style: none;
  text-align: left;
  margin-bottom: 32px;
}

.pricing-card__features li {
  padding: 8px 0;
  font-size: 0.9rem;
  color: #555;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-card__features li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
}

.pricing-card__features li:last-child {
  border-bottom: none;
}

/* ---------- About ---------- */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about__img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 500px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.about__content .section__label,
.about__content .section__title {
  text-align: left;
}

.about__text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 16px;
}

.about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}

.about__feature {
  display: flex;
  align-items: center;
  gap: 10px;
}

.about__feature svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke: var(--primary);
}

.about__feature span {
  font-size: 0.85rem;
  font-weight: 500;
}

/* ---------- Testimonials ---------- */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.testimonial-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.testimonial-card__stars svg {
  width: 16px;
  height: 16px;
  fill: #f5a623;
}

.testimonial-card__text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  flex-direction: column;
}

.testimonial-card__name {
  font-weight: 700;
  color: var(--dark);
  font-size: 0.9rem;
}

.testimonial-card__role {
  font-size: 0.8rem;
  color: #999;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  position: relative;
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
}

.cta-banner__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.cta-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.85);
}

.cta-banner__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 24px;
}

.cta-banner__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.cta-banner__text {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
  font-weight: 300;
}

.cta-banner__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Contact ---------- */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact__item svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  stroke: var(--primary);
  margin-top: 4px;
}

.contact__item strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--dark);
}

.contact__item p {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.7;
}

.btn--como-chegar {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 20px;
  background: #33ccff;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn--como-chegar:hover {
  background: #28b5e0;
  transform: scale(1.05);
}

.contact__visual {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.contact__map {
  height: 280px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08);
}

.contact__fachada {
  height: 250px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08);
}

.contact__fachada-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

@media (max-width: 768px) {
  .contact__visual {
    grid-template-columns: 1fr;
  }

  .contact__map {
    height: 220px;
  }

  .contact__fachada {
    min-height: 200px;
  }
}

/* ---------- Page Hero (subpages) ---------- */
.page-hero {
  padding: 140px 0 50px;
  background: var(--light);
  text-align: center;
}
.page-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--dark);
}
.page-hero__subtitle {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-top: 12px;
  font-weight: 300;
}

/* ---------- Studio Compare ---------- */
.studio-compare {
  padding: 80px 0 40px;
  background: var(--white);
}
.studio-compare--hero {
  padding-top: 140px;
}
.studio-compare__heading {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--dark);
  margin-bottom: 50px;
  text-align: center;
}
.studio-compare__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.studio-compare__card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.studio-compare__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}
.studio-compare__img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #f0f0f0;
}
.studio-compare__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.studio-compare__caption {
  padding: 24px;
  text-align: center;
}
.studio-compare__caption h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--dark);
  margin-bottom: 6px;
}
.studio-compare__caption p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 8px;
}
.studio-compare__credit {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: #aaa;
  font-style: italic;
}
.studio-compare__legacy {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.studio-compare__legacy blockquote {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.8;
  color: #444;
  padding: 28px 36px;
  background: var(--light);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 0;
  text-align: left;
}
.studio-compare__legacy blockquote cite {
  display: block;
  margin-top: 12px;
  font-size: 0.85rem;
  font-style: normal;
  font-weight: 500;
  color: var(--primary);
}

/* ---------- Metodo Manifesto ---------- */
.metodo-manifesto {
  padding: 70px 0 80px;
  background: var(--white);
}
.metodo-manifesto--close {
  padding-top: 20px;
}
.metodo-manifesto__title {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--dark);
  text-align: center;
  margin-bottom: 40px;
}
.metodo-manifesto__content {
  max-width: 820px;
  margin: 0 auto;
}
.metodo-manifesto__lead {
  font-size: 1.15rem;
  line-height: 1.9;
  color: #333;
  margin-bottom: 24px;
}
.metodo-manifesto__content p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.85;
  color: #555;
  margin-bottom: 20px;
}
.metodo-manifesto__content h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--dark);
  margin-top: 50px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--light-2);
}
.metodo-manifesto__problems,
.metodo-manifesto__benefits {
  margin: 30px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.metodo-manifesto__problem,
.metodo-manifesto__benefit {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  border-radius: var(--radius);
  transition: transform 0.2s ease;
}
.metodo-manifesto__problem {
  background: #fef2f2;
  border: 1px solid #fecaca;
}
.metodo-manifesto__benefit {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
}
.metodo-manifesto__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-top: 2px;
}
.metodo-manifesto__problem .metodo-manifesto__icon {
  color: #dc2626;
  background: #fee2e2;
}
.metodo-manifesto__icon--check {
  color: var(--primary);
  background: #dcfce7;
}
.metodo-manifesto__icon svg {
  width: 20px;
  height: 20px;
}
.metodo-manifesto__problem strong,
.metodo-manifesto__benefit strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--dark);
  margin-bottom: 6px;
}
.metodo-manifesto__problem p,
.metodo-manifesto__benefit p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 0;
}
.metodo-manifesto__highlight {
  margin-top: 50px;
  padding: 40px;
  background: linear-gradient(135deg, rgba(26,114,120,0.04), rgba(26,114,120,0.08));
  border: 1px solid rgba(26,114,120,0.15);
  border-radius: var(--radius-lg);
  position: relative;
}
.metodo-manifesto__highlight::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: var(--primary);
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}
.metodo-manifesto__highlight p {
  font-size: 1.08rem;
  line-height: 1.85;
  color: #333;
}
.metodo-manifesto__highlight p:last-child {
  margin-bottom: 0;
}

.studio-compare__legacy-section {
  padding: 40px 0 0;
  background: var(--white);
}

/* ---------- Metodo Versus ---------- */
.metodo-versus {
  padding: 80px 0;
  background: var(--light);
}
.metodo-versus__title {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--dark);
  text-align: center;
  margin-bottom: 50px;
}
.metodo-versus__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
}
.metodo-versus__col {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.metodo-versus__col--circuito {
  border-top: 4px solid #dc2626;
}
.metodo-versus__col--ht {
  border-top: 4px solid var(--primary);
}
.metodo-versus__img-wrap {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #f0f0f0;
}
.metodo-versus__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.metodo-versus__header {
  padding: 28px 28px 24px;
  text-align: center;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.metodo-versus__badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.metodo-versus__badge--circuito {
  background: #fef2f2;
  color: #dc2626;
  border: 1px solid #fecaca;
}
.metodo-versus__badge--ht {
  background: #f0fdf4;
  color: var(--primary);
  border: 1px solid #bbf7d0;
}
.metodo-versus__header h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--dark);
  margin-bottom: 10px;
}
.metodo-versus__desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.6;
  color: #777;
}
.metodo-versus__list {
  list-style: none;
  padding: 20px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.metodo-versus__item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  border-radius: var(--radius);
}
.metodo-versus__item--negative {
  background: #fef2f2;
  border: 1px solid #fecaca;
}
.metodo-versus__item--positive {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
}
.metodo-versus__item-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-top: 2px;
}
.metodo-versus__item--negative .metodo-versus__item-icon {
  color: #dc2626;
  background: #fee2e2;
}
.metodo-versus__item--positive .metodo-versus__item-icon {
  color: var(--primary);
  background: #dcfce7;
}
.metodo-versus__item-icon svg {
  width: 16px;
  height: 16px;
}
.metodo-versus__item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--dark);
  margin-bottom: 4px;
}
.metodo-versus__item p {
  font-family: var(--font-body);
  font-size: 0.85rem;
  line-height: 1.6;
  color: #666;
  margin: 0;
}
.metodo-versus__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}
.metodo-versus__divider span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Versus Responsive */
@media (max-width: 768px) {
  .metodo-versus__grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding-bottom: 8px;
    scrollbar-width: none;
  }
  .metodo-versus__grid::-webkit-scrollbar {
    display: none;
  }
  .metodo-versus__col {
    flex: 0 0 88%;
    max-width: 88%;
    scroll-snap-align: center;
  }
  .metodo-versus__divider {
    display: none;
  }
}

/* ---------- Estrutura Page ---------- */
.estrutura-hero {
  padding: 110px 0 10px;
  background: var(--white);
  text-align: center;
}
.estrutura-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--dark);
  margin-bottom: 16px;
}
.estrutura-hero__title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
}
.estrutura-hero__title-wrap .estrutura-hero__title {
  margin-bottom: 0;
}
.estrutura-hero__selo-google {
  height: 120px;
  flex-shrink: 0;
}
.estrutura-hero__sub {
  font-size: 1.15rem;
  color: #666;
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.6;
}
.estrutura-galeria {
  padding: 30px 0 60px;
  background: var(--white);
}
.estrutura-galeria--alt {
  background: #f9fafb;
}
.estrutura-galeria__section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--dark);
  text-align: center;
  margin-bottom: 10px;
}
.estrutura-galeria__section-desc {
  text-align: center;
  color: #666;
  font-size: 1.05rem;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.estrutura-galeria__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.estrutura-galeria__item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #f3f4f6;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.estrutura-galeria__item::after {
  content: '';
  position: absolute;
  bottom: 50px;
  right: 16px;
  width: 80px;
  height: 80px;
  background: url('../images/logo-ht.png') no-repeat center/contain;
  opacity: 0.9;
  pointer-events: none;
  z-index: 2;
}
.estrutura-galeria__item:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.estrutura-galeria__item img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.estrutura-galeria__item:hover img {
  transform: scale(1.05);
}
.estrutura-galeria__caption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  padding: 6px 14px;
  background: rgba(0,0,0,0.55);
  color: white;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  z-index: 1;
}
.estrutura-galeria__credit {
  display: block;
  text-align: center;
  font-size: 0.75rem;
  color: #333;
  padding: 8px 0;
  font-family: var(--font-body);
  font-style: italic;
  background: white;
}
.estrutura-galeria__item--wide {
  grid-column: span 2;
}
@media (max-width: 768px) {
  .estrutura-hero {
    padding: 120px 0 40px;
  }
  .estrutura-galeria__grid {
    grid-template-columns: 1fr;
  }
  .estrutura-galeria__item img {
    height: 250px;
  }
  .estrutura-galeria__item--wide {
    grid-column: span 1;
  }
}

/* ---------- Lightbox ---------- */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.92);
  z-index: 10000;
  align-items: center;
  justify-content: center;
}
.lightbox.active {
  display: flex;
}
.lightbox__content {
  display: flex;
  flex-direction: column;
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}
.lightbox__img-wrap {
  position: relative;
}
.lightbox__img {
  display: block;
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
}
.lightbox__overlay-caption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  padding: 6px 14px;
  background: rgba(0,0,0,0.55);
  color: white;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
}
.lightbox__overlay-logo {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 80px;
  height: 80px;
  object-fit: contain;
  opacity: 0.9;
  pointer-events: none;
}
.lightbox__credit {
  background: white;
  color: #333;
  text-align: center;
  padding: 8px 0;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-style: italic;
}
.lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: white;
  font-size: 2.2rem;
  cursor: pointer;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s;
}
.lightbox__close:hover {
  background: rgba(255,255,255,0.15);
}
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s;
}
.lightbox__nav:hover {
  background: rgba(255,255,255,0.25);
}
.lightbox__nav--prev {
  left: 20px;
}
.lightbox__nav--next {
  right: 20px;
}
@media (max-width: 768px) {
  .lightbox__nav {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
  .lightbox__nav--prev { left: 8px; }
  .lightbox__nav--next { right: 8px; }
  .lightbox__overlay-caption { font-size: 0.9rem; }
  .lightbox__overlay-logo { width: 50px; height: 50px; }
}

/* ---------- Depoimentos / Clientes ---------- */
.depoimentos {
  padding: 20px 0 60px;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.depoimentos::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: url('../images/selo-google.png') no-repeat center / contain;
  opacity: 0.12;
  pointer-events: none;
  z-index: 2;
}
.depoimentos > .container {
  position: relative;
  z-index: 1;
}
.depoimentos__counter {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 24px;
  background: rgba(201,169,110,0.1);
  display: inline-block;
  padding: 8px 24px;
  border-radius: 30px;
  border: 1px solid rgba(201,169,110,0.3);
  width: auto;
}
.depoimentos__counter-wrap {
  text-align: center;
  margin-bottom: 16px;
}
.depoimentos__wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.depoimentos__nav-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 8px;
}
.depoimentos__track {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
  min-height: 280px;
}
.depoimentos__nav {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background: white;
  color: var(--primary);
  font-size: 2rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.depoimentos__nav:hover {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 16px rgba(201,169,110,0.4);
}
.depoimentos__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.depoimentos__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #ccc;
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
  padding: 0;
}
.depoimentos__dot.active {
  background: var(--primary);
  border-color: var(--primary);
}
.depoimentos__dot:hover {
  border-color: var(--primary);
}

/* Depoimento Card */
.depoimento-card {
  background: rgba(255,255,255,0.95);
  border-radius: 12px;
  padding: 20px 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  border: 1px solid #f0f0f0;
  border-left: 4px solid var(--primary);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.depoimento-card:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  border-left-color: var(--primary-dark, #b8963e);
}
.depoimento-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  min-width: 180px;
}
.depoimento-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: white;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.depoimento-card__name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  margin: 0 0 2px;
}
.depoimento-card__stars {
  color: #f5b731;
  font-size: 0.9rem;
  letter-spacing: 2px;
}
.depoimento-card__text {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .depoimento-card {
    flex-direction: column;
    gap: 12px;
    padding: 16px 20px;
  }
  .depoimento-card__header {
    min-width: auto;
  }
  .depoimentos__nav {
    width: 44px;
    height: 44px;
    font-size: 1.5rem;
  }
}

/* ---------- Metodologia CTA ---------- */
.metodologia-cta {
  padding: 80px 0;
  background: var(--light);
  text-align: center;
}
.metodologia-cta h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--dark);
  margin-bottom: 12px;
}
.metodologia-cta p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: #666;
  margin-bottom: 30px;
}
.metodologia-cta .avulsa-banner {
  max-width: 520px;
  margin: 0 auto;
}

/* Botão CTA com brilho animado */
.btn--historia {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 48px;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark, #b8963e));
  border: none;
  border-radius: 50px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 20px rgba(201,169,110,0.4);
  animation: historiaPulse 2s ease-in-out infinite;
}
.btn--historia:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(201,169,110,0.6);
  animation: none;
}
@keyframes historiaPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(26, 114, 120, 0.3); }
  50% { box-shadow: 0 4px 25px rgba(26, 114, 120, 0.5), 0 0 0 8px rgba(26, 114, 120, 0.08); }
}
.btn--historia::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: skewX(-25deg);
  animation: btnShine 3s infinite;
}
@keyframes btnShine {
  0% { left: -75%; }
  30% { left: 125%; }
  100% { left: 125%; }
}
.btn--lg {
  padding: 18px 40px;
  font-size: 0.95rem;
}

/* Studio Compare & Manifesto Responsive */
@media (max-width: 768px) {
  .studio-compare--hero {
    padding-top: 120px;
  }
  .studio-compare__grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding-bottom: 8px;
    scrollbar-width: none;
  }

  .studio-compare__grid::-webkit-scrollbar {
    display: none;
  }

  .studio-compare__card {
    flex: 0 0 85%;
    max-width: 85%;
    scroll-snap-align: center;
  }
  .studio-compare__legacy blockquote {
    padding: 20px 24px;
    font-size: 1rem;
  }
  .page-hero {
    padding: 120px 0 40px;
  }
  .metodo-manifesto__highlight {
    padding: 24px;
  }
  .metodo-manifesto__problem,
  .metodo-manifesto__benefit {
    padding: 18px;
  }
}

/* ---------- Footer ---------- */
.footer {
  background: #fff;
  padding: 60px 0 0;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer__logo {
  height: 50px;
  width: auto;
  margin-bottom: 16px;
}

.footer__tagline {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(0,0,0,0.05);
  border-radius: 50%;
  transition: var(--transition);
  color: #555;
}

.footer__social a:hover {
  background: var(--primary);
  color: var(--white);
}

.footer__social a svg {
  width: 18px;
  height: 18px;
}

.footer__links h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 20px;
}

.footer__links ul li {
  margin-bottom: 10px;
}

.footer__links ul li a,
.footer__links ul li {
  font-size: 0.85rem;
  color: #666;
  transition: var(--transition);
}

.footer__links ul li a:hover {
  color: var(--primary);
}

.footer__bottom {
  border-top: 1px solid rgba(0,0,0,0.08);
  padding: 24px 0;
  text-align: center;
}

.footer__bottom p {
  font-size: 0.8rem;
  color: #999;
}

/* ---------- Contato Page ---------- */
.contato-section {
  padding: 20px 0 60px;
  background: var(--white);
}
.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}
.contato-grid__map {
  min-height: 400px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.contato-grid__map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
}
.contato-grid__photo {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.contato-grid__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.contato-info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.contato-info__card {
  text-align: center;
  padding: 32px 20px;
  background: #f9fafb;
  border-radius: 12px;
  border: 1px solid #f0f0f0;
  transition: transform 0.3s, box-shadow 0.3s;
}
.contato-info__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.contato-info__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  color: var(--primary);
}
.contato-info__icon svg {
  width: 100%;
  height: 100%;
}
.contato-info__card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--dark);
  margin-bottom: 12px;
}
.contato-info__card p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
}
.contato-info__card a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}
.contato-info__card a:hover {
  text-decoration: underline;
}
.contato-como-chegar {
  text-align: center;
}
@media (max-width: 768px) {
  .contato-grid {
    grid-template-columns: 1fr;
  }
  .contato-info {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .contato-info {
    grid-template-columns: 1fr;
  }
}

/* ---------- WhatsApp Float ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
  animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: var(--white);
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1); }
}

/* ---------- Reveal Animations ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .plans__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .about__img {
    height: 350px;
  }

  .about__content .section__label,
  .about__content .section__title {
    text-align: center;
  }

  .about__text {
    text-align: center;
  }

  .about__features {
    justify-items: center;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .btn--nav { display: none; }
  .header__social { display: none; }
  .menu-toggle { display: flex; }

  .header__inner {
    height: 60px;
  }

  .header__logo-img {
    height: 40px;
  }

  /* Mobile: swap hero image to portrait */
  .hero__bg-img--desktop {
    display: none;
  }

  .hero__bg-img--mobile {
    display: block;
    object-position: center center;
  }

  .hero__content {
    padding-top: 110px;
    padding-bottom: 28px;
  }

  .hero__title {
    font-size: clamp(1.1rem, 4.5vw, 2.2rem);
  }

  .hero__stats-line {
    font-size: 0.7rem;
    letter-spacing: 1px;
    margin-bottom: 32px;
  }

  .hero__bars {
    max-width: 100%;
    gap: 8px;
  }

  .hero__bar {
    padding: 12px 16px;
    gap: 12px;
    border-radius: 40px;
  }

  .hero__bar-icon-wrap {
    width: 36px;
    height: 36px;
  }

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

  .hero__bar-label {
    font-size: 0.78rem;
    letter-spacing: 0.8px;
  }

  .hero__bar-desc {
    font-size: 0.68rem;
  }

  .hero__bar-chevron {
    width: 18px;
    height: 18px;
  }

  .section__title {
    white-space: normal;
    font-size: clamp(1.2rem, 5vw, 1.8rem);
  }

  .stats-bar__inner {
    flex-wrap: wrap;
    gap: 20px;
  }

  .stats-bar__item {
    flex: 1 1 40%;
    min-width: 120px;
  }

  .stats-bar__divider {
    display: none;
  }

  .stats-bar__number {
    font-size: 2rem;
  }

  .plans__grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding-bottom: 12px;
    scrollbar-width: none;
  }

  .plans__grid::-webkit-scrollbar {
    display: none;
  }

  .plans__grid > .plan-card,
  .plans__grid > .avulsa-banner {
    flex: 0 0 85%;
    max-width: 85%;
    scroll-snap-align: center;
  }

  /* Scroll hint arrow */
  .plans__grid::after {
    content: '→ arraste';
    position: absolute;
    bottom: -22px;
    right: 16px;
    font-size: 0.7rem;
    color: var(--primary);
    font-weight: 500;
    letter-spacing: 0.5px;
    opacity: 0.7;
    animation: hintFade 3s ease-in-out forwards;
  }

  .plans__grid {
    position: relative;
  }

  /* Scroll dots container */
  .scroll-dots {
    display: flex !important;
    justify-content: center;
    gap: 8px;
    padding: 12px 0 4px;
  }

  .scroll-dots__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
    cursor: pointer;
  }

  .scroll-dots__dot--active {
    background: var(--primary);
    transform: scale(1.3);
  }

  .pricing__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pricing-card--featured {
    transform: none;
  }

  .pricing-card--featured:hover {
    transform: translateY(-8px);
  }

  .pricing-toggle {
    flex-direction: column;
    max-width: 280px;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact__map {
    min-height: 280px;
  }

  .cta-banner__bg {
    background-attachment: scroll;
  }

  .cta-banner__actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-banner__actions .btn {
    width: 100%;
    max-width: 300px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer__social {
    justify-content: center;
  }

  .footer__logo {
    margin: 0 auto 16px;
  }

  .section {
    padding: 70px 0;
  }

  .section__header {
    margin-bottom: 40px;
  }

  .top-bar__text {
    font-size: 0.55rem;
    letter-spacing: 1.5px;
  }

  .top-bar__selo {
    width: 22px;
    height: 22px;
  }

  /* ---- Mobile Pricing Bodytech Style ---- */

  /* All frequency rows visible on mobile */
  .plan-card__price-row {
    display: flex !important;
  }

  /* Featured row: Bodytech big price style */
  .plan-card__price-row--featured {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 16px;
    margin: 0 -4px;
    background: linear-gradient(135deg, rgba(26, 114, 120, 0.06), rgba(26, 114, 120, 0.12));
    border: 1.5px solid rgba(26, 114, 120, 0.15);
    border-radius: 12px;
  }

  .plan-card__price-row--featured .plan-card__price-label {
    font-size: 1.1rem;
    color: var(--primary-dark);
    font-weight: 700;
    margin-bottom: 6px;
    order: -1;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .plan-card__price-row--featured .plan-card__price-value,
  .plan-card__price-row--featured .plan-card__price-value--new {
    font-size: 0.75rem !important;
    font-weight: 400 !important;
    color: #888 !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
  }

  /* The big price number - extract from "12x de R$ 618" */
  .plan-card__price-row--featured .plan-card__price-big {
    display: block !important;
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--dark) !important;
    line-height: 1;
    letter-spacing: -1px;
    margin: 4px 0;
  }

  .plan-card__price-row--featured .plan-card__price-was {
    font-size: 0.8rem;
    margin-left: 0;
    margin-top: 4px;
  }

  .plan-card__price-row--featured .badge-popular {
    display: inline-block;
    margin-left: 0;
    margin-top: 2px;
  }

  /* Non-featured rows (1x and 3x) - compact style below featured */
  .plan-card__price-row:not(.plan-card__price-row--featured) {
    padding: 10px 12px;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    background: rgba(0,0,0,0.015);
  }

  .plan-card__price-row:not(.plan-card__price-row--featured) .plan-card__price-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #444;
  }

  /* Hide toggle button (no longer needed) */
  .freq-toggle-btn {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: clamp(0.95rem, 4.2vw, 1.8rem);
  }

  .hero__badge {
    flex-direction: column;
    text-align: center;
  }

  .plan-card__body {
    padding: 20px 16px;
  }

  .pricing-card {
    padding: 32px 24px;
  }
}

/* ============================================
   Voucher Modal — 1º Mês Grátis
   ============================================ */
.voucher-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.voucher-overlay.active {
  display: flex;
  opacity: 1;
}

.voucher-modal {
  background: #fff;
  border-radius: 20px;
  max-width: 420px;
  width: 100%;
  padding: 32px 28px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: voucherSlideIn 0.4s ease-out;
  max-height: 90vh;
  overflow-y: auto;
}

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

.voucher-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(0, 0, 0, 0.06);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 2;
}

.voucher-modal__close:hover {
  background: rgba(0, 0, 0, 0.12);
}

/* Header */
.voucher-modal__header {
  text-align: center;
  margin-bottom: 24px;
}

.voucher-modal__emoji {
  font-size: 3rem;
  display: block;
  margin-bottom: 8px;
  animation: voucherBounce 0.6s ease-out 0.3s both;
}

@keyframes voucherBounce {
  0% { transform: scale(0); }
  50% { transform: scale(1.3); }
  70% { transform: scale(0.9); }
  100% { transform: scale(1); }
}

.voucher-modal__title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
}

.voucher-modal__subtitle {
  font-size: 0.95rem;
  color: #666;
  margin: 6px 0 0;
}

/* Voucher Ticket */
.voucher-ticket {
  background: linear-gradient(135deg, #f0fafa 0%, #e8f5f5 100%);
  border: 2px dashed rgba(26, 114, 120, 0.35);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  margin-bottom: 24px;
}

.voucher-ticket__cut {
  position: absolute;
  width: 24px;
  height: 24px;
  background: #fff;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.voucher-ticket__cut--left {
  left: -12px;
  box-shadow: inset -3px 0 6px rgba(26, 114, 120, 0.1);
}

.voucher-ticket__cut--right {
  right: -12px;
  box-shadow: inset 3px 0 6px rgba(26, 114, 120, 0.1);
}

.voucher-ticket__top {
  padding: 24px 20px 18px;
  text-align: center;
}

.voucher-ticket__badge {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.voucher-ticket__promo {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin: 0;
  letter-spacing: 1px;
}

.voucher-ticket__desc {
  font-size: 0.85rem;
  color: #666;
  margin: 6px 0 0;
}

/* Divider with scissors */
.voucher-ticket__divider {
  border-top: 2px dashed rgba(26, 114, 120, 0.25);
  position: relative;
  margin: 0 20px;
}

.voucher-ticket__scissors {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: #f0fafa;
  padding: 0 8px;
  font-size: 0.9rem;
  color: var(--primary);
}

.voucher-ticket__bottom {
  padding: 18px 20px 22px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.voucher-ticket__code-label {
  font-size: 0.7rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.voucher-ticket__code {
  font-family: 'Courier New', monospace;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-dark);
  letter-spacing: 4px;
  background: rgba(26, 114, 120, 0.08);
  padding: 8px 16px;
  border-radius: 8px;
  display: inline-block;
  margin: 4px auto;
  border: 1px solid rgba(26, 114, 120, 0.15);
}

.voucher-ticket__validity {
  font-size: 0.8rem;
  font-weight: 600;
  color: #c0392b;
  margin-top: 4px;
}

.voucher-ticket__location {
  font-size: 0.72rem;
  color: #999;
}

/* WhatsApp CTA Button */
.voucher-modal__whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 24px;
  background: #25d366;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  animation: voucherPulseGreen 2s ease-in-out 1s infinite;
}

.voucher-modal__whatsapp svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.voucher-modal__whatsapp:hover {
  background: #20bd5a;
  transform: scale(1.03);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
}

@keyframes voucherPulseGreen {
  0%, 100% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35); }
  50% { box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5), 0 0 0 8px rgba(37, 211, 102, 0.1); }
}

/* Footer text */
.voucher-modal__footer {
  text-align: center;
  font-size: 0.78rem;
  color: #999;
  margin: 14px 0 0;
  line-height: 1.4;
}

/* Hero bar as button reset */
button.hero__bar {
  font-family: inherit;
  text-align: center;
  border: none;
  width: 100%;
  cursor: pointer;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .voucher-modal {
    padding: 24px 20px;
    border-radius: 16px;
    max-width: 340px;
  }

  .voucher-modal__emoji {
    font-size: 2.5rem;
  }

  .voucher-modal__title {
    font-size: 1.5rem;
  }

  .voucher-ticket__promo {
    font-size: 1.6rem;
  }

  .voucher-ticket__code {
    font-size: 1.4rem;
    letter-spacing: 3px;
  }

  .voucher-modal__whatsapp {
    font-size: 0.95rem;
    padding: 14px 20px;
  }
}
