/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --pink:        #C4587A;
  --pink-dark:   #8B2252;
  --pink-light:  #F9EBF1;
  --pink-mid:    #E8A0BA;
  --brown:       #6B3422;
  --brown-dark:  #3E1F0D;
  --brown-light: #A0614A;
  --gold:        #C9933A;
  --gold-light:  #F0D89A;
  --cream:       #FDF8F5;
  --white:       #FFFFFF;
  --text:        #2C1810;
  --text-muted:  #7A6060;
  --radius:      14px;
  --radius-lg:   24px;
  --shadow:      0 4px 24px rgba(44,24,16,.10);
  --shadow-lg:   0 12px 48px rgba(44,24,16,.16);
  --transition:  .3s cubic-bezier(.4,0,.2,1);
}

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

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
em { font-style: italic; color: var(--pink); }
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.2; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(196,88,122,.35);
}
.btn-primary:hover { background: var(--pink-dark); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(196,88,122,.4); }
.btn-ghost { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.5); }
.btn-ghost:hover { background: rgba(255,255,255,.12); border-color: white; }
.btn-outline-pink { background: transparent; color: var(--pink); border: 2px solid var(--pink); }
.btn-outline-pink:hover { background: var(--pink); color: white; }
.btn-nav { background: var(--pink); color: white !important; padding: 10px 22px; font-size: .9rem; }
.btn-nav:hover { background: var(--pink-dark); }
.btn-large { padding: 16px 36px; font-size: 1rem; }
.btn-card { background: var(--pink-light); color: var(--pink); }
.btn-card:hover { background: var(--pink); color: white; }
.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pink);
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .9rem;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(196,88,122,.25);
}
.btn-download:hover { background: var(--pink-dark); transform: translateY(-2px); }
.btn-disabled {
  background: #D0C4C8 !important;
  color: #9A8A8F !important;
  box-shadow: none !important;
  cursor: not-allowed !important;
  transform: none !important;
  pointer-events: none;
}
.btn-whatsapp { background: #25D366; color: white; }
.btn-whatsapp:hover { background: #1aaa50; transform: translateY(-2px); }

/* ===== BADGES & TAGS ===== */
.badge {
  display: inline-block;
  background: var(--pink-light);
  color: var(--pink-dark);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.section-tag {
  display: inline-block;
  color: var(--pink);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-tag.light { color: var(--pink-mid); }
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 16px; }
.section-header p { color: var(--text-muted); max-width: 560px; margin: 0 auto; font-size: 1.05rem; }

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}
.header.scrolled {
  background: rgba(253,248,245,.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(44,24,16,.08);
  padding: 12px 0;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-icon { width: 40px; height: 44px; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: .95rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}
.logo-sub {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .15em;
  color: var(--pink);
}
.header.hero-area .logo-name,
.header.hero-area .logo-sub { color: white; }
.header.hero-area .logo-sub { color: var(--pink-mid); }
.nav-list {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: .93rem;
  font-weight: 500;
  color: var(--text);
  transition: color var(--transition);
}
.nav-link:hover { color: var(--pink); }
.header.hero-area .nav-link { color: rgba(255,255,255,.85); }
.header.hero-area .nav-link:hover { color: white; }
.menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.menu-btn span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.header.hero-area .menu-btn span { background: white; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--brown-dark) 0%, #5D2010 40%, #8B2252 100%);
  position: relative;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-text h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  color: white;
  margin-bottom: 20px;
  line-height: 1.15;
}
.hero-text p {
  color: rgba(255,255,255,.8);
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 500px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 28px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
}
.stat { text-align: center; }
.stat strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  letter-spacing: -.02em;
}
.stat span { font-size: .75rem; color: rgba(255,255,255,.65); text-transform: uppercase; letter-spacing: .07em; margin-top: 6px; display: block; }
.stat-divider { width: 1px; height: 48px; background: rgba(255,255,255,.18); }

/* Hero Photo */
.hero-photo { position: relative; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.photo-wrap {
  position: relative;
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, rgba(196,88,122,.25) 0%, rgba(107,52,34,.4) 50%, rgba(201,147,58,.2) 100%);
  border: 1px solid rgba(255,255,255,.15);
  box-shadow: 0 32px 80px rgba(0,0,0,.4), 0 0 0 1px rgba(255,255,255,.08), inset 0 1px 0 rgba(255,255,255,.1);
}
/* Efeito de brilho radial atrás da foto */
.photo-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 80%, rgba(201,147,58,.35) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 20%, rgba(196,88,122,.3) 0%, transparent 50%);
  z-index: 0;
}
/* Partículas decorativas */
.photo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='200' height='200' viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='30' r='2' fill='rgba(255,255,255,0.15)'/%3E%3Ccircle cx='160' cy='50' r='1.5' fill='rgba(255,255,255,0.1)'/%3E%3Ccircle cx='80' cy='160' r='2.5' fill='rgba(255,255,255,0.12)'/%3E%3Ccircle cx='140' cy='140' r='1' fill='rgba(255,255,255,0.2)'/%3E%3Ccircle cx='40' cy='120' r='1.5' fill='rgba(255,255,255,0.1)'/%3E%3C/svg%3E");
  z-index: 0;
}
.photo-wrap .photo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,.4));
}
.photo-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,.5);
  font-size: .9rem;
  min-height: 340px;
}
.photo-placeholder svg { width: 80px; opacity: .5; }
.photo-placeholder.alt { background: var(--pink-light); min-height: 300px; }
.photo-placeholder.dark { background: rgba(255,255,255,.05); }
.photo-tag {
  position: absolute;
  bottom: 16px; left: 16px;
  background: rgba(253,248,245,.95);
  color: var(--text);
  padding: 8px 14px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}
