﻿@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;700;900&family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* Brand Palette - Pure Pink & Soft Light Pink (Rosa & Rosa Claro) */
  --primary: #FF2A85;          /* Vibrant Hot Pink */
  --primary-glow: #FF5EAA;     /* Luminous Pink Glow */
  --primary-dark: #C91866;     /* Deep Raspberry Pink */
  
  --pink-soft: #FFB6D9;        /* Soft Pastel Pink / Rosa Claro */
  --pink-light: #FFD6E8;       /* Ultra-Light Frosted Pink */
  --pink-blush: #FFF0F5;       /* Lavender Blush / Rose Cream */
  --pink-accent: #FF75B5;      /* Vibrant Candy Rose */

  --cream: #FFF7FA;            /* Frosted Sugar White */
  --cream-muted: #E2C2CF;      /* Soft Rose Grey */

  --bg-dark: #0E0509;          /* Deep Obsidian Rose (Sem Roxo) */
  --bg-surface-1: #180A12;     /* Midnight Dark Rose */
  --bg-surface-2: #240F1B;     /* Velvet Rose Dark Surface */
  --bg-surface-3: #321526;     /* Deep Pink Luxury Card */
  --bg-card: rgba(36, 15, 27, 0.75);
  --bg-glass: rgba(255, 182, 217, 0.05);

  --text-primary: #FFF7FA;
  --text-secondary: #E8CCD8;
  --text-muted: #A88696;

  --border-subtle: rgba(255, 182, 217, 0.12);
  --border-light: rgba(255, 182, 217, 0.22);
  --border-pink: rgba(255, 42, 133, 0.4);
  --border-soft-pink: rgba(255, 182, 217, 0.45);

  --glow-primary: 0 0 35px rgba(255, 42, 133, 0.4);
  --glow-soft: 0 0 30px rgba(255, 182, 217, 0.35);
  --glow-subtle: 0 10px 30px rgba(0, 0, 0, 0.65);

  --font-display: 'Cinzel', serif;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

p {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

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

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

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

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  background: rgba(255, 42, 133, 0.14);
  border: 1px solid var(--border-pink);
  color: var(--pink-soft);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-tag-soft-pink {
  background: rgba(255, 182, 217, 0.15);
  border-color: var(--border-soft-pink);
  color: #FFF;
}

.section-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 20px;
}

.section-title span.highlight {
  background: linear-gradient(135deg, #FFF 0%, var(--pink-soft) 45%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-desc {
  max-width: 680px;
  margin: 0 auto 50px auto;
  font-size: 1.15rem;
  color: var(--text-secondary);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  outline: none;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-normal);
  z-index: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #FFF;
  box-shadow: 0 8px 25px rgba(255, 42, 133, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s ease;
  z-index: -1;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 35px rgba(255, 42, 133, 0.7), 0 0 25px rgba(255, 182, 217, 0.5);
}

.btn-primary:hover::before { left: 100%; }

.btn-gold {
  background: linear-gradient(135deg, var(--pink-soft) 0%, var(--primary) 100%);
  color: #0E0509;
  font-weight: 800;
  box-shadow: 0 8px 25px rgba(255, 182, 217, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-gold:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 35px rgba(255, 182, 217, 0.7);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  color: var(--cream);
  border: 1px solid var(--border-light);
}

.btn-secondary:hover {
  background: rgba(255, 42, 133, 0.2);
  border-color: var(--pink-soft);
  color: #FFF;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 42, 133, 0.35);
}

.btn-sm { padding: 8px 20px; font-size: 0.88rem; }
.btn-lg { padding: 18px 40px; font-size: 1.15rem; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition-normal);
}

.site-header.scrolled {
  padding: 12px 0;
  background: rgba(14, 5, 9, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.75);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--cream);
}

.brand-logo .logo-badge {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--pink-soft) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #FFF;
  box-shadow: 0 4px 18px rgba(255, 42, 133, 0.55);
}

.brand-logo span.accent {
  background: linear-gradient(135deg, var(--primary-glow), var(--pink-soft));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 6px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--pink-soft));
  transition: width var(--transition-fast);
}

.nav-links a:hover,
.nav-links a.active {
  color: #FFF;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.audio-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.audio-toggle:hover {
  background: rgba(255, 42, 133, 0.2);
  color: var(--pink-soft);
  border-color: var(--border-pink);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 1.5rem;
  cursor: pointer;
}

/* HERO */
.hero-section {
  position: relative;
  min-height: 100vh;
  padding: 160px 0 80px 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(circle at 70% 30%, rgba(255, 42, 133, 0.22) 0%, transparent 60%),
              radial-gradient(circle at 20% 70%, rgba(255, 182, 217, 0.16) 0%, transparent 55%),
              var(--bg-dark);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  position: relative;
  transition: transform 0.2s ease-out;
}

