/* ================================================
   Studio Rita Perez — Stylesheet v4
   Identidade: Premium Luxury · Rose Gold · Noir
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=Inter:wght@300;400;500;600&display=swap');

/* ---------- VARIÁVEIS ---------- */
:root {
  --rose:         #B5476D;
  --rose-light:   #C96485;
  --rose-glow:    rgba(181, 71, 109, 0.09);
  --rose-border:  rgba(181, 71, 109, 0.20);
  --gold:         #9A7B55;
  --gold-light:   #B89870;

  --bg:           #FAF7F5;
  --bg-white:     #FFFFFF;
  --bg-section:   #F0EBE5;
  --bg-dark:      #120D0A;
  --bg-dark2:     #1E1510;

  --border:       #DDD5CC;
  --border-dark:  #C5B8AF;

  --text:         #1E1510;
  --text-muted:   #7A6A5E;
  --text-dim:     #B0A098;

  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Inter', system-ui, sans-serif;

  --radius:       10px;
  --radius-lg:    18px;
  --transition:   0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm:    0 2px 12px rgba(0,0,0,0.07);
  --shadow-card:  0 4px 28px rgba(0,0,0,0.09);
  --shadow-rose:  0 8px 32px rgba(196, 88, 126, 0.22);
}

/* Aliases retrocompatíveis com páginas que usam nomes antigos */
:root {
  --pink:         var(--rose);
  --pink-light:   var(--rose-light);
  --pink-glow:    var(--rose-glow);
  --border-pink:  var(--rose-border);
  --shadow-pink:  var(--shadow-rose);
  --accent:       var(--rose);
  --accent-gold:  var(--gold);
  --bg-card:      var(--bg-white);
  --bg-card2:     var(--bg-section);
  --shadow-card:  0 4px 28px rgba(0,0,0,0.09);
}
.text-pink  { color: var(--rose); }
.text-gold  { color: var(--gold); }
.hidden     { display: none !important; }

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- UTILITÁRIOS ---------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.section { padding: 100px 0; }
.section-sm { padding: 64px 0; }
.text-center { text-align: center; }

/* ---------- TIPOGRAFIA ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.15;
  font-weight: 600;
}
.section-label {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 600;
  margin-bottom: 18px;
  color: var(--text);
  letter-spacing: -0.5px;
}
.section-title span { color: var(--rose); }
.section-title em { font-style: italic; color: var(--rose); }
.section-desc {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.75;
  font-weight: 300;
}

/* ---------- BOTÕES ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-sans);
  letter-spacing: 0.5px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--rose);
  color: #fff;
  box-shadow: 0 4px 18px rgba(196, 88, 126, 0.32);
}
.btn-primary:hover {
  background: var(--rose-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-rose);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-dark);
}
.btn-outline:hover {
  border-color: var(--rose);
  color: var(--rose);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--text);
  color: #fff;
}
.btn-dark:hover {
  background: var(--bg-dark2);
  transform: translateY(-2px);
}
.btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  background: rgba(255,255,255,0.25);
  border-radius: 50%;
  font-size: 13px;
  transition: transform var(--transition);
}
.btn:hover .btn-arrow { transform: translateX(3px); }

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 28px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(248, 244, 240, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
/* hero has dark bg, so keep nav text light until scrolled */
.navbar:not(.scrolled) .navbar-nav a,
.navbar:not(.scrolled) .navbar-logo-text,
.navbar:not(.scrolled) .navbar-logo-sub {
  color: rgba(255,255,255,0.85);
}
.navbar:not(.scrolled) .navbar-toggle span { background: #fff; }
.navbar.scrolled .navbar-nav a { color: var(--text-muted); }
.navbar.scrolled .navbar-logo-text { color: var(--text); }
.navbar.scrolled .navbar-logo-sub { color: var(--text-dim); }

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-logo {
  display: flex;
  align-items: center;
}
.navbar-logo img {
  height: 44px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}
.navbar-logo-text,
.navbar-logo-sub {
  display: none;
}
.navbar-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}
.navbar-nav a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color var(--transition);
  position: relative;
}
.navbar.scrolled .navbar-nav a:hover,
.navbar.scrolled .navbar-nav a.active {
  color: var(--text);
}
.navbar-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--rose);
  transition: width var(--transition);
}
.navbar-nav a:hover::after,
.navbar-nav a.active::after { width: 100%; }
.navbar-cta { display: flex; align-items: center; gap: 12px; }
.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.navbar-toggle span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--text);
  transition: var(--transition);
}

/* Mobile nav */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--bg);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 600;
  color: var(--text-muted);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--rose); }
.mobile-close {
  position: absolute;
  top: 24px; right: 28px;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-muted);
  background: none;
  border: none;
  line-height: 1;
}

