/* =============================================
   MEU FILHO PODE — MAIN CSS
   Paleta: Rosa Névoa + Sálvia + Dourado Suave
   Sem marrom. Tons claros, acolhedores, femininos.
   Fonts: Cormorant Garamond (serif) + DM Sans
   ============================================= */

/* ─── DESIGN TOKENS ─── */
:root {
  /* ROSE — cor primária, suave e calorosa */
  --rose:        #C97A7A;   /* rosa queimado suave */
  --rose-deep:   #A85E5E;   /* hover / ativo */
  --rose-mid:    #D99090;   /* variação clara */
  --rose-pale:   #F5E8E8;   /* background chips */
  --rose-wash:   #FDF5F5;   /* background seções */

  /* SAGE — verde sálvia, natureza suave */
  --sage:        #6B8F71;   /* sage principal */
  --sage-deep:   #4F6F55;   /* escuro */
  --sage-mid:    #8AAE91;   /* médio */
  --sage-soft:   #C8DBC9;   /* suave */
  --sage-pale:   #EEF5EF;   /* fundo */

  /* GOLD — dourado mel suave */
  --gold:        #C9A84C;   /* dourado */
  --gold-pale:   #FBF3D5;   /* fundo */
  --gold-warm:   #E6C76A;   /* destaque */

  /* NEUTRALS — sem marrom, tons cinza-quente */
  --ink:         #1E1A1A;   /* quase preto, tom quente */
  --ink-soft:    #2D2727;   /* escuro suave */
  --slate:       #5C5454;   /* cinza-rosado médio */
  --muted:       #8C8080;   /* texto secundário */
  --silver:      #BEB4B4;   /* cinza claro */
  --cloud:       #E8E2E2;   /* borda suave */
  --linen:       #EDE8E8;   /* fundo cards */
  --cream:       #F5F0F0;   /* fundo seção alternada */
  --warm-white:  #FDFAFA;   /* background principal */

  /* TYPOGRAPHY */
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans:  'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* SPACING */
  --s-xs:  0.25rem;
  --s-sm:  0.5rem;
  --s-md:  1rem;
  --s-lg:  1.5rem;
  --s-xl:  2rem;
  --s-2xl: 3rem;
  --s-3xl: 5rem;

  /* RADIUS */
  --r-xs:   4px;
  --r-sm:   8px;
  --r-md:   14px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-2xl:  40px;
  --r-full: 9999px;

  /* SHADOWS — warm tint */
  --shadow-xs: 0 1px 4px rgba(30,26,26,.06);
  --shadow-sm: 0 2px 12px rgba(30,26,26,.08);
  --shadow-md: 0 6px 24px rgba(30,26,26,.1);
  --shadow-lg: 0 16px 48px rgba(30,26,26,.12);
  --shadow-xl: 0 32px 80px rgba(30,26,26,.15);

  /* TRANSITIONS */
  --ease:   cubic-bezier(0.4, 0, 0.2, 1);
  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* LAYOUT */
  --max-w: 1240px;
  --header-h: 72px;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
  font-family: var(--sans);
  background: var(--warm-white);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { font-family: var(--sans); }
input, select, textarea { font-family: var(--sans); }

/* ─── LAYOUT HELPERS ─── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}
.section { padding: 6rem 0; }
.section-sm { padding: 3.5rem 0; }

/* ─── TYPOGRAPHY SCALE ─── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--serif);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--ink);
}
h1 { font-size: clamp(2.8rem, 5.5vw, 5rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 700; }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 600; }
h4 { font-family: var(--sans); font-size: 1rem; font-weight: 700; letter-spacing: -0.01em; }
p  { font-size: 1rem; line-height: 1.75; color: var(--slate); }

.serif { font-family: var(--serif); }
.italic { font-style: italic; }
.text-rose   { color: var(--rose); }
.text-sage   { color: var(--sage); }
.text-muted  { color: var(--muted); }

/* ─── SECTION LABELS ─── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose);
  background: var(--rose-pale);
  padding: 0.4rem 1rem;
  border-radius: var(--r-full);
  border: 1px solid rgba(201,122,122,.18);
  margin-bottom: 0.9rem;
}
.section-label.sage {
  color: var(--sage);
  background: var(--sage-pale);
  border-color: rgba(107,143,113,.18);
}
.section-label.gold {
  color: var(--gold);
  background: var(--gold-pale);
  border-color: rgba(201,168,76,.2);
}
.section-label.light {
  color: rgba(255,255,255,.8);
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.18);
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.8rem 1.75rem;
  border-radius: var(--r-full);
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all 0.28s var(--ease);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--rose);
  color: #fff;
  border-color: var(--rose);
  box-shadow: 0 4px 16px rgba(201,122,122,.32);
}
.btn-primary:hover {
  background: var(--rose-deep);
  border-color: var(--rose-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,122,122,.42);
}
.btn-sage {
  background: var(--sage);
  color: #fff;
  border-color: var(--sage);
  box-shadow: 0 4px 16px rgba(107,143,113,.28);
}
.btn-sage:hover {
  background: var(--sage-deep);
  border-color: var(--sage-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(107,143,113,.38);
}
.btn-outline {
  background: transparent;
  color: var(--rose);
  border-color: var(--rose);
}
.btn-outline:hover {
  background: var(--rose);
  color: #fff;
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: rgba(255,255,255,.88);
  border-color: rgba(255,255,255,.35);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.7);
  color: #fff;
}
.btn-ghost {
  background: transparent;
  color: var(--slate);
  border-color: var(--cloud);
}
.btn-ghost:hover {
  background: var(--cream);
  border-color: var(--silver);
  color: var(--ink);
}
.btn-lg { padding: 1rem 2.25rem; font-size: 0.95rem; }
.btn-sm { padding: 0.55rem 1.2rem; font-size: 0.8rem; }

/* ─── FORMS ─── */
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 0.35rem;
  letter-spacing: 0.03em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1.1rem;
  border: 1.5px solid var(--cloud);
  border-radius: var(--r-md);
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--ink);
  background: var(--warm-white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(201,122,122,.1);
  background: #fff;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }

/* ─── ANIMATIONS / REVEAL ─── */
.fade-up, .fade-in, .scale-in {
  opacity: 0;
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.fade-up  { transform: translateY(28px); }
.scale-in { transform: scale(0.95); }
.fade-in  { }

.fade-up.visible, .fade-in.visible, .scale-in.visible {
  opacity: 1;
  transform: none;
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ─── WHATSAPP FLOAT ─── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.42);
  transition: transform 0.3s var(--spring);
  text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.12) rotate(-8deg); }
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37,211,102,.28);
  animation: wa-ring 2.5s ease-out infinite;
}
@keyframes wa-ring { to { transform: scale(1.75); opacity: 0; } }
.whatsapp-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--ink);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.4rem 0.85rem;
  border-radius: var(--r-full);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* ─── HEADER ─── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 1.25rem 0;
  transition: all 0.35s var(--ease);
}
.site-header.scrolled {
  background: rgba(253,250,250,.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.8rem 0;
  box-shadow: 0 1px 0 var(--cloud), var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon {
  width: 40px; height: 40px;
  color: var(--rose);
  transition: transform 0.4s var(--spring);
}
.logo:hover .logo-icon { transform: rotate(-8deg) scale(1.1); }
.site-header:not(.scrolled) .logo-icon { color: rgba(255,255,255,.9); }

.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  transition: color 0.3s;
}
.logo-title {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rose);
  margin-top: 2px;
  transition: color 0.3s;
}
.site-header:not(.scrolled) .logo-name  { color: rgba(255,255,255,.95); }
.site-header:not(.scrolled) .logo-title { color: rgba(255,255,255,.5); }

