/* ── VARIABLES ── */
:root {
  --gold: #C9A84C;
  --gold-light: #E2C472;
  --gold-dim: rgba(201, 168, 76, 0.15);
  --dark: #0A0A0B;
  --dark-2: #111113;
  --dark-3: #18181C;
  --dark-4: #222228;
  --white: #F5F0E8;
  --white-dim: rgba(245, 240, 232, 0.6);
  --white-faint: rgba(245, 240, 232, 0.08);
  --accent: #8B6914;
  --ff-display: 'Cormorant Garamond', serif;
  --ff-body: 'Outfit', sans-serif;
  --radius: 4px;
  --shadow-gold: 0 0 60px rgba(201, 168, 76, 0.12);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--dark);
  color: var(--white);
  font-family: var(--ff-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
ul { list-style: none; }
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
svg {
  display: block;
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ── TYPOGRAPHY ── */
h1, h2, h3 { font-family: var(--ff-display); font-weight: 300; line-height: 1.15; }
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2.2rem, 4vw, 3.8rem); }
h3 { font-size: clamp(1.4rem, 2vw, 1.9rem); }
em { font-style: italic; color: var(--gold-light); }
strong { font-weight: 500; }
p { color: var(--white-dim); font-size: 1.05rem; }

/* ── CONTAINER ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── SECTION BASICS ── */
section { padding: 120px 0; position: relative; overflow: hidden; }

.section-label {
  font-family: var(--ff-body);
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
  font-weight: 500;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 5rem;
}
.section-header h2 { margin-bottom: 1.2rem; }
.section-sub { font-size: 1.1rem; color: var(--white-dim); max-width: 520px; margin: 0 auto; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  font-family: var(--ff-body);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.3s;
}
.btn:hover::after { background: rgba(255,255,255,0.06); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--accent));
  color: var(--dark);
  font-weight: 600;
  box-shadow: 0 4px 30px rgba(201, 168, 76, 0.3);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(201, 168, 76, 0.45);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(245, 240, 232, 0.25);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}
.btn-lg { padding: 1.1rem 2.8rem; font-size: 0.94rem; }
.btn-full { width: 100%; justify-content: center; }

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.4rem 2rem;
  background: linear-gradient(180deg, rgba(10, 10, 11, 0.86) 0%, rgba(10, 10, 11, 0.62) 72%, rgba(10, 10, 11, 0) 100%);
  backdrop-filter: blur(14px);
  transition: background 0.4s ease, padding 0.3s ease, backdrop-filter 0.4s, border-color 0.4s ease;
  border-bottom: 1px solid rgba(201, 168, 76, 0);
}
#navbar.scrolled {
  background: rgba(10, 10, 11, 0.94);
  backdrop-filter: blur(20px);
  padding: 0.9rem 2rem;
  border-bottom-color: rgba(201, 168, 76, 0.12);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo-img {
  display: block;
  width: auto;
  height: 38px;
  object-fit: contain;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.7rem;
}
.nav-links a {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-dim);
  transition: color 0.2s;
  font-weight: 400;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--accent)) !important;
  color: var(--dark) !important;
  font-weight: 600 !important;
  padding: 0.55rem 1.4rem !important;
  border-radius: var(--radius) !important;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s;
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 96px 2rem 0;
  position: relative;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10,10,11,0.9) 0%, rgba(10,10,11,0.72) 42%, rgba(10,10,11,0.5) 100%),
    linear-gradient(180deg, rgba(10,10,11,0.6) 0%, rgba(10,10,11,0.22) 46%, rgba(10,10,11,0.88) 100%);
}
.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
}
.hero-content { position: relative; z-index: 1; max-width: 800px; }
.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.hero-title {
  margin-bottom: 1.5rem;
  color: var(--white);
}
.hero-title em { font-size: 1.1em; }
.hero-subtitle {
  font-size: 1.2rem;
  color: var(--white-dim);
  margin-bottom: 2.5rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.hero-subtitle strong { color: var(--white); font-weight: 500; }
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.4;
}
.hero-scroll-hint span {
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--white), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

/* ============================================================
   SOBRE
   ============================================================ */