.hero-badge-live {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  background: rgba(36, 15, 27, 0.88);
  border: 1px solid var(--border-pink);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FF2A85;
  box-shadow: 0 0 14px #FF2A85;
  animation: pulsePink 2s infinite;
}

@keyframes pulsePink {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 42, 133, 0.75); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(255, 42, 133, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 42, 133, 0); }
}

.hero-title {
  font-size: clamp(2.8rem, 5.5vw, 4.6rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.hero-title .title-glow {
  background: linear-gradient(135deg, #FFF 0%, var(--pink-soft) 40%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 580px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
}

.avatar-stack {
  display: flex;
  align-items: center;
}

.avatar-stack .mini-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--bg-surface-1);
  margin-left: -12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: #FFF;
  background: linear-gradient(135deg, var(--primary) 0%, var(--pink-soft) 100%);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.avatar-stack .mini-avatar:first-child { margin-left: 0; }

.proof-text { font-size: 0.9rem; color: var(--text-secondary); }
.proof-text strong { color: var(--cream); display: block; font-size: 1rem; }

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1200px;
}

.hero-img-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius-xl);
  padding: 14px;
  background: linear-gradient(135deg, rgba(255, 42, 133, 0.5) 0%, rgba(255, 182, 217, 0.35) 50%, rgba(255, 255, 255, 0.1) 100%);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.85), 0 0 65px rgba(255, 42, 133, 0.35);
  border: 1px solid rgba(255, 182, 217, 0.3);
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.hero-img-inner {
  position: relative;
  border-radius: calc(var(--radius-xl) - 10px);
  overflow: hidden;
  background: var(--bg-surface-2);
  aspect-ratio: 4/5;
}

.hero-img-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.floating-glass-card {
  position: absolute;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  background: rgba(24, 10, 18, 0.92);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-pink);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), var(--glow-primary);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
  animation: floatCard 6s ease-in-out infinite alternate;
}

.floating-card-1 { top: 8%; left: -40px; }
.floating-card-2 {
  bottom: 8%;
  right: -30px;
  border-color: var(--border-soft-pink);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), var(--glow-soft);
  animation-delay: -3s;
}

@keyframes floatCard {
  0% { transform: translateY(0px) rotate(0deg); }
  100% { transform: translateY(-15px) rotate(1.5deg); }
}

.card-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--pink-soft) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-size: 1.2rem;
}

.card-info h4 { font-size: 0.95rem; font-weight: 700; color: var(--cream); }
.card-info p { font-size: 0.78rem; color: var(--text-secondary); }
/* METRICS BAR */
.metrics-section {
  position: relative;
  z-index: 10;
  margin-top: -30px;
  padding-bottom: 60px;
}

.metrics-glass-bar {
  background: rgba(36, 15, 27, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-pink);
  border-radius: var(--radius-xl);
  padding: 36px 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 35px rgba(255, 42, 133, 0.25);
}

.metric-item {
  text-align: center;
  position: relative;
}

.metric-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -15px;
  top: 15%;
  height: 70%;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--border-subtle), transparent);
}

.metric-number {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 800;
  background: linear-gradient(135deg, #FFF 0%, var(--pink-soft) 50%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 8px;
}

.metric-label {
  font-size: 0.92rem;
  color: var(--text-secondary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* MARQUEE */
.marquee-ribbon {
  background: linear-gradient(90deg, var(--primary-dark) 0%, var(--primary) 35%, var(--pink-accent) 70%, var(--primary-dark) 100%);
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  box-shadow: 0 0 35px rgba(255, 42, 133, 0.45);
  transform: rotate(-1deg) scale(1.02);
  margin: 60px 0;
}

.marquee-content {
  display: inline-block;
  animation: marqueeScroll 25s linear infinite;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: #FFF;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0 24px;
}

.marquee-item .sparkle {
  color: var(--pink-soft);
  font-size: 1.2rem;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ABOUT */
.about-section { padding: 100px 0; position: relative; }
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 70px; align-items: center; }
.about-visual-stack { position: relative; }
.about-main-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--bg-surface-2);
  border: 1px solid var(--border-pink);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), var(--glow-primary);
}

.about-badge-exp {
  position: absolute;
  bottom: 25px;
  left: 25px;
  background: rgba(24, 10, 18, 0.94);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-soft-pink);
  border-radius: var(--radius-md);
  padding: 16px 22px;
  box-shadow: var(--glow-soft);
}

.about-badge-exp .exp-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--pink-soft);
  line-height: 1;
}

.about-badge-exp .exp-text { font-size: 0.85rem; color: var(--cream); font-weight: 600; }
.about-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 35px 0; }
.pillar-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 22px;
  transition: all var(--transition-normal);
}