.instagram-pill a {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: white;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: .88rem;
  font-weight: 500;
  transition: var(--transition);
}
.instagram-pill a:hover { background: rgba(255,255,255,.2); }
.hero-scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
}
.hero-scroll span {
  display: block;
  width: 2px; height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  border-radius: 2px;
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine { 0%,100% { opacity: .5; transform: scaleY(1); } 50% { opacity: 1; transform: scaleY(1.2); } }

/* ===== SOBRE ===== */
.sobre {
  padding: 100px 0;
  background: var(--cream);
}
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: center;
}
.sobre-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.sobre-img-wrap img { width: 100%; height: auto; display: block; }
.sobre-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--pink);
  color: white;
  padding: 16px 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}
.sobre-badge strong { display: block; font-size: 1.1rem; font-weight: 700; }
.sobre-badge span { font-size: .8rem; opacity: .85; }
.sobre-content h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 20px; }
.sobre-content p { color: var(--text-muted); margin-bottom: 16px; font-size: 1rem; }
.sobre-values { display: flex; flex-direction: column; gap: 12px; margin: 32px 0; }
.value {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: var(--pink-light);
  border-radius: var(--radius);
  border-left: 3px solid var(--pink);
}
.value-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  background: var(--pink);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: white;
}
.value strong { display: block; font-size: .95rem; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.value span { font-size: .83rem; color: var(--text-muted); line-height: 1.4; }

/* ===== TRAJETÓRIA ===== */
.trajetoria {
  padding: 100px 0;
  background: var(--white);
}
.traj-chapter {
  margin-top: 72px;
}
.traj-chapter + .traj-chapter {
  padding-top: 64px;
  border-top: 1px solid rgba(196,88,122,.12);
}
.traj-chapter-head {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 24px;
}
.traj-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 2px var(--pink);
  line-height: 1;
  flex-shrink: 0;
  opacity: .25;
  user-select: none;
}
.traj-chapter-info h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  color: var(--text);
  margin-bottom: 8px;
}
.traj-chapter-info p {
  color: var(--text-muted);
  font-size: .95rem;
  max-width: 560px;
  line-height: 1.6;
}
.traj-gallery {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
}
.traj-gallery::-webkit-scrollbar { display: none; }
.traj-photo {
  flex: 0 0 220px;
  height: 300px;
  border-radius: var(--radius);
  overflow: hidden;
  scroll-snap-align: start;
  position: relative;
  background: var(--pink-light);
}
.traj-photo.traj-featured {
  flex: 0 0 380px;
}
.traj-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
  display: block;
}
.traj-photo:hover img {
  transform: scale(1.06);
}
.traj-photo-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 14px 14px;
  background: linear-gradient(to top, rgba(0,0,0,.72), transparent);
}
.traj-photo-info span {
  color: white;
  font-size: .8rem;
  font-weight: 600;
  line-height: 1.4;
}
.traj-scroll-hint {
  margin-top: 12px;
  font-size: .78rem;
  color: var(--text-muted);
  text-align: center;
  letter-spacing: .04em;
}
.traj-gallery-wrap {
  position: relative;
}
.traj-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 10;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: white;
  border: none;
  box-shadow: 0 4px 20px rgba(0,0,0,.18);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--pink);
  transition: var(--transition);
}
.traj-arrow:hover {
  background: var(--pink);
  color: white;
  transform: translateY(-50%) scale(1.08);
}
.traj-prev { left: -22px; }
.traj-next { right: -22px; }