/* Nav */
.main-nav { margin-left: auto; }
.main-nav ul { display: flex; align-items: center; gap: 0.15rem; }
.main-nav ul li a {
  display: block;
  padding: 0.45rem 0.85rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate);
  border-radius: var(--r-sm);
  transition: color 0.2s, background 0.2s;
  position: relative;
}
.main-nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0.85rem; right: 0.85rem;
  height: 1.5px;
  background: var(--rose);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}
.main-nav ul li a:hover { color: var(--ink); }
.main-nav ul li a:hover::after,
.main-nav ul li a.active::after { transform: scaleX(1); }
.main-nav ul li a.active { color: var(--rose); font-weight: 600; }
.site-header:not(.scrolled) .main-nav ul li a { color: rgba(255,255,255,.72); }
.site-header:not(.scrolled) .main-nav ul li a:hover { color: #fff; }
.site-header:not(.scrolled) .main-nav ul li a.active { color: #fff; }
.site-header:not(.scrolled) .main-nav ul li a::after { background: rgba(255,255,255,.8); }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: var(--warm-white);
  border: 1px solid var(--cloud);
  border-radius: var(--r-lg);
  padding: 0.5rem;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s, top 0.2s;
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  top: calc(100% + 4px);
}
.dropdown li a {
  display: block !important;
  padding: 0.6rem 1rem !important;
  color: var(--slate) !important;
  border-radius: var(--r-sm) !important;
  transition: background 0.15s, color 0.15s !important;
}
.dropdown li a:hover {
  background: var(--rose-pale) !important;
  color: var(--rose) !important;
}
.dropdown li a::after { display: none !important; }

.header-cta { flex-shrink: 0; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 6px;
  width: 38px; height: 38px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
}
.hamburger span {
  display: block;
  height: 2px;
  width: 24px;
  border-radius: 2px;
  background: var(--ink);
  transition: all 0.3s var(--ease);
}
.site-header:not(.scrolled) .hamburger span { background: rgba(255,255,255,.9); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Nav overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(30,26,26,.5);
  z-index: 850;
  opacity: 0;
  transition: opacity 0.3s;
}
.nav-overlay.active { opacity: 1; }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink-soft);
}

/* Hero background — tons suaves de rosa e sálvia */
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 85% 65% at 50% 10%, rgba(201,122,122,.22) 0%, transparent 55%),
    radial-gradient(ellipse 55% 85% at 95% 75%, rgba(107,143,113,.2) 0%, transparent 50%),
    radial-gradient(ellipse 70% 55% at 5% 90%, rgba(201,168,76,.12) 0%, transparent 50%),
    linear-gradient(150deg, #1E1A1A 0%, #2D2424 50%, #1A2220 100%);
}
.hero-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23g)' opacity='0.045'/%3E%3C/svg%3E");
  opacity: 0.65;
}

/* Decorative blobs */
.hero-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-deco span {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
}
.hero-deco span:nth-child(1) {
  width: 500px; height: 500px;
  background: var(--rose);
  top: -150px; right: -100px;
  animation: blob-drift 20s ease-in-out infinite;
}
.hero-deco span:nth-child(2) {
  width: 350px; height: 350px;
  background: var(--sage);
  bottom: -80px; left: -60px;
  animation: blob-drift 25s ease-in-out infinite reverse;
}
.hero-deco span:nth-child(3) {
  width: 8px; height: 8px;
  background: rgba(201,122,122,.6);
  top: 25%; left: 8%;
  border-radius: 50%;
  box-shadow: 0 0 0 1.5px rgba(201,122,122,.25);
}
.hero-deco span:nth-child(4) {
  width: 6px; height: 6px;
  background: rgba(107,143,113,.5);
  top: 60%; left: 12%;
  border-radius: 50%;
}
.hero-deco span:nth-child(5) {
  width: 5px; height: 5px;
  background: rgba(201,168,76,.5);
  top: 40%; right: 10%;
  border-radius: 50%;
}
.hero-deco span:nth-child(6) {
  width: 200px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,122,122,.2), transparent);
  top: 72%; left: 5%;
}
@keyframes blob-drift {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(30px,-20px) scale(1.04); }
  66%      { transform: translate(-20px,30px) scale(0.97); }
}