.pillar-card:hover {
  border-color: var(--border-pink);
  transform: translateY(-5px);
  box-shadow: var(--glow-primary);
  background: var(--bg-surface-3);
}

.pillar-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(255, 42, 133, 0.16);
  border: 1px solid var(--border-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink-soft);
  font-size: 1.3rem;
  margin-bottom: 14px;
}

.pillar-card h4 { font-size: 1.1rem; margin-bottom: 8px; color: var(--cream); }
.pillar-card p { font-size: 0.9rem; line-height: 1.5; }

/* COURSES */
.courses-section {
  padding: 110px 0;
  position: relative;
  background: radial-gradient(circle at 50% 10%, rgba(255, 42, 133, 0.14) 0%, transparent 60%);
}

.courses-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 50px; }
.course-card {
  background: var(--bg-surface-2);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition-normal);
}

.course-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-pink);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.8), var(--glow-primary);
}

.course-card.featured {
  border-color: var(--pink-soft);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.8), 0 0 35px rgba(255, 182, 217, 0.4);
}

.course-card.featured::before {
  content: 'MAIS PROCURADO';
  position: absolute;
  top: 18px;
  right: 18px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--pink-soft) 100%);
  color: #0E0509;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  z-index: 5;
  box-shadow: 0 4px 15px rgba(255, 42, 133, 0.5);
}

.course-banner { height: 220px; position: relative; overflow: hidden; background: var(--bg-surface-3); }
.course-banner img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.course-card:hover .course-banner img { transform: scale(1.08); }
.course-badge-level {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: rgba(14, 5, 9, 0.9);
  backdrop-filter: blur(8px);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--cream);
  border: 1px solid var(--border-subtle);
}

.course-body { padding: 28px; display: flex; flex-direction: column; flex-grow: 1; }
.course-category { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--pink-soft); font-weight: 700; margin-bottom: 8px; }
.course-title { font-size: 1.4rem; margin-bottom: 12px; color: var(--cream); }
.course-desc { font-size: 0.95rem; color: var(--text-secondary); margin-bottom: 20px; line-height: 1.5; }
.course-features { list-style: none; margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; }
.course-features li { font-size: 0.9rem; color: var(--text-secondary); display: flex; align-items: center; gap: 10px; }
.course-features li i { color: var(--primary); font-size: 0.95rem; }
.course-footer {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.course-price { display: flex; flex-direction: column; }
.course-price .price-label { font-size: 0.75rem; color: var(--text-muted); }
.course-price .price-val { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 800; color: var(--cream); }

/* GALLERY */
.gallery-section { padding: 110px 0; position: relative; }
.gallery-filters { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 45px; }
.filter-btn {
  padding: 10px 22px;
  border-radius: var(--radius-full);
  background: var(--bg-surface-2);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
  background: linear-gradient(135deg, var(--primary) 0%, var(--pink-soft) 100%);
  color: #0E0509;
  border-color: var(--pink-soft);
  box-shadow: 0 4px 18px rgba(255, 42, 133, 0.45);
}

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-surface-2);
  border: 1px solid var(--border-subtle);
  aspect-ratio: 4/5;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.gallery-item:hover {
  transform: translateY(-6px);
  border-color: var(--border-pink);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 25px rgba(255, 42, 133, 0.35);
}

.gallery-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.gallery-item:hover .gallery-img { transform: scale(1.1); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(14, 5, 9, 0.95) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  transition: all var(--transition-fast);
}

.gallery-tag { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; color: var(--pink-soft); letter-spacing: 0.1em; margin-bottom: 6px; }
.gallery-title { font-size: 1.25rem; font-weight: 700; color: #FFF; margin-bottom: 4px; }
.gallery-desc { font-size: 0.85rem; color: var(--text-secondary); opacity: 0; transform: translateY(10px); transition: all var(--transition-fast); }
.gallery-item:hover .gallery-desc { opacity: 1; transform: translateY(0); }

/* TESTIMONIALS */
.testimonials-section { padding: 100px 0; position: relative; background: radial-gradient(circle at 50% 90%, rgba(255, 42, 133, 0.14) 0%, transparent 60%); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 50px; }
.testimonial-card {
  background: var(--bg-card);
  backdrop-filter: blur(15px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition-normal);
}

.testimonial-card:hover {
  border-color: var(--border-pink);
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7), var(--glow-primary);
}

.stars-rating { color: var(--pink-soft); font-size: 1rem; display: flex; gap: 4px; margin-bottom: 18px; }
.testimonial-quote { font-size: 1rem; line-height: 1.6; color: var(--text-primary); margin-bottom: 24px; flex-grow: 1; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; padding-top: 16px; border-top: 1px solid var(--border-subtle); }
.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--pink-soft) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #FFF;
}