@media (max-width: 600px) {
  .traj-prev { left: 4px; }
  .traj-next { right: 4px; }
  .traj-arrow { background: rgba(255,255,255,.9); }
}

@media (max-width: 768px) {
  .traj-num { font-size: 2.2rem; }
  .traj-photo { flex: 0 0 180px; height: 240px; }
  .traj-photo.traj-featured { flex: 0 0 260px; }
}

/* ===== MENTORIA ===== */
.mentoria {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.mentoria-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--brown-dark) 0%, #6B1A3A 100%);
  z-index: 0;
}
.mentoria .container { position: relative; z-index: 1; }
.mentoria .section-header h2 { color: white; }
.mentoria .section-header p { color: rgba(255,255,255,.75); }
.mentoria-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
}
.mentoria-highlight {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  padding: 40px;
  backdrop-filter: blur(8px);
}
.highlight-tag {
  display: inline-block;
  background: var(--pink);
  color: white;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .05em;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.mentoria-highlight h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: white;
  margin-bottom: 16px;
}
.mentoria-highlight > p { color: rgba(255,255,255,.8); margin-bottom: 28px; }
.mentoria-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
.mentoria-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.9);
  font-size: .95rem;
}
.mentoria-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}
.mentoria-photo img { width: 100%; height: 100%; object-fit: cover; }

/* ===== APROVADOS COUNTER ===== */
.aprovados-counter {
  margin-bottom: 56px;
}
.aprovados-inner {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  padding: 20px 36px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
.aprovados-num {
  display: flex;
  align-items: baseline;
  gap: 2px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  flex-shrink: 0;
}
.aprovados-counter p {
  color: rgba(255,255,255,.8);
  font-size: 1rem;
  max-width: 260px;
  line-height: 1.4;
}

/* ===== URGÊNCIA MENTORIA ===== */
.urgencia-bar {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.urgencia-vagas {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-size: .88rem;
  font-weight: 500;
}
.urgencia-vagas strong { color: var(--gold-light); font-weight: 700; }
.vagas-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
  animation: pulse-dot 1.8s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.4); }
}
.urgencia-progress {
  height: 6px;
  background: rgba(255,255,255,.12);
  border-radius: 50px;
  overflow: hidden;
}
.urgencia-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--pink) 0%, var(--gold) 100%);
  border-radius: 50px;
  transition: width 1.2s cubic-bezier(.4,0,.2,1);
}
.urgencia-hint {
  font-size: .75rem;
  color: rgba(255,255,255,.5);
}

/* ===== COMO FUNCIONA ===== */
.como-funciona {
  margin-top: 72px;
  padding-top: 64px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.como-titulo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: white;
  text-align: center;
  margin-bottom: 40px;
}
.como-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}
.como-step {
  flex: 1;
  max-width: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}