.hero-curve {
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 80px;
}

/* Hero inner grid */
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 5rem;
  align-items: center;
  padding-top: calc(var(--header-h) + 4rem);
  padding-bottom: 5rem;
  width: 100%;
}

/* Eyebrow */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 1.6rem;
}
.hero-eyebrow-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold-warm);
  animation: eyebrow-pulse 2.2s ease-in-out infinite;
}
@keyframes eyebrow-pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(230,199,106,.45); }
  50%      { box-shadow: 0 0 0 6px rgba(230,199,106,0); }
}
.hero-eyebrow-line {
  width: 28px; height: 1px;
  background: rgba(255,255,255,.2);
}

/* Headline */
.hero-headline {
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 1.6rem;
  color: var(--warm-white);
}
.hero-line-plain   { display: block; font-size: clamp(3.5rem, 7vw, 6.5rem); }
.hero-line-italic  { display: block; font-style: italic; color: var(--rose-mid); font-size: clamp(3.8rem, 8vw, 7.2rem); }
.hero-line-outline {
  display: block;
  font-style: italic;
  -webkit-text-stroke: 1.5px rgba(255,255,255,.3);
  color: transparent;
  font-size: clamp(3.5rem, 7vw, 6.5rem);
}

/* Word rotation */
.word-rotate { display: inline-block; position: relative; }
.word-rotate .word {
  display: block;
  animation: wordOut 6s ease-in-out infinite;
}
.word-rotate .word2 {
  position: absolute;
  left: 0; top: 0;
  opacity: 0;
  animation: wordIn 6s ease-in-out infinite;
  animation-delay: 3s;
}
@keyframes wordOut {
  0%,30%  { opacity:1; transform:translateY(0); }
  40%,90% { opacity:0; transform:translateY(-14px); }
  100%    { opacity:1; transform:translateY(0); }
}
@keyframes wordIn {
  0%,5%   { opacity:0; transform:translateY(14px); }
  15%,45% { opacity:1; transform:translateY(0); }
  55%,100%{ opacity:0; transform:translateY(-14px); }
}

/* Hero desc */
.hero-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255,255,255,.52);
  max-width: 480px;
  margin-bottom: 2.25rem;
}
.hero-desc strong { color: rgba(255,255,255,.85); font-weight: 600; }

/* Hero CTAs */
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.75rem;
}

/* Social proof */
.hero-proof {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-top: 2.25rem;
  border-top: 1px solid rgba(255,255,255,.08);
}
.proof-avatars { display: flex; }
.proof-avatar {
  width: 35px; height: 35px;
  border-radius: 50%;
  margin-left: -8px;
  border: 2px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--ink);
  flex-shrink: 0;
}
.proof-avatar:first-child { margin-left: 0; }
.pa1 { background: #F2B8B8; }
.pa2 { background: var(--sage-soft); }
.pa3 { background: var(--gold-warm); opacity: .85; }
.pa4 { background: var(--rose-pale); }
.pa5 { background: rgba(255,255,255,.15); color: rgba(255,255,255,.7); font-size: 0.68rem; }

.proof-text strong { display: block; font-size: 0.88rem; font-weight: 700; color: #fff; }
.proof-stars { color: var(--gold-warm); font-size: 0.78rem; letter-spacing: 1px; }
.proof-text span { font-size: 0.7rem; color: rgba(255,255,255,.35); }

/* Hero RIGHT: Profile Card */
.hero-right { position: relative; }

.hero-badge {
  position: absolute;
  background: var(--warm-white);
  border-radius: var(--r-md);
  padding: 0.7rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: var(--shadow-xl);
  min-width: 148px;
  z-index: 2;
}
.badge-icon {
  width: 30px; height: 30px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.badge-label { font-weight: 700; font-size: 0.8rem; color: var(--ink); display: block; line-height: 1.2; }
.badge-sub   { font-size: 0.7rem; color: var(--muted); }

.badge-1 { top: -18px; left: -30px; animation: float-badge 5s ease-in-out infinite; }
.badge-2 { bottom: 70px; right: -28px; animation: float-badge 6s ease-in-out infinite 0.8s; }
.badge-3 { bottom: -16px; left: 24px; animation: float-badge 4.5s ease-in-out infinite 1.5s; }
.badge-1 .badge-icon { background: var(--sage-pale); color: var(--sage); }
.badge-2 .badge-icon { background: var(--rose-pale); color: var(--rose); }
.badge-3 .badge-icon { background: var(--gold-pale); color: var(--gold); }

@keyframes float-badge {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-9px); }
}

/* Profile card */
.profile-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-radius: var(--r-xl);
  padding: 2.25rem 2rem;
  position: relative;
}
.card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 1.5rem;
}
.card-avatar {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose-mid), var(--sage-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  flex-shrink: 0;
  border: 2.5px solid rgba(255,255,255,.18);
  position: relative;
}
.online-indicator {
  position: absolute;
  bottom: 2px; right: 2px;
  width: 13px; height: 13px;
  border-radius: 50%;
  background: #4ADE80;
  border: 2.5px solid rgba(30,26,26,.85);
  box-shadow: 0 0 0 3px rgba(74,222,128,.2);
}
.card-name { font-family: var(--serif); font-size: 1.15rem; font-weight: 700; color: #fff; }
.card-role { font-size: 0.64rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,.38); margin-top: 2px; }