#sobre { background: var(--dark-2); }
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  align-items: center;
}
.sobre-img-wrap {
  position: relative;
}
.sobre-img-frame {
  aspect-ratio: 3/4;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.2);
  position: relative;
}
.sobre-img-frame::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, rgba(201,168,76,0.3), transparent 50%);
  pointer-events: none;
  z-index: 1;
}
.sobre-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, var(--dark-3) 0%, var(--dark-4) 100%);
}
.sobre-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  image-rendering: auto;
}
.sobre-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: linear-gradient(135deg, var(--gold), var(--accent));
  color: var(--dark);
  padding: 1.2rem 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 8px 40px rgba(201,168,76,0.3);
}
.badge-num { display: block; font-family: var(--ff-display); font-size: 2.5rem; font-weight: 600; line-height: 1; }
.badge-txt { display: block; font-size: 0.68rem; font-weight: 500; letter-spacing: 0.05em; margin-top: 0.2rem; }
.sobre-text h2 { margin-bottom: 1.5rem; }
.sobre-text p { margin-bottom: 1.2rem; }
.sobre-quote {
  border-left: 2px solid var(--gold);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--gold-light);
}
.sobre-quote cite {
  display: block;
  font-family: var(--ff-body);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: var(--white-dim);
  margin-top: 0.5rem;
  font-style: normal;
}

/* ============================================================
   MÉTODO
   ============================================================ */
#metodo { background: var(--dark); }
.metodo-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.metodo-orb {
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.metodo-text {
  max-width: 820px;
  margin: -1.2rem auto 3rem;
  padding: 2rem;
  background: rgba(24, 24, 28, 0.72);
  border: 1px solid rgba(201,168,76,0.14);
  border-left: 2px solid var(--gold);
  border-radius: var(--radius);
}
.metodo-text p {
  margin-bottom: 1rem;
  color: var(--white-dim);
  font-size: 1.02rem;
}
.metodo-text p:last-child { margin-bottom: 0; }
.metodo-text strong {
  color: var(--gold-light);
  font-weight: 500;
}
.metodo-signature {
  font-family: var(--ff-display);
  font-size: 1.45rem;
  font-style: italic;
  color: var(--gold-light) !important;
}
.pilares-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  border: 1px solid rgba(201,168,76,0.1);
}
.pilar {
  padding: 2.5rem;
  background: var(--dark-2);
  border: 1px solid rgba(201,168,76,0.06);
  transition: background 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}
.pilar::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.pilar:hover { background: var(--dark-3); border-color: rgba(201,168,76,0.2); }
.pilar:hover::before { transform: scaleX(1); }
.pilar-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 1rem;
  display: grid;
  place-items: center;
  color: var(--gold-light);
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.16);
  border-radius: var(--radius);
}
.pilar-icon svg { font-size: 1.45rem; }
.pilar h3 {
  font-size: 1.15rem;
  font-family: var(--ff-display);
  color: var(--white);
  margin-bottom: 0.8rem;
  font-weight: 400;
}
.pilar p { font-size: 0.95rem; }

/* ============================================================
   CURSOS
   ============================================================ */
#cursos { background: var(--dark-2); }

.curso-destaque {
  background: var(--dark-3);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  padding: 3.5rem;
  position: relative;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-gold);
}
.curso-simples {
  background: linear-gradient(135deg, rgba(24,24,28,0.98), rgba(17,17,19,0.98));
  border-color: rgba(201,168,76,0.14);
  box-shadow: none;
}
.curso-simples .curso-badge-top {
  background: var(--dark);
  color: var(--gold-light);
  border: 1px solid rgba(201,168,76,0.28);
}
.curso-simples .curso-tagline {
  max-width: 620px;
}
.curso-badge-top {
  position: absolute;
  top: -14px;
  left: 2.5rem;
  background: linear-gradient(135deg, var(--gold), var(--accent));
  color: var(--dark);
  padding: 0.3rem 1.2rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.curso-badge-top svg {
  font-size: 0.95rem;
  stroke-width: 2;
}
.curso-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: start;
}
.curso-photo {
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.18);
  margin-bottom: 1.5rem;
  background: var(--dark-2);
}
.curso-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.curso-info h3 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 1.2rem;
  color: var(--white);
}
.curso-tagline {
  font-size: 1.05rem;
  color: var(--white-dim);
  margin-bottom: 2rem;
}
.curso-lista {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.curso-lista li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.95rem;
  color: var(--white-dim);
}
.check { color: var(--gold); flex-shrink: 0; margin-top: 0.05rem; }
.garantia-box {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--gold-dim);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius);
  padding: 1.2rem;
  margin-bottom: 2rem;
}
.garantia-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--gold-light);
  border: 1px solid rgba(201,168,76,0.22);
  border-radius: var(--radius);
}
.garantia-icon svg { font-size: 1.15rem; }
.garantia-box strong { color: var(--gold-light); display: block; margin-bottom: 0.25rem; }
.garantia-box p { font-size: 0.9rem; margin: 0; }
.curso-disclaimer {
  font-size: 0.78rem;
  color: rgba(245,240,232,0.35);
  margin-top: 1rem;
  font-style: italic;
}
.modulo-card {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(245,240,232,0.06);
}
.modulo-card:last-child { border-bottom: none; }
.modulo-num {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  color: var(--gold);
  min-width: 28px;
  font-weight: 600;
}
.modulo-card h4 {
  font-family: var(--ff-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.modulo-card p { font-size: 0.85rem; margin: 0; }
.modulo-bonus { background: var(--gold-dim); padding: 1.2rem; border-radius: var(--radius); border: none !important; margin-top: 0.5rem; }

.curso-secundario {
  background: var(--dark-3);
  border: 1px solid rgba(245,240,232,0.08);
  border-radius: var(--radius);
  padding: 2.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.cs-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--gold-light);
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.16);
  border-radius: var(--radius);
}
.cs-icon svg { font-size: 1.65rem; }
.cs-info { flex: 1; }
.cs-info h3 { font-size: 1.5rem; margin-bottom: 0.6rem; }
.cs-info p { font-size: 0.95rem; margin: 0; }