.author-info h4 { font-size: 1rem; color: var(--cream); }
.author-info p { font-size: 0.8rem; color: var(--text-muted); }
.author-result-badge {
  margin-left: auto;
  background: rgba(255, 42, 133, 0.15);
  border: 1px solid rgba(255, 42, 133, 0.45);
  color: var(--pink-soft);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

/* SOCIAL FEED */
.social-section { padding: 100px 0; position: relative; }
.social-cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.social-post-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1/1;
  background: var(--bg-surface-2);
  border: 1px solid var(--border-subtle);
  transition: all var(--transition-fast);
}

.social-post-card:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: var(--primary);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.7), 0 0 20px rgba(255, 42, 133, 0.35);
}

.social-post-card img { width: 100%; height: 100%; object-fit: cover; }
.social-post-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14, 5, 9, 0.82);
  backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transition: opacity var(--transition-fast);
  color: #FFF;
}

.social-post-card:hover .social-post-overlay { opacity: 1; }
.social-post-overlay i { font-size: 2rem; color: var(--pink-soft); }

.social-banner-box {
  margin-top: 50px;
  background: linear-gradient(135deg, var(--bg-surface-2) 0%, var(--bg-surface-3) 100%);
  border: 1px solid var(--border-pink);
  border-radius: var(--radius-xl);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), var(--glow-primary);
}

.social-box-text h3 { font-size: 1.8rem; margin-bottom: 8px; }
.social-links-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* FAQ */
.faq-section { padding: 100px 0; position: relative; }
.faq-wrapper { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.faq-item {
  background: var(--bg-surface-2);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-item.active {
  border-color: var(--border-pink);
  background: var(--bg-surface-3);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 42, 133, 0.25);
}

.faq-header { padding: 22px 28px; display: flex; align-items: center; justify-content: space-between; cursor: pointer; user-select: none; }
.faq-header h4 { font-size: 1.15rem; font-weight: 600; color: var(--cream); }
.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink-soft);
  transition: transform var(--transition-fast);
}

.faq-item.active .faq-icon { transform: rotate(180deg); background: var(--primary); color: #FFF; }
.faq-body { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease; padding: 0 28px; }
.faq-item.active .faq-body { padding: 0 28px 24px 28px; }
.faq-body p { color: var(--text-secondary); line-height: 1.7; }

/* FOOTER */
.site-footer { background: var(--bg-surface-1); border-top: 1px solid var(--border-subtle); padding: 80px 0 30px 0; position: relative; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 50px; margin-bottom: 60px; }
.footer-brand p { margin: 18px 0 24px 0; font-size: 0.95rem; max-width: 320px; }
.footer-social-icons { display: flex; gap: 12px; }
.footer-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.footer-social-btn:hover {
  background: var(--primary);
  color: #FFF;
  border-color: var(--pink-soft);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(255, 42, 133, 0.4);
}

.footer-col h4 { font-size: 1.15rem; margin-bottom: 22px; color: var(--cream); }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a { color: var(--text-secondary); font-size: 0.92rem; transition: color var(--transition-fast); }
.footer-links a:hover { color: var(--pink-soft); padding-left: 5px; }
.footer-newsletter p { font-size: 0.9rem; margin-bottom: 16px; }
.newsletter-form { display: flex; gap: 8px; }
.newsletter-input {
  flex-grow: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 12px 18px;
  color: #FFF;
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
}

.newsletter-input:focus { border-color: var(--primary); }
.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.whatsapp-floating {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
  z-index: 990;
  transition: all var(--transition-normal);
  animation: pulseWhatsapp 2.5s infinite;
}

.whatsapp-floating:hover { transform: scale(1.12) rotate(8deg); box-shadow: 0 15px 40px rgba(37, 211, 102, 0.7); }
@keyframes pulseWhatsapp {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-cta-group { justify-content: center; }
  .hero-social-proof { justify-content: center; }
  .hero-visual { order: -1; }
  .hero-img-wrapper { max-width: 380px; }
  .floating-card-1 { left: -10px; }
  .floating-card-2 { right: -10px; }
  .metrics-glass-bar { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .metric-item:nth-child(2)::after { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .courses-grid, .gallery-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .social-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions .btn { display: none; }
  .mobile-menu-btn { display: block; }
  .courses-grid, .gallery-grid, .testimonials-grid, .social-cards-grid { grid-template-columns: 1fr; }
  .metrics-glass-bar { grid-template-columns: 1fr; padding: 24px; }
  .metric-item::after { display: none !important; }
  .about-pillars { grid-template-columns: 1fr; }
  .social-banner-box { flex-direction: column; text-align: center; gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}