.card-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 0.5rem; margin-bottom: 1.5rem; }
.card-stat { text-align: center; }
.card-stat-num { font-family: var(--serif); font-size: 1.5rem; font-weight: 700; color: #fff; display: block; line-height: 1; }
.card-stat-lbl { font-size: 0.62rem; color: rgba(255,255,255,.38); display: block; margin-top: 0.2rem; }

.card-tags { display: flex; flex-wrap: wrap; gap: 0.38rem; margin-bottom: 1.5rem; }
.card-tag {
  font-size: 0.65rem; font-weight: 600;
  padding: 0.27rem 0.72rem;
  border-radius: var(--r-full);
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.62);
  border: 1px solid rgba(255,255,255,.1);
}

/* Hero load animation */
.hero-left > * {
  opacity: 0;
  transform: translateY(24px);
  animation: hero-item-in 0.7s var(--ease) forwards;
}
.hero-left > *:nth-child(1) { animation-delay: 0.1s; }
.hero-left > *:nth-child(2) { animation-delay: 0.25s; }
.hero-left > *:nth-child(3) { animation-delay: 0.4s; }
.hero-left > *:nth-child(4) { animation-delay: 0.55s; }
.hero-left > *:nth-child(5) { animation-delay: 0.7s; }
.hero-right {
  animation: hero-right-in 0.9s var(--ease) 0.3s both;
}
@keyframes hero-item-in { to { opacity: 1; transform: none; } }
@keyframes hero-right-in { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: none; } }

/* ─── TRUST STRIP ─── */
.trust-strip {
  background: var(--cream);
  border-top: 1px solid var(--cloud);
  border-bottom: 1px solid var(--cloud);
  padding: 1.1rem 0;
}
.trust-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.25rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--slate);
}
.trust-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--rose);
  flex-shrink: 0;
}

/* ─── ABOUT / FOR WHO ─── */
.for-who { background: var(--warm-white); }
.for-who-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}
.for-who-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 2rem;
}
.for-who-pill {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--slate);
  background: var(--cream);
  padding: 0.5rem 1rem;
  border-radius: var(--r-full);
  border: 1px solid var(--cloud);
  transition: all 0.22s;
  cursor: default;
}
.for-who-pill:hover {
  background: var(--rose-pale);
  border-color: rgba(201,122,122,.3);
  color: var(--rose-deep);
}

.for-who-cards { display: flex; flex-direction: column; gap: 1rem; }
.for-who-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--cream);
  border: 1px solid var(--cloud);
  border-radius: var(--r-lg);
  padding: 1.4rem 1.6rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s var(--ease);
}
.for-who-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--rose), var(--sage));
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s var(--ease);
}
.for-who-card:hover {
  background: var(--warm-white);
  border-color: rgba(201,122,122,.22);
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}
.for-who-card:hover::before { transform: scaleY(1); }
.card-icon {
  width: 42px; height: 42px;
  border-radius: var(--r-md);
  background: var(--rose-pale);
  color: var(--rose);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.for-who-card h4 { font-size: 0.9rem; font-weight: 700; color: var(--ink); margin-bottom: 0.28rem; }
.for-who-card p  { font-size: 0.82rem; color: var(--muted); margin: 0; line-height: 1.6; }

/* ─── HOW IT WORKS ─── */
.how-section { background: var(--rose-wash); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}
.steps-grid::after {
  content: '';
  position: absolute;
  top: 34px;
  left: 14%; right: 14%;
  height: 1px;
  background: repeating-linear-gradient(
    90deg,
    var(--rose) 0, var(--rose) 6px,
    transparent 6px, transparent 14px
  );
  opacity: 0.3;
}
.step { text-align: center; }
.step-num {
  width: 68px; height: 68px;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  border: 2px solid var(--cloud);
  background: var(--warm-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--rose);
  position: relative;
  z-index: 1;
  transition: all 0.35s var(--spring);
}
.step:hover .step-num {
  background: var(--rose);
  color: #fff;
  border-color: var(--rose);
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(201,122,122,.3);
}
.step h4 { font-size: 0.9rem; font-weight: 700; color: var(--ink); margin-bottom: 0.4rem; }
.step p  { font-size: 0.8rem; color: var(--muted); margin: 0; line-height: 1.65; }

/* ─── SPECIALTIES (dark section) ─── */
.specialties-section {
  background: var(--ink-soft);
  position: relative;
  overflow: hidden;
}
.spec-glow {
  position: absolute;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,122,122,.15) 0%, transparent 70%);
  top: -140px; right: -80px;
  pointer-events: none;
}
.spec-glow-2 {
  position: absolute;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(107,143,113,.12) 0%, transparent 70%);
  bottom: -100px; left: -60px;
  pointer-events: none;
}
.specialties-section .section-title { color: var(--warm-white); }
.specialties-section .section-sub   { color: rgba(255,255,255,.42); }

.specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.spec-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  padding: 2.25rem 1.85rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s var(--ease);
}
.spec-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--rose), var(--sage));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.spec-card:hover {
  background: rgba(255,255,255,.06);
  border-color: rgba(201,122,122,.2);
  transform: translateY(-5px);
}
.spec-card:hover::after { transform: scaleX(1); }
.spec-emoji { font-size: 2.4rem; display: block; margin-bottom: 1.25rem; }
.spec-card h3 { font-family: var(--serif); font-size: 1.4rem; color: var(--warm-white); margin-bottom: 0.7rem; }
.spec-card p  { font-size: 0.86rem; color: rgba(255,255,255,.44); line-height: 1.78; margin-bottom: 1.2rem; }
.spec-tags { display: flex; flex-wrap: wrap; gap: 0.35rem; }
.spec-tag {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.04em;
  padding: 0.24rem 0.7rem;
  border-radius: var(--r-full);
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.5);
  border: 1px solid rgba(255,255,255,.09);
}

/* ─── TESTIMONIALS ─── */
.testimonials-section { background: var(--rose-wash); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.testi-card {
  background: var(--warm-white);
  border: 1px solid var(--cloud);
  border-radius: var(--r-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.testi-card::before {
  content: '\201C';
  font-family: var(--serif);
  font-size: 5.5rem;
  line-height: 1;
  color: var(--rose-pale);
  position: absolute;
  top: -0.35rem; left: 1.25rem;
  z-index: 0;
  font-weight: 700;
}
.testi-card:hover { box-shadow: var(--shadow-md); }
.testi-stars { color: var(--gold); font-size: 0.82rem; letter-spacing: 1px; margin-bottom: 0.85rem; position: relative; z-index: 1; }
.testi-text {
  font-style: italic;
  font-size: 0.92rem;
  line-height: 1.82;
  color: var(--slate);
  margin-bottom: 1.4rem;
  position: relative;
  z-index: 1;
}
.testi-who { display: flex; align-items: center; gap: 0.75rem; }
.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--rose-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--rose);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: 0.875rem; color: var(--ink); display: block; }
.testi-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  background: var(--rose-pale);
  color: var(--rose);
  padding: 0.18rem 0.6rem;
  border-radius: var(--r-full);
  display: inline-block;
  margin-top: 0.2rem;
}

/* ─── LEAD MAGNET ─── */
.lead-section {
  background: var(--sage);
  position: relative;
  overflow: hidden;
}
.lead-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 75% at 92% 40%, rgba(201,168,76,.18) 0%, transparent 55%),
    radial-gradient(ellipse 45% 65% at 5% 85%, rgba(30,26,26,.2) 0%, transparent 50%);
}
.lead-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23g)' opacity='0.04'/%3E%3C/svg%3E");
}
.lead-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 5rem;
  align-items: center;
}
.lead-section h2 { color: var(--warm-white); margin-bottom: 1rem; }
.lead-section h2 em { color: var(--gold-warm); }
.lead-desc { color: rgba(255,255,255,.6); margin-bottom: 2rem; line-height: 1.78; }
.lead-list { display: flex; flex-direction: column; gap: 0.7rem; }
.lead-list-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,.82);
}
.lead-list-item i { color: var(--gold-warm); font-size: 0.85rem; flex-shrink: 0; }

/* Lead form card */
.lead-form-card {
  background: var(--warm-white);
  border-radius: var(--r-xl);
  padding: 2.75rem;
  box-shadow: var(--shadow-xl);
}
.lead-form-card h3 { font-family: var(--serif); font-size: 1.5rem; color: var(--ink); margin-bottom: 0.5rem; }
.lead-form-card .sub { font-size: 0.82rem; color: var(--muted); margin-bottom: 1.75rem; }
.lead-privacy {
  font-size: 0.72rem;
  color: var(--muted);
  text-align: center;
  margin-top: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

/* ─── MENTORIA ─── */
.mentoria-section { background: var(--cream); }
.mentoria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.mentoria-card {
  border: 2px solid var(--cloud);
  border-radius: var(--r-xl);
  padding: 2.5rem 2rem;
  text-align: center;
  background: var(--warm-white);
  position: relative;
  overflow: hidden;
  transition: all 0.3s var(--ease);
}
.mentoria-card-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rose), var(--sage));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.mentoria-card:hover .mentoria-card-bar,
.mentoria-card.featured .mentoria-card-bar { transform: scaleX(1); }
.mentoria-card:hover {
  border-color: rgba(201,122,122,.25);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.mentoria-card.featured { border-color: var(--rose); background: var(--rose-wash); }
.featured-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--rose);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 0.24rem 0.72rem;
  border-radius: var(--r-full);
  text-transform: uppercase;
}
.plan-emoji { font-size: 2.25rem; display: block; margin-bottom: 1rem; }
.mentoria-card h3 { font-family: var(--sans); font-size: 1.15rem; font-weight: 700; color: var(--ink); margin-bottom: 0.4rem; }
.mentoria-card > p { font-size: 0.83rem; color: var(--muted); margin-bottom: 1.5rem; }
.plan-features { text-align: left; margin-bottom: 2rem; display: flex; flex-direction: column; }
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.86rem;
  color: var(--slate);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--cloud);
}
.plan-features li:last-child { border: none; }
.plan-features i { color: var(--rose); margin-top: 2px; flex-shrink: 0; font-size: 0.78rem; }
.plan-price {
  font-family: var(--serif);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--rose);
  display: block;
  line-height: 1;
  margin-bottom: 1.5rem;
}
.plan-price small {
  font-family: var(--sans);
  font-size: 0.76rem;
  color: var(--muted);
  font-weight: 400;
  display: block;
  margin-top: 0.25rem;
}