.como-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--pink);
  color: white;
  font-size: .85rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 0 6px rgba(196,88,122,.2);
}
.como-step-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--pink-mid);
}
.como-step h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: white;
  line-height: 1.3;
}
.como-step p {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  line-height: 1.55;
}
.como-arrow {
  flex-shrink: 0;
  padding: 0 16px;
  margin-top: 56px;
  color: rgba(255,255,255,.3);
}
@media (max-width: 768px) {
  .como-steps { flex-direction: column; align-items: center; gap: 24px; }
  .como-arrow { transform: rotate(90deg); margin-top: 0; }
  .como-step { max-width: 100%; }
}

/* ===== CURSOS ===== */
.cursos {
  padding: 100px 0;
  background: var(--white);
}
.cursos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.curso-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid rgba(196,88,122,.1);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  animation-delay: var(--delay, 0s);
}
.curso-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--pink-mid); }
.curso-card.featured {
  background: linear-gradient(135deg, var(--pink-dark) 0%, var(--pink) 100%);
  color: white;
  border-color: transparent;
}
.curso-card.featured h3 { color: white; }
.curso-card.featured p { color: rgba(255,255,255,.85); }
.curso-icon {
  width: 52px; height: 52px;
  background: var(--pink-light);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--pink);
  margin-bottom: 8px;
}
.curso-card.featured .curso-icon {
  background: rgba(255,255,255,.15);
  color: white;
}
.curso-card .curso-tag {
  display: inline-block;
  background: var(--pink-light);
  color: var(--pink-dark);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  width: fit-content;
}
.curso-card.featured .curso-tag {
  background: rgba(255,255,255,.2);
  color: white;
}
.curso-card.featured .curso-tag.inner { display: none; }
.curso-card h3 { font-size: 1.25rem; line-height: 1.3; }
.curso-card p { font-size: .9rem; color: var(--text-muted); flex: 1; }
.curso-footer { margin-top: auto; padding-top: 8px; }

/* ===== MATERIAIS ===== */
.materiais {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.materiais-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #FDF0F5 0%, #F5E6EC 100%);
  z-index: 0;
}
.materiais .container { position: relative; z-index: 1; }
.materiais-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.material-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid rgba(196,88,122,.1);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation-delay: var(--delay, 0s);
}
.material-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.material-icon {
  width: 60px; height: 60px;
  background: var(--pink-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.material-card h3 { font-size: 1.1rem; line-height: 1.35; }
.material-card p { font-size: .9rem; color: var(--text-muted); flex: 1; }

/* ===== DEPOIMENTOS ===== */
.depoimentos {
  padding: 100px 0;
  background: var(--cream);
}
.dep-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.dep-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px 32px 32px;
  border: 1px solid rgba(196,88,122,.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: var(--transition);
  animation-delay: var(--delay, 0s);
  position: relative;
  overflow: hidden;
}
.dep-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--pink-mid); }
.dep-quote-mark {
  position: absolute;
  top: 12px; right: 24px;
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--pink-light);
  font-style: italic;
  pointer-events: none;
  user-select: none;
}
.dep-badge {
  display: inline-block;
  background: var(--pink-light);
  color: var(--pink-dark);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  width: fit-content;
}
.dep-stars { color: var(--gold); font-size: 1rem; letter-spacing: 3px; }
.dep-card > p { color: var(--text-muted); font-size: .95rem; flex: 1; line-height: 1.65; font-style: italic; }
.dep-card footer {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(196,88,122,.08);
  margin-top: auto;
}
.dep-avatar {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-dark) 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .04em;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(196,88,122,.3);
}
.dep-avatar--b { background: linear-gradient(135deg, #C4587A 0%, #8B5E83 100%); }
.dep-avatar--c { background: linear-gradient(135deg, #C4587A 0%, #6B3422 100%); }
.dep-card footer strong { display: block; font-size: .9rem; color: var(--text); }
.dep-card footer span { font-size: .78rem; color: var(--text-muted); }

/* ===== VIDEOS ===== */
.videos {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.videos-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1A0A12 0%, var(--brown-dark) 50%, #3A0A28 100%);
  z-index: 0;
}
.videos-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(196,88,122,.15) 0%, transparent 70%);
}
.videos .container { position: relative; z-index: 1; }
.videos-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: start;
}
.video-main { display: flex; flex-direction: column; gap: 0; }
.video-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: white;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
  width: fit-content;
}
.video-frame {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.08);
  background: #000;
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.video-meta {
  padding: 24px 4px 0;
}
.video-meta h3 { font-size: 1.2rem; color: white; margin-bottom: 8px; line-height: 1.3; }
.video-meta p { font-size: .9rem; color: rgba(255,255,255,.6); margin-bottom: 16px; }
.video-more {
  color: var(--pink-mid);
  font-size: .9rem;
  font-weight: 600;
  transition: color var(--transition);
}
.video-more:hover { color: white; }