/* ---------- HERO ---------- */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 360px;
  position: relative;
  overflow: hidden;
}

/* Lado esquerdo — foto */
.hero-main {
  position: relative;
  background: var(--bg-dark);
  overflow: hidden;
}
.hero-bg-img-legacy {
  display: none;
}
.hero-main:hover .hero-bg-img { transform: scale(1.02); }

/* Placeholder elegante quando não há foto */
.hero-bg-img:not([style*="url"]) {
  background:
    radial-gradient(ellipse 70% 80% at 45% 50%, rgba(196,88,126,0.12) 0%, transparent 65%),
    linear-gradient(150deg, #2A1D18 0%, #1E1510 60%, #0E0B08 100%);
}
.hero-placeholder-logo {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  opacity: 0.18;
}
.hero-placeholder-logo img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: contain;
}
.hero-placeholder-logo span {
  font-family: var(--font-serif);
  font-size: 32px;
  color: #fff;
  letter-spacing: 2px;
}

/* Overlay escuro suave sobre a foto */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(30,21,16,0.68) 0%,
    rgba(30,21,16,0.38) 55%,
    rgba(30,21,16,0.10) 100%
  );
}

/* Conteúdo de texto sobre a foto */
.hero-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0 64px 72px;
  color: #fff;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--rose);
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 600;
  line-height: 1.02;
  color: #fff;
  margin-bottom: 28px;
  letter-spacing: -1px;
}
.hero-title em {
  font-style: italic;
  color: rgba(255,255,255,0.75);
}
.hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  max-width: 420px;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.btn-hero {
  background: var(--rose);
  color: #fff;
  padding: 15px 32px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(196,88,126,0.35);
  font-family: var(--font-sans);
}
.btn-hero:hover {
  background: var(--rose-light);
  transform: translateY(-2px);
}
.btn-hero-outline {
  background: rgba(255,255,255,0.1);
  color: #fff;
  padding: 15px 32px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255,255,255,0.3);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
  font-family: var(--font-sans);
  backdrop-filter: blur(6px);
}
.btn-hero-outline:hover { background: rgba(255,255,255,0.18); }

.hero-proof {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-proof-avatars {
  display: flex;
}
.hero-proof-avatars span {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.6);
  background: var(--bg-dark2);
  margin-left: -10px;
  display: inline-block;
  overflow: hidden;
}
.hero-proof-avatars span:first-child { margin-left: 0; }
.hero-proof-avatars span img { width: 100%; height: 100%; object-fit: cover; }
.hero-proof-stars {
  font-size: 12px;
  color: #FFD07A;
  letter-spacing: 1px;
  line-height: 1;
}
.hero-proof-text { color: rgba(255,255,255,0.75); font-size: 13px; font-weight: 300; }
.hero-proof-text strong { color: #fff; font-weight: 600; }

.hero-stats-row {
  display: flex;
  gap: 40px;
  margin-top: 24px;
}
.hero-stat {
  display: flex;
  flex-direction: column;
}
.hero-stat-num {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 600;
  color: #fff;
  line-height: 1;
}
.hero-stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
  letter-spacing: 0.5px;
}

/* Painel direito — branco */
.hero-panel {
  background: var(--bg);
  padding: 0 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  border-left: 1px solid var(--border);
  position: relative;
  z-index: 1;
}
.hero-panel-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 36px;
}
.hero-panel-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.hero-panel-item:first-of-type { border-top: 1px solid var(--border); }
.hero-panel-icon {
  width: 44px; height: 44px;
  min-width: 44px;
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  background: var(--bg-white);
}
.hero-panel-text strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 3px;
  font-family: var(--font-serif);
  font-size: 15px;
}
.hero-panel-text span {
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.5;
}
.hero-panel-cta {
  margin-top: 40px;
  padding-top: 0;
}

/* ---------- DIVIDER ---------- */
.divider {
  height: 1px;
  background: var(--border);
}

/* ---------- CARDS ---------- */
.card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.card:hover {
  border-color: var(--rose-border);
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}
.card-icon {
  width: 52px; height: 52px;
  background: var(--rose-glow);
  border: 1px solid var(--rose-border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 24px;
}
.card-title {
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text);
}
.card-desc { font-size: 14px; color: var(--text-muted); line-height: 1.7; font-weight: 300; }
.card-price {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.price-label { font-size: 11px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 1.5px; }
.price-value {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--rose);
  font-weight: 600;
}

/* ---------- GRADE DE SERVIÇOS ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.courses-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

/* ---------- PROFISSIONAL TABS ---------- */
.prof-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.prof-tab {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  transition: var(--transition);
}
.prof-tab:hover { border-color: var(--rose-border); color: var(--text); }
.prof-tab.active {
  border-color: var(--rose);
  background: var(--rose-glow);
  color: var(--text);
}
.prof-tab-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bg-section);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}
.services-panel { display: none; }
.services-panel.active { display: block; }