/* ============================================================
   WORKSHOPS
   ============================================================ */
#workshops {
  background: var(--dark);
}
.workshops-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
  align-items: center;
}
.workshops-content h2 {
  margin-bottom: 1.5rem;
}
.workshops-content > p {
  max-width: 540px;
  margin-bottom: 2rem;
}
.workshops-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.workshops-showcase {
  display: grid;
  gap: 1.2rem;
}
.workshops-photo {
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.16);
  background: var(--dark-2);
}
.workshops-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.workshops-list {
  border: 1px solid rgba(201,168,76,0.12);
  background: linear-gradient(135deg, rgba(24,24,28,0.85), rgba(17,17,19,0.92));
  border-radius: var(--radius);
  padding: 0.5rem 2rem;
}
.workshop-item {
  display: flex;
  gap: 1.2rem;
  padding: 1.7rem 0;
  border-bottom: 1px solid rgba(245,240,232,0.06);
}
.workshop-item:last-child {
  border-bottom: none;
}
.workshop-num {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  color: var(--gold);
  line-height: 1.2;
  min-width: 34px;
}
.workshop-item h3 {
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 0.55rem;
}
.workshop-item p {
  font-size: 0.95rem;
  margin: 0;
}

/* ============================================================
   EXPERIÊNCIAS
   ============================================================ */
#experiencias {
  background: var(--dark-2);
}
.experiencias-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-auto-rows: minmax(240px, auto);
  gap: 1.2rem;
}
.experiencia-card {
  position: relative;
  min-height: 240px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.14);
  background: var(--dark-3);
}
.experiencia-wide {
  grid-row: span 2;
}
.experiencia-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.experiencia-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,11,0.04), rgba(10,10,11,0.78));
}
.experiencia-card:hover img {
  transform: scale(1.035);
}
.experiencia-card figcaption {
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.1rem;
  z-index: 1;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ============================================================
   DEPOIMENTOS
   ============================================================ */
#depoimentos { background: var(--dark); }
.depo-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(201,168,76,0.03) 50%, transparent);
  pointer-events: none;
}
.depo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.depo-card {
  background: var(--dark-2);
  border: 1px solid rgba(245,240,232,0.06);
  border-radius: var(--radius);
  padding: 2.2rem;
  transition: border-color 0.3s, transform 0.3s;
}
.depo-card:hover {
  border-color: rgba(201,168,76,0.25);
  transform: translateY(-4px);
}
.depo-stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 0.1em; margin-bottom: 1rem; }
.depo-card p { font-size: 1rem; color: var(--white-dim); margin-bottom: 1.5rem; font-style: italic; }
.depo-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.depo-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--accent));
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.depo-author strong { display: block; font-size: 0.92rem; color: var(--white); }
.depo-author span { font-size: 0.78rem; color: var(--white-dim); }

/* ============================================================
   CTA FINAL
   ============================================================ */
#cta-final {
  background: var(--dark-2);
  text-align: center;
  padding: 140px 0;
}
.cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.cta-orb {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 65%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.cta-content { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.cta-content h2 { margin-bottom: 1.2rem; }
.cta-content p { font-size: 1.1rem; margin-bottom: 2.5rem; max-width: 500px; margin-left: auto; margin-right: auto; }

/* ============================================================
   CONTATO
   ============================================================ */
#contato { background: var(--dark); }
.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: start;
}
.contato-info h2 { margin-bottom: 1.2rem; }
.contato-info > p { margin-bottom: 2rem; }
.contato-links { display: flex; flex-direction: column; gap: 1rem; }
.contato-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: var(--dark-2);
  border: 1px solid rgba(245,240,232,0.06);
  border-radius: var(--radius);
  font-size: 0.92rem;
  color: var(--white-dim);
  transition: all 0.25s;
}
.contato-link:hover {
  border-color: rgba(201,168,76,0.3);
  color: var(--white);
  background: var(--dark-3);
}
.cl-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--gold-light);
  border: 1px solid rgba(201,168,76,0.16);
  border-radius: var(--radius);
}
.cl-icon svg { font-size: 1rem; }