/* Canal premium */
.canal-premium {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 100px;
}
.canal-top {
  display: flex;
  align-items: center;
  gap: 14px;
}
.canal-avatar-text {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-dark) 100%);
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,.25);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: 1rem;
  color: white;
  letter-spacing: .02em;
}
.canal-top strong { display: block; color: white; font-size: .95rem; }
.canal-top span { font-size: .8rem; color: rgba(255,255,255,.5); }
.canal-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 14px 0;
}
.canal-stat {
  flex: 1;
  text-align: center;
}
.canal-stat strong { display: block; color: white; font-size: 1rem; font-weight: 700; }
.canal-stat span { font-size: .72rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .05em; }
.canal-stat-divider {
  width: 1px; height: 32px;
  background: rgba(255,255,255,.12);
}
.canal-premium > p { color: rgba(255,255,255,.7); font-size: .9rem; line-height: 1.6; }
.canal-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.canal-pills span {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.8);
  padding: 5px 12px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 500;
}
.btn-youtube {
  background: #FF0000;
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(255,0,0,.3);
}
.btn-youtube:hover { background: #cc0000; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,0,0,.4); }

@media (max-width: 1024px) {
  .videos-layout { grid-template-columns: 1fr; }
  .canal-premium { position: static; }
}

/* ===== INSTAGRAM CTA ===== */
.instagram-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--brown-dark) 0%, #5D1A35 100%);
}
.insta-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
.insta-text .section-header,
.insta-text { }
.insta-text h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); color: white; margin-bottom: 16px; }
.insta-text p { color: rgba(255,255,255,.75); margin-bottom: 32px; font-size: 1rem; }
.insta-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.insta-visual { display: flex; flex-direction: column; gap: 16px; }
.insta-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: 16px;
  backdrop-filter: blur(8px);
}
.ic-inner { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.ic-avatar {
  width: 38px; height: 38px;
  background: var(--pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
  font-size: .85rem;
  flex-shrink: 0;
}
.ic-info strong { display: block; color: white; font-size: .85rem; }
.ic-info span { font-size: .78rem; color: rgba(255,255,255,.6); }
.ic-post {
  background: linear-gradient(135deg, var(--pink) 0%, var(--brown) 100%);
  border-radius: 8px;
  height: 80px;
  opacity: .5;
}
.ic-post.alt { background: linear-gradient(135deg, var(--gold) 0%, var(--pink-dark) 100%); }
.ic2 { transform: translateX(24px); }

/* ===== FOOTER ===== */
.footer {
  background: var(--brown-dark);
  color: rgba(255,255,255,.8);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  padding: 64px 0 48px;
  align-items: start;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo-name { color: white; }
.footer-brand .logo-sub { color: var(--pink-mid); }
.footer-brand > p { font-size: .9rem; color: rgba(255,255,255,.55); margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  transition: var(--transition);
}
.footer-social a:hover { background: var(--pink); color: white; }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.footer-col h4 {
  color: white;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: .88rem; color: rgba(255,255,255,.55); transition: color var(--transition); }
.footer-col a:hover { color: var(--pink-mid); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
}
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.35); }
.dev-link { color: var(--pink-mid); font-weight: 600; transition: color var(--transition); }
.dev-link:hover { color: var(--pink); }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.4);
  z-index: 99;
  transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(37,211,102,.5); }