/* ---------- PRICE TABLE ---------- */
.price-table { width: 100%; border-collapse: collapse; }
.price-table th {
  text-align: left;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  font-weight: 600;
}
.price-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  vertical-align: top;
}
.price-table tr:last-child td { border-bottom: none; }
.price-table tbody tr:hover td { background: var(--bg); }
.price-name { color: var(--text); font-weight: 500; }
.price-desc { color: var(--text-muted); font-size: 13px; margin-top: 4px; font-weight: 300; }
.price-val { color: var(--rose); font-weight: 600; font-family: var(--font-serif); font-size: 18px; white-space: nowrap; }

/* ---------- BANNER CTA ---------- */
.cta-banner {
  background: var(--bg-dark);
  border-radius: var(--radius-lg);
  padding: 80px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -120px; left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(196, 88, 126, 0.14) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner .section-label { color: var(--rose-light); }
.cta-banner h2 {
  font-size: clamp(30px, 4vw, 48px);
  margin-bottom: 16px;
  color: #fff;
}
.cta-banner p { color: rgba(255,255,255,0.6); font-size: 17px; margin-bottom: 40px; font-weight: 300; }

/* ---------- GALERIA ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-item {
  aspect-ratio: 1;
  border-radius: var(--radius);
  background: var(--bg-section);
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: var(--transition);
}
.gallery-item:hover { border-color: var(--rose-border); box-shadow: var(--shadow-card); }
.gallery-item:nth-child(3n+1) { grid-row: span 2; aspect-ratio: unset; }
.gallery-placeholder {
  width: 100%; height: 100%;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-dim);
  font-size: 13px;
}
.gallery-placeholder span { font-size: 28px; }

/* ---------- CONTATO ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}
.contact-item:hover { border-color: var(--rose-border); box-shadow: var(--shadow-card); }
.contact-icon {
  width: 48px; height: 48px;
  min-width: 48px;
  background: var(--rose-glow);
  border: 1px solid var(--rose-border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.contact-detail-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 6px;
}
.contact-detail-value { font-size: 15px; color: var(--text); line-height: 1.5; }
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 420px;
  background: var(--bg-section);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand-name {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 14px;
  color: #fff;
}
.footer-brand-desc { font-size: 14px; line-height: 1.7; max-width: 270px; font-weight: 300; }
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}
.footer-social {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  transition: var(--transition);
  color: rgba(255,255,255,0.6);
}
.footer-social:hover {
  border-color: var(--rose);
  background: var(--rose-glow);
  color: #fff;
}
.footer-col-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 22px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a {
  font-size: 14px;
  font-weight: 300;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: #fff; }
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.3); }

/* ---------- WHATSAPP FLOAT ---------- */
.wa-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 12px;
}
.wa-btn {
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  transition: var(--transition);
  font-size: 26px;
}
.wa-btn:hover { transform: scale(1.08); box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45); }
.wa-tooltip {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 13px;
  color: var(--text);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: var(--transition);
  pointer-events: none;
  box-shadow: var(--shadow-card);
}
.wa-float:hover .wa-tooltip { opacity: 1; transform: translateX(0); }

/* ---------- PAGE HEADER ---------- */
.page-header {
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-dark);
  color: #fff;
}
.page-header::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(196, 88, 126, 0.14) 0%, transparent 70%);
  pointer-events: none;
}
.page-header .section-label { color: var(--rose-light); }
.page-header-title {
  font-size: clamp(40px, 5vw, 68px);
  margin-bottom: 16px;
  color: #fff;
}
.page-header-desc { font-size: 18px; color: rgba(255,255,255,0.55); max-width: 500px; margin: 0 auto; font-weight: 300; }