/* ─── BLOG ─── */
.blog-section { background: var(--warm-white); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.blog-card {
  border: 1px solid var(--cloud);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--warm-white);
  display: flex;
  flex-direction: column;
  transition: all 0.3s var(--ease);
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201,122,122,.2);
}
.blog-img {
  height: 180px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  overflow: hidden;
}
.blog-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 35%, rgba(30,26,26,.52));
}
.blog-cat {
  position: relative; z-index: 1;
  font-size: 0.64rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.1em;
  background: var(--warm-white);
  color: var(--rose);
  padding: 0.28rem 0.75rem;
  border-radius: var(--r-full);
}
.blog-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-meta { font-size: 0.7rem; color: var(--silver); margin-bottom: 0.5rem; }
.blog-title {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 0.6rem;
  transition: color 0.2s;
}
.blog-card:hover .blog-title { color: var(--rose); }
.blog-excerpt { font-size: 0.83rem; color: var(--muted); line-height: 1.65; flex: 1; margin-bottom: 1.2rem; }
.blog-link {
  font-size: 0.8rem; font-weight: 700;
  color: var(--rose);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.2s;
}
.blog-card:hover .blog-link { gap: 0.65rem; }
.bi-rose  { background: linear-gradient(135deg, var(--rose-pale) 0%, var(--rose-mid) 80%); }
.bi-sage  { background: linear-gradient(135deg, var(--sage-pale) 0%, var(--sage-mid) 80%); }
.bi-gold  { background: linear-gradient(135deg, var(--gold-pale) 0%, var(--gold-warm) 70%); }

/* ─── FAQ ─── */
.faq-section { background: var(--cream); }
.faq-wrap {
  max-width: 740px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.faq-item {
  background: var(--warm-white);
  border: 1px solid var(--cloud);
  border-radius: var(--r-md);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  transition: color 0.2s;
}
.faq-question i { color: var(--rose); flex-shrink: 0; transition: transform 0.3s var(--ease); }
.faq-item.open .faq-question { color: var(--rose); }
.faq-item.open .faq-question i { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.38s var(--ease); }
.faq-answer-inner {
  padding: 0 1.5rem 1.4rem;
  font-size: 0.89rem;
  color: var(--slate);
  line-height: 1.78;
  border-top: 1px solid var(--cloud);
  padding-top: 0.9rem;
}

/* ─── FINAL CTA ─── */
.final-cta {
  background: var(--ink-soft);
  text-align: center;
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}
.final-cta-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 65% 60% at 25% 50%, rgba(201,122,122,.17) 0%, transparent 55%),
    radial-gradient(ellipse 55% 65% at 82% 40%, rgba(107,143,113,.13) 0%, transparent 50%);
}
.final-cta .container { position: relative; z-index: 1; }
.final-cta h2 { color: var(--warm-white); max-width: 660px; margin: 0 auto 1rem; }
.final-cta h2 em { color: var(--rose-mid); }
.final-cta-sub {
  color: rgba(255,255,255,.48);
  max-width: 490px;
  margin: 0 auto 2.5rem;
  font-size: 1rem;
  line-height: 1.72;
}
.final-cta-btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.final-note { margin-top: 2rem; font-size: 0.78rem; color: rgba(255,255,255,.28); }
.final-note strong { color: rgba(255,255,255,.58); }

/* ─── NEWSLETTER (footer strip) ─── */
.newsletter-strip {
  background: var(--rose-pale);
  border-top: 1px solid rgba(201,122,122,.15);
  padding: 3.5rem 0;
}
.newsletter-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: center;
}
.newsletter-text h3 {
  font-family: var(--sans);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.45rem;
}
.newsletter-text p { font-size: 0.85rem; color: var(--muted); margin: 0; }
.newsletter-inputs { display: flex; gap: 0.7rem; flex-wrap: wrap; }
.newsletter-inputs input {
  flex: 1;
  min-width: 150px;
  padding: 0.78rem 1.15rem;
  border: 1.5px solid rgba(201,122,122,.22);
  border-radius: var(--r-full);
  font-family: var(--sans);
  font-size: 0.875rem;
  background: var(--warm-white);
  color: var(--ink);
  transition: border-color 0.2s;
  outline: none;
}
.newsletter-inputs input:focus { border-color: var(--rose); }
.newsletter-privacy {
  font-size: 0.7rem !important;
  color: var(--muted) !important;
  margin-top: 0.6rem !important;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

/* ─── FOOTER ─── */
.site-footer { background: var(--ink); }
.footer-main { padding: 5rem 0 4rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.25rem;
  color: rgba(255,255,255,.8);
}
.footer-logo-name { font-family: var(--serif); font-size: 1rem; font-weight: 700; color: #fff; display: block; }
.footer-logo-sub  { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--rose-mid); }
.footer-bio { font-size: 0.855rem; color: rgba(255,255,255,.36); line-height: 1.75; margin-bottom: 0.6rem; }
.footer-crp { font-size: 0.72rem; color: rgba(255,255,255,.2); margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: 0.5rem; }
.footer-social a {
  width: 34px; height: 34px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.38);
  font-size: 0.85rem;
  transition: all 0.2s;
}
.footer-social a:hover { background: var(--rose); color: #fff; border-color: var(--rose); }
.footer-links h4,
.footer-contact h4 {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.25);
  margin-bottom: 1.25rem;
  font-family: var(--sans);
}
.footer-links ul { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-links a {
  font-size: 0.855rem;
  color: rgba(255,255,255,.4);
  transition: color 0.2s;
}
.footer-links a:hover { color: rgba(255,255,255,.88); }
.footer-contact-items { display: flex; flex-direction: column; gap: 0.65rem; margin-bottom: 1.5rem; }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.83rem;
  color: rgba(255,255,255,.38);
  transition: color 0.2s;
}
.footer-contact-item i { color: var(--rose-mid); width: 15px; flex-shrink: 0; font-size: 0.82rem; }
.footer-contact-item:hover { color: rgba(255,255,255,.8); }

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,.18); margin: 0; }