/* ===== ANIMATIONS ===== */
[data-animate] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}
[data-animate="fade-left"] { transform: translateX(32px); }
[data-animate="fade-right"] { transform: translateX(-32px); }
[data-animate].visible {
  opacity: 1;
  transform: translate(0);
}

/* ===== FAQ ===== */
.faq-block {
  margin-top: 72px;
  padding-top: 64px;
  border-top: 1px solid rgba(255,255,255,.1);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.faq-titulo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: white;
  text-align: center;
  margin-bottom: 32px;
}
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.faq-item:first-child { border-top: 1px solid rgba(255,255,255,.1); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 20px 4px;
  color: rgba(255,255,255,.9);
  font-family: 'DM Sans', sans-serif;
  font-size: .98rem;
  font-weight: 500;
  text-align: left;
  transition: color var(--transition);
}
.faq-q:hover { color: white; }
.faq-q[aria-expanded="true"] { color: var(--pink-mid); }
.faq-icon {
  flex-shrink: 0;
  color: var(--pink-mid);
  transition: transform var(--transition);
}
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s cubic-bezier(.4,0,.2,1);
}
.faq-a.open { max-height: 300px; }
.faq-a p {
  padding: 0 4px 20px;
  color: rgba(255,255,255,.65);
  font-size: .92rem;
  line-height: 1.65;
}

/* ===== STICKY CTA ===== */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  background: var(--brown-dark);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 12px 0;
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  backdrop-filter: blur(12px);
}
.sticky-cta.visible {
  transform: translateY(0);
}
.sticky-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.sticky-cta-text {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.85);
  font-size: .92rem;
}
.sticky-cta-text strong { color: white; }
.sticky-vagas-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
  animation: pulse-dot 1.8s ease-in-out infinite;
}
@media (max-width: 480px) {
  .sticky-cta-text span:first-of-type { display: none; }
  .sticky-cta-text { gap: 6px; }
  .sticky-cta-inner { justify-content: center; }
  .sticky-cta .btn { width: 100%; justify-content: center; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { gap: 40px; }
  .sobre-grid { grid-template-columns: 1fr; gap: 48px; }
  .sobre-img-wrap { max-width: 440px; margin: 0 auto; }
  .mentoria-grid { grid-template-columns: 1fr; }
  .mentoria-photo { max-height: 340px; }
  .cursos-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .materiais-grid { grid-template-columns: 1fr 1fr; }
  .dep-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .insta-inner { grid-template-columns: 1fr; }
  .insta-visual { display: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  /* Sections */
  .hero, .sobre, .trajetoria, .mentoria, .cursos, .materiais, .depoimentos, .videos, .instagram-cta { padding: 72px 0; }

  /* Nav */
  .menu-btn { display: flex; z-index: 200; }
  .nav-list {
    position: fixed;
    inset: 0;
    background: var(--brown-dark);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 150;
  }
  .nav-list.open { transform: translateX(0); }
  .nav-link { color: white !important; font-size: 1.2rem; }
  .btn-nav { font-size: 1.1rem; padding: 14px 32px; }

  /* Hero */
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; flex-wrap: wrap; }
  .hero-photo { order: -1; }
  .photo-wrap { max-width: 300px; margin: 0 auto; }

  /* Grids → single column */
  .cursos-grid { grid-template-columns: 1fr; }
  .materiais-grid { grid-template-columns: 1fr; }
  .dep-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }

  /* Mentoria */
  .mentoria-highlight { padding: 28px 24px; }
  .como-funciona { margin-top: 48px; padding-top: 48px; }

  /* Depoimentos */
  .dep-quote-mark { font-size: 3.5rem; top: 8px; right: 16px; }
}

@media (max-width: 480px) {
  /* Container padding */
  .container { padding: 0 16px; }

  /* Hero */
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-stats { gap: 12px; padding: 16px 16px; }
  .hero-stats .stat-divider { display: none; }

  /* Instagram */
  .insta-actions { flex-direction: column; }

  /* Mentoria CTA full width on very small */
  .mentoria-highlight .btn { width: 100%; justify-content: center; }

  /* Depoimentos */
  .dep-card { padding: 28px 20px 24px; }
}