/* ---------- BADGE ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.badge-rose { background: var(--rose-glow); color: var(--rose); border: 1px solid var(--rose-border); }
.badge-gold { background: rgba(140,109,79,0.1); color: var(--gold); border: 1px solid rgba(140,109,79,0.25); }

/* ---------- CURSO CARD ---------- */
.course-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-sm);
}
.course-card:hover {
  border-color: var(--rose-border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.course-card-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.course-name {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  flex: 1;
  color: var(--text);
}
.course-hours {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--text-muted);
  white-space: nowrap;
  padding: 4px 12px;
  border: 1px solid var(--border);
  border-radius: 50px;
}
.course-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.course-price-label { font-size: 10px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 1.5px; }
.course-price-val { font-family: var(--font-serif); font-size: 22px; color: var(--rose); font-weight: 600; }

/* ---------- SEÇÃO SOBRE (split) ---------- */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.about-img-item {
  border-radius: var(--radius-lg);
  background: var(--bg-section);
  border: 1px solid var(--border);
  aspect-ratio: 3/4;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.about-img-item:first-child { margin-top: 32px; }
.about-img-item img { width: 100%; height: 100%; object-fit: cover; }
.about-img-placeholder {
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--text-dim);
  text-align: center;
  padding: 24px;
}
.about-img-placeholder span { font-size: 32px; display: block; margin-bottom: 8px; }
.about-stat {
  display: flex;
  flex-direction: column;
}
.about-stat-num {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 600;
  color: var(--rose);
  line-height: 1;
}
.about-stat-label { font-size: 12px; color: var(--text-muted); margin-top: 4px; }
.about-stats-row { display: flex; gap: 40px; margin: 36px 0; padding: 36px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

/* ---------- URGENCY STRIP ---------- */
.urgency-strip {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.75);
  text-align: center;
  font-size: 13px;
  padding: 10px 20px;
  letter-spacing: 0.3px;
  position: relative;
  z-index: 101;
}
.urgency-strip a {
  color: var(--rose-light);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.urgency-dot {
  display: inline-block;
  width: 7px; height: 7px;
  background: #4ADE80;
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Urgency na navbar */
.hero-panel-urgency {
  text-align: center;
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 12px;
  letter-spacing: 0.3px;
}

/* ---------- HERO bg ajuste para foto vertical ---------- */
.hero-bg-img {
  position: absolute;
  inset: 0;
  background: url('../assets/hero-foto.jpg') top center/cover no-repeat;
  transition: transform 8s ease;
}

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

/* ---------- REVIEW AVATAR ---------- */
.review-avatar {
  width: 40px; height: 40px;
  min-width: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
}

/* ---------- TEAM INITIAL ---------- */
.team-initial {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--rose-glow);
  border: 1.5px solid var(--rose-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--rose);
  margin-bottom: 12px;
}
.about-img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--text-dim);
  text-align: center;
  padding: 24px;
  height: 100%;
}

/* ---------- ANTES & DEPOIS ---------- */
.before-after-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.ba-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.ba-card:hover {
  border-color: var(--rose-border);
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}
.ba-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.ba-img {
  position: relative;
  aspect-ratio: 3/4;
  background: var(--bg-section);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ba-img.ba-before { border-right: 1px solid var(--border); }
.ba-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
  font-size: 12px;
  letter-spacing: 0.5px;
}
.ba-placeholder svg { opacity: 0.4; }
.ba-label {
  position: absolute;
  top: 10px; left: 10px;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
  backdrop-filter: blur(4px);
}
.ba-label-after {
  left: auto;
  right: 10px;
  background: var(--rose);
}
.ba-info {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
}
.ba-service {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 6px;
}
.ba-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 300;
}

/* ---------- ANIMAÇÕES ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ---------- PROFISSIONAL CARDS ---------- */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.team-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.team-card:hover { border-color: var(--rose-border); box-shadow: var(--shadow-card); transform: translateY(-4px); }
.team-card-img {
  aspect-ratio: 4/3;
  background: var(--bg-section);
  display: flex; align-items: center; justify-content: center;
  font-size: 48px;
}
.team-card-body { padding: 24px; }
.team-card-name { font-family: var(--font-serif); font-size: 19px; font-weight: 600; margin-bottom: 4px; }
.team-card-role { font-size: 12px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 1.5px; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr 300px; }
  .hero-panel { padding: 0 32px; }
}

@media (max-width: 1024px) {
  .services-grid, .courses-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .team-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1024px) {
  .before-after-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section { padding: 72px 0; }
  .before-after-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .urgency-strip { font-size: 12px; }

  /* Hero mobile: empilha */
  .hero { grid-template-columns: 1fr; grid-template-rows: 70vh auto; }
  .hero-main { min-height: 70vh; }
  .hero-content { padding: 0 24px 48px; }
  .hero-title { font-size: clamp(38px, 9vw, 60px); }
  .hero-proof { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero-stats-row { gap: 24px; }
  .hero-panel { padding: 40px 24px; border-left: none; border-top: 1px solid var(--border); }

  .navbar-nav, .navbar-cta { display: none; }
  .navbar-toggle { display: flex; }
  .navbar:not(.scrolled) .navbar-toggle span { background: #fff; }

  .services-grid, .courses-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(3n+1) { grid-row: auto; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-banner { padding: 56px 32px; }
  .about-split { grid-template-columns: 1fr; gap: 48px; }
  .about-img-grid { grid-template-columns: 1fr 1fr; }
  .about-img-item:first-child { margin-top: 0; }
  .team-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .wa-float { bottom: 20px; right: 20px; }
  .hero-stats-row { flex-wrap: wrap; gap: 20px; }
}