/* ─── SECTION HEADER HELPERS ─── */
.section-header { margin-bottom: 3.5rem; }
.section-header.center { text-align: center; }
.section-header.center .section-title { margin: 0 auto; }
.section-header.center .section-sub   { margin: 0.85rem auto 0; }
.section-title { font-family: var(--serif); }
.section-title em { font-style: italic; color: var(--rose); }
.section-sub   { font-size: 1rem; color: var(--muted); max-width: 520px; margin: 0.85rem 0 0; line-height: 1.72; }

/* ─── ABOUT PAGE ─── */
.about-hero {
  padding: calc(var(--header-h) + 4rem) 0 5rem;
  background: var(--rose-wash);
}
.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}
.about-photo {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, var(--rose-pale) 0%, var(--sage-pale) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  overflow: hidden;
  border: 2px solid var(--cloud);
}
.credentials { display: flex; flex-direction: column; gap: 0.7rem; margin-top: 2rem; }
.credential {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.87rem;
  color: var(--slate);
}
.credential i { color: var(--rose); width: 16px; flex-shrink: 0; }

/* ─── SPECIALTIES PAGE ─── */
.spec-page-hero {
  padding: calc(var(--header-h) + 4rem) 0 4rem;
  background: var(--ink-soft);
  position: relative;
  overflow: hidden;
}
.spec-page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 40% 40%, rgba(201,122,122,.15) 0%, transparent 55%);
}
.spec-page-hero .container { position: relative; z-index: 1; }
.spec-page-hero h1 { color: var(--warm-white); }
.spec-page-hero p   { color: rgba(255,255,255,.5); }

.spec-detail {
  padding: 5rem 0;
  border-bottom: 1px solid var(--cloud);
}
.spec-detail:nth-child(even) { background: var(--cream); }
.spec-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.spec-detail-grid.reverse { direction: rtl; }
.spec-detail-grid.reverse > * { direction: ltr; }
.spec-visual {
  aspect-ratio: 4/3;
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, var(--rose-pale) 0%, var(--sage-pale) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  border: 1px solid var(--cloud);
}

/* ─── CONTACT PAGE ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 { margin-bottom: 1rem; }
.contact-info p  { margin-bottom: 2rem; }
.contact-items { display: flex; flex-direction: column; gap: 1rem; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--cream);
  border: 1px solid var(--cloud);
  border-radius: var(--r-lg);
  text-decoration: none;
  transition: all 0.2s;
}
.contact-item:hover {
  border-color: rgba(201,122,122,.25);
  background: var(--rose-pale);
  transform: translateX(3px);
}
.contact-item-icon {
  width: 42px; height: 42px;
  border-radius: var(--r-md);
  background: var(--rose-pale);
  color: var(--rose);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item h4 { font-size: 0.88rem; font-weight: 700; color: var(--ink); margin-bottom: 0.2rem; }
.contact-item p  { font-size: 0.82rem; color: var(--muted); margin: 0; }
.contact-form-card {
  background: var(--warm-white);
  border: 1px solid var(--cloud);
  border-radius: var(--r-xl);
  padding: 2.75rem;
  box-shadow: var(--shadow-md);
}

/* ─── MENTORIA PAGE ─── */
.mentoria-hero {
  padding: calc(var(--header-h) + 4rem) 0 4rem;
  background: var(--sage);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.mentoria-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 30%, rgba(201,168,76,.2) 0%, transparent 55%);
}
.mentoria-hero .container { position: relative; z-index: 1; }
.mentoria-hero h1 { color: var(--warm-white); }
.mentoria-hero p  { color: rgba(255,255,255,.55); max-width: 520px; margin: 0.85rem auto 0; }

/* ─── BLOG PAGE ─── */
.blog-hero {
  padding: calc(var(--header-h) + 3rem) 0 3rem;
  background: var(--rose-wash);
  border-bottom: 1px solid var(--cloud);
}
.blog-categories { display: flex; gap: 0.55rem; flex-wrap: wrap; margin-top: 1.5rem; }
.blog-cat-btn {
  padding: 0.45rem 1.1rem;
  border-radius: var(--r-full);
  font-size: 0.8rem;
  font-weight: 600;
  border: 1.5px solid var(--cloud);
  background: var(--warm-white);
  color: var(--slate);
  cursor: pointer;
  transition: all 0.2s;
}
.blog-cat-btn.active,
.blog-cat-btn:hover {
  background: var(--rose);
  border-color: var(--rose);
  color: #fff;
}

/* ─── RECURSOS PAGE ─── */
.recursos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.recurso-card {
  background: var(--warm-white);
  border: 1px solid var(--cloud);
  border-radius: var(--r-lg);
  padding: 2rem 1.75rem;
  text-align: center;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.recurso-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--rose), var(--sage));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.recurso-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.recurso-card:hover::after { transform: scaleX(1); }
.recurso-em { font-size: 2.5rem; display: block; margin-bottom: 1.2rem; }
.recurso-card h3 { font-family: var(--sans); font-size: 1.05rem; font-weight: 700; color: var(--ink); margin-bottom: 0.55rem; }
.recurso-card p  { font-size: 0.83rem; color: var(--muted); margin-bottom: 1.5rem; }