.contato-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.45rem; }
.form-group label {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark-2);
  border: 1px solid rgba(245,240,232,0.1);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 0.95rem;
  transition: border-color 0.25s;
  outline: none;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(245,240,232,0.25); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: rgba(201,168,76,0.5); }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--dark-2); }
.form-success {
  text-align: center;
  color: var(--gold-light);
  font-size: 0.9rem;
  padding: 0.8rem;
  background: var(--gold-dim);
  border-radius: var(--radius);
  border: 1px solid rgba(201,168,76,0.25);
}
.hidden { display: none; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--dark-2);
  border-top: 1px solid rgba(245,240,232,0.06);
  padding: 4rem 0 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-logo-img { display: block; width: auto; height: 52px; object-fit: contain; margin-bottom: 0.8rem; }
.footer-brand p { font-size: 0.85rem; color: rgba(245,240,232,0.35); }
.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 0.82rem;
  color: rgba(245,240,232,0.4);
  letter-spacing: 0.08em;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(245,240,232,0.05);
  padding: 1.5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.72rem;
  color: rgba(245,240,232,0.25);
  font-style: italic;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes orb-drift {
  0%, 100% { transform: translateX(-60%) translateY(0); }
  50% { transform: translateX(-60%) translateY(-30px); }
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  50% { opacity: 0.4; }
}

.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal { transform: translateY(30px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}
.pilar:nth-child(2) { transition-delay: 0.1s; }
.pilar:nth-child(3) { transition-delay: 0.2s; }
.pilar:nth-child(4) { transition-delay: 0.3s; }
.pilar:nth-child(5) { transition-delay: 0.4s; }
.pilar:nth-child(6) { transition-delay: 0.5s; }
.depo-card:nth-child(2) { transition-delay: 0.15s; }
.depo-card:nth-child(3) { transition-delay: 0.3s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 968px) {
  .sobre-grid { grid-template-columns: 1fr; gap: 4rem; }
  .sobre-img-wrap { max-width: 360px; margin: 0 auto; }
  .pilares-grid { grid-template-columns: repeat(2, 1fr); }
  .curso-grid { grid-template-columns: 1fr; }
  .contato-grid { grid-template-columns: 1fr; }
  .workshops-grid { grid-template-columns: 1fr; gap: 3rem; }
  .experiencias-grid { grid-template-columns: 1fr; }
  .experiencia-wide { grid-row: auto; }
  .depo-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .footer-inner { flex-direction: column; }
  .footer-links { gap: 1.5rem; }
}

@media (max-width: 640px) {
  section { padding: 80px 0; }
  .btn {
    padding: 0.85rem 1.35rem;
    font-size: 0.76rem;
    letter-spacing: 0.07em;
    text-align: center;
    justify-content: center;
  }
  .btn-lg {
    padding: 0.95rem 1.45rem;
    font-size: 0.78rem;
  }
  .metodo-text {
    margin: -0.5rem auto 2.2rem;
    padding: 1.4rem;
  }
  .metodo-text p { font-size: 0.96rem; }
  .metodo-signature { font-size: 1.25rem; }
  .pilares-grid { grid-template-columns: 1fr; }
  .curso-destaque { padding: 2rem; }
  .curso-secundario { flex-direction: column; }
  .workshops-list { padding: 0.25rem 1.25rem; }
  .workshop-item { gap: 0.9rem; }
  .workshops-actions { flex-direction: column; align-items: stretch; }
  .hero-photo { object-position: 56% center; }
  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(10,10,11,0.78) 0%, rgba(10,10,11,0.52) 38%, rgba(10,10,11,0.92) 100%),
      linear-gradient(90deg, rgba(10,10,11,0.72), rgba(10,10,11,0.42));
  }
  .curso-photo,
  .workshops-photo {
    aspect-ratio: 4/3;
  }
  .experiencia-card { min-height: 230px; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10,10,11,0.98);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid rgba(201,168,76,0.15);
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .hero-actions { flex-direction: column; align-items: center; }
  .footer-bottom { flex-direction: column; }
  .sobre-badge { right: 0; }
}