/* ─── ADMIN PANEL ─── */
.admin-body { background: #F8F5F5; min-height: 100vh; }
.admin-sidebar {
  width: 240px;
  position: fixed;
  top: 0; left: 0; bottom: 0;
  background: var(--ink);
  padding: 2rem 1.5rem;
  overflow-y: auto;
  z-index: 100;
}
.admin-sidebar-logo {
  display: flex; align-items: center; gap: 0.7rem;
  margin-bottom: 2.5rem;
  color: #fff;
}
.admin-sidebar-logo span {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
}
.admin-nav ul { display: flex; flex-direction: column; gap: 0.35rem; }
.admin-nav a {
  display: flex; align-items: center; gap: 0.7rem;
  padding: 0.7rem 0.9rem;
  border-radius: var(--r-sm);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,.5);
  transition: all 0.2s;
}
.admin-nav a:hover { background: rgba(255,255,255,.06); color: rgba(255,255,255,.85); }
.admin-nav a.active { background: var(--rose); color: #fff; }
.admin-nav a i { width: 16px; font-size: 0.85rem; }
.admin-nav h5 {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.2);
  margin: 1.5rem 0 0.6rem;
  padding: 0 0.9rem;
}
.admin-content {
  margin-left: 240px;
  padding: 2.5rem;
  min-height: 100vh;
}
.admin-topbar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 2.5rem;
}
.admin-topbar h1 {
  font-family: var(--sans);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.admin-card {
  background: var(--warm-white);
  border: 1px solid var(--cloud);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-xs);
}
.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
.admin-stat {
  background: var(--warm-white);
  border: 1px solid var(--cloud);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-xs);
}
.admin-stat-icon {
  width: 40px; height: 40px;
  border-radius: var(--r-md);
  background: var(--rose-pale);
  color: var(--rose);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  margin-bottom: 0.85rem;
}
.admin-stat-icon.sage { background: var(--sage-pale); color: var(--sage); }
.admin-stat-icon.gold { background: var(--gold-pale); color: var(--gold); }
.admin-stat-num { font-family: var(--serif); font-size: 1.9rem; font-weight: 700; color: var(--ink); display: block; }
.admin-stat-lbl { font-size: 0.78rem; color: var(--muted); }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th {
  text-align: left;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--cloud);
}
.admin-table td {
  padding: 0.9rem 1rem;
  font-size: 0.875rem;
  color: var(--slate);
  border-bottom: 1px solid var(--linen);
}
.admin-table tr:hover td { background: var(--rose-wash); }
.admin-badge {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.24rem 0.7rem;
  border-radius: var(--r-full);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.badge-new    { background: var(--rose-pale); color: var(--rose); }
.badge-read   { background: var(--sage-pale); color: var(--sage); }
.badge-replied{ background: var(--gold-pale); color: var(--gold); }

/* ─── TOAST ─── */
.toast-notification {
  font-family: var(--sans) !important;
}

/* ─── PAGE INNER HERO (subpages) ─── */
.page-hero {
  padding: calc(var(--header-h) + 3.5rem) 0 3.5rem;
  background: var(--cream);
  border-bottom: 1px solid var(--cloud);
}
.page-hero h1 { font-family: var(--serif); margin-bottom: 0.75rem; }
.page-hero p  { font-size: 1rem; color: var(--muted); max-width: 540px; }
.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 1rem;
}
.page-breadcrumb a { color: var(--rose); }
.page-breadcrumb i { font-size: 0.6rem; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3.5rem; }
  .hero-right { max-width: 400px; margin: 0 auto; }
  .for-who-grid { grid-template-columns: 1fr; gap: 3rem; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::after { display: none; }
  .lead-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .newsletter-content { grid-template-columns: 1fr; gap: 1.75rem; }
  .admin-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .section { padding: 4.5rem 0; }
  .container { padding: 0 1.25rem; }

  .main-nav, .header-cta { display: none; }
  .hamburger { display: flex; }

  /* Mobile nav panel */
  .main-nav.open {
    display: flex !important;
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(290px, 82vw);
    background: var(--warm-white);
    z-index: 860;
    flex-direction: column;
    padding: 5rem 1.25rem 2rem;
    gap: 0.2rem;
    box-shadow: var(--shadow-xl);
    overflow-y: auto;
  }
  .main-nav.open ul { flex-direction: column; gap: 0.2rem; }
  .main-nav.open ul li a { font-size: 1rem; padding: 0.7rem 1rem; display: block; border-radius: var(--r-sm); }
  .main-nav.open ul li a:hover { background: var(--rose-pale); color: var(--rose); }
  .main-nav.open ul li a::after { display: none; }
  .main-nav.open .dropdown { position: static; opacity: 1; visibility: visible; box-shadow: none; background: var(--cream); border-radius: var(--r-sm); margin: 0.25rem 0 0.5rem 0.75rem; }
  .nav-overlay { display: block; }

  .hero-right { display: none; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { justify-content: center; }

  .specs-grid   { grid-template-columns: 1fr; }
  .testi-grid   { grid-template-columns: 1fr; }
  .mentoria-grid{ grid-template-columns: 1fr; }
  .blog-grid    { grid-template-columns: 1fr; }
  .recursos-grid{ grid-template-columns: 1fr; }
  .spec-detail-grid { grid-template-columns: 1fr; }
  .spec-detail-grid.reverse { direction: ltr; }

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

  .final-cta-btns { flex-direction: column; align-items: center; }
  .trust-items { gap: 1rem; }

  .admin-sidebar { display: none; }
  .admin-content { margin-left: 0; padding: 1.5rem; }
  .admin-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 1.75rem; }
  .steps-grid   { grid-template-columns: 1fr; }
  .form-row     { grid-template-columns: 1fr; }
  .newsletter-inputs { flex-direction: column; }
  .newsletter-inputs input { min-width: unset; width: 100%; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .admin-stats { grid-template-columns: 1fr 1fr; }
}
