/* ===== DESIGN TOKENS ===== */
:root {
  --green-dark: #0a3d2e;
  --gold: #c9a84c;
  --gold-muted: #a07830;
  --teal: #1a7a6e;
  --blue-teal: #4a9ba8;
  --creme: #f9f7f3;
  --creme-alt: #f0ece3;
  --white: #ffffff;
  --text: #0a3d2e;
  --text-muted: rgba(10,61,46,0.55);
  --text-faint: rgba(10,61,46,0.35);
  --border: rgba(10,61,46,0.12);
  --gold-border: rgba(201,168,76,0.35);
  --field-bg: #f9f8f5;
  --nav-height: 68px;
}

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

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

body {
  background: var(--white);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: 'Inter', sans-serif; }
textarea { font-family: 'Inter', sans-serif; }
select option { background: #fff; color: var(--text); }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s cubic-bezier(.22,1,.36,1), transform 0.65s cubic-bezier(.22,1,.36,1);
}
.reveal.revealed { opacity: 1; transform: translateY(0); }

.reveal-children > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s cubic-bezier(.22,1,.36,1), transform 0.5s cubic-bezier(.22,1,.36,1);
}
.reveal-children.revealed > *:nth-child(1) { opacity:1; transform:none; transition-delay:0s; }
.reveal-children.revealed > *:nth-child(2) { opacity:1; transform:none; transition-delay:.08s; }
.reveal-children.revealed > *:nth-child(3) { opacity:1; transform:none; transition-delay:.16s; }
.reveal-children.revealed > *:nth-child(4) { opacity:1; transform:none; transition-delay:.24s; }
.reveal-children.revealed > *:nth-child(5) { opacity:1; transform:none; transition-delay:.32s; }
.reveal-children.revealed > *:nth-child(6) { opacity:1; transform:none; transition-delay:.40s; }
.reveal-children.revealed > *:nth-child(7) { opacity:1; transform:none; transition-delay:.48s; }
.reveal-children.revealed > *:nth-child(8) { opacity:1; transform:none; transition-delay:.56s; }
.reveal-children.revealed > *:nth-child(9) { opacity:1; transform:none; transition-delay:.64s; }

/* ===== BUTTON LIFT ===== */
.btn-lift {
  transition: transform 0.22s cubic-bezier(.22,1,.36,1), box-shadow 0.22s cubic-bezier(.22,1,.36,1) !important;
}
.btn-lift:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 14px 36px rgba(10,61,46,0.22) !important;
}
.btn-lift:active { transform: translateY(-1px) !important; }

.btn-lift-ghost {
  transition: transform 0.22s cubic-bezier(.22,1,.36,1), box-shadow 0.22s cubic-bezier(.22,1,.36,1) !important;
}
.btn-lift-ghost:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 10px 28px rgba(10,61,46,0.12) !important;
}

/* ===== PULSE ANIMATION ===== */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .55; transform: scale(1.3); }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f0ede5; }
::-webkit-scrollbar-thumb { background: rgba(10,61,46,0.2); border-radius: 3px; }

/* ===== AUTOFILL ===== */
input:-webkit-autofill, input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px #f9f8f5 inset;
  -webkit-text-fill-color: #0a3d2e;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #0a3d2e;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 4px 24px rgba(10,61,46,0.18);
  transition: all 0.4s cubic-bezier(.22,1,.36,1);
  z-index: 1000;
}

.navbar.scrolled {
  background: #0a3d2e;
  box-shadow: 0 8px 40px rgba(10,61,46,0.28);
  height: 52px;
}

.navbar.menu-open {
  background: #0a3d2e;
}

.nav-logo img {
  height: 88px;
  display: block;
  margin-left: -22px;
  transform-origin: left center;
  transition: height 0.4s cubic-bezier(.22,1,.36,1), opacity 0.3s ease;
}
.navbar.scrolled .nav-logo img {
  height: 52px;
  opacity: 0.92;
}

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

.nav-links a {
  color: rgba(255,255,255,0.72);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 0.45rem 1rem;
  border-radius: 8px;
  background: transparent;
  border: none;
  transition: color 0.2s, background 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 1rem;
  right: 1rem;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s cubic-bezier(.22,1,.36,1);
  border-radius: 2px;
}

.nav-links a:hover {
  color: #fff;
  background: rgba(255,255,255,0.07);
}

.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  background: var(--gold);
  color: var(--green-dark);
  padding: 0.5rem 1.3rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  border: none;
  box-shadow: 0 2px 12px rgba(201,168,76,0.35);
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}
.nav-cta:hover {
  background: #d4b455;
  box-shadow: 0 4px 20px rgba(201,168,76,0.45);
  transform: translateY(-1px);
}
.nav-cta:active {
  transform: translateY(0);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 0.6rem;
  min-width: 44px;
  min-height: 44px;
  cursor: pointer;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(.22,1,.36,1);
  transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s;
}
.mobile-menu-overlay.open { display: block; opacity: 1; }

/* Mobile Menu Drawer */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background: var(--green-dark);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 0;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.22,1,.36,1);
  box-shadow: -8px 0 48px rgba(0,0,0,0.25);
}

.mobile-menu.open { transform: translateX(0); }

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mobile-menu-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.02em;
}

.mobile-menu-close {
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.mobile-menu-close:hover { background: rgba(255,255,255,0.18); }

.mobile-menu-links {
  flex: 1;
  padding: 1rem 0;
  overflow-y: auto;
}

.mobile-menu a {
  display: flex;
  align-items: center;
  color: rgba(255,255,255,0.75);
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  border-left: 3px solid transparent;
}

.mobile-menu a:hover {
  background: rgba(255,255,255,0.06);
  color: #fff;
  border-left-color: var(--gold);
}

.mobile-menu-footer {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.mobile-menu-cta {
  display: block;
  text-align: center;
  background: var(--gold);
  color: var(--green-dark);
  padding: 0.9rem;
  border-radius: 10px;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-decoration: none;
}

/* ===== HERO (STICKY SCROLL) ===== */
.hero-section {
  min-height: 400vh;
  position: relative;
  background: var(--white);
}

.hero-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: auto 1fr;
  grid-template-areas:
    "top    video"
    "bottom video";
  padding: 0 max(1.5rem, calc((100% - 1100px) / 2));
  column-gap: 4rem;
  align-items: center;
  overflow: hidden;
}

.hero-text-top    { grid-area: top;    align-self: end;   padding-top: var(--nav-height); margin-top: -2rem; }
.hero-text-bottom { grid-area: bottom; align-self: start; padding-bottom: 2rem; }

.hero-event-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 999px;
  padding: 0.3rem 0.9rem;
  margin-bottom: 1.5rem;
}

.hero-bullet {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 1.8s ease-in-out infinite;
}

.hero-event-pill span {
  color: var(--gold-muted);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.hero-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 1.05;
  color: var(--green-dark);
  margin-bottom: 1.2rem;
  letter-spacing: -0.02em;
}

.hero-title .gold { color: var(--gold); }

.hero-subtitle {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 2rem;
}

.hero-meta {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 2rem;
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.hero-vagas-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(201,168,76,0.08);
  border: 1px solid var(--gold-border);
  border-radius: 12px;
  padding: 0.65rem 1.1rem;
  margin-bottom: 2rem;
}

.hero-vagas-badge .bullet {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(201,168,76,0.5);
  animation: pulse 1.8s ease-in-out infinite;
  flex-shrink: 0;
}

.hero-vagas-badge span {
  font-size: 0.9rem;
  color: var(--text);
}

.hero-vagas-badge strong {
  color: var(--gold);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--green-dark);
  color: #fff;
  padding: 0.9rem 2rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border: none;
  box-shadow: 0 6px 24px rgba(10,61,46,0.22);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-ghost {
  border: 1.5px solid rgba(10,61,46,0.2);
  color: var(--green-dark);
  padding: 0.9rem 1.5rem;
  border-radius: 12px;
  font-size: 0.95rem;
  background: rgba(255,255,255,0.7);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-video-wrap {
  grid-area: video;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  position: relative;
}

.hero-video-fallback {
  position: absolute;
  width: 100%;
  max-width: 260px;
  height: auto;
  object-fit: contain;
  border-radius: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
  pointer-events: none;
}

.hero-video-fallback.video-ready {
  opacity: 0;
}

.hero-video-wrap video {
  width: 100%;
  max-width: 260px;
  height: auto;
  object-fit: contain;
  border-radius: 0 !important;
  box-shadow: none !important;
  background: transparent;
  position: relative;
  z-index: 0;
}

/* ===== SECTION COMMON ===== */
.section-pill {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.pill-gold {
  background: rgba(201,168,76,0.12);
  color: var(--gold-muted);
}

.pill-teal {
  background: rgba(26,122,110,0.1);
  color: var(--teal);
}

.pill-green {
  background: rgba(10,61,46,0.07);
  color: var(--green-dark);
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  color: var(--green-dark);
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.gold-line {
  width: 52px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: 2rem;
}

/* ===== ABOUT ===== */
#sobre {
  position: relative;
  padding: 120px 6vw;
  background: url('img/bonecosfund.jpeg') right center / contain no-repeat;
  background-color: var(--creme);
}

#sobre::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #f9f7f3 40%, rgba(249,247,243,0.15) 100%);
  pointer-events: none;
  z-index: 1;
}

#sobre .about-inner {
  position: relative;
  z-index: 2;
}

.about-inner { max-width: 1100px; margin: 0 auto; }

.about-text p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-muted);
  max-width: 660px;
  margin-bottom: 1rem;
}

.about-text strong { color: var(--green-dark); font-weight: 600; }

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 3.5rem;
}

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

.stat-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  box-shadow: 0 4px 20px rgba(10,61,46,0.06);
  border: 1px solid rgba(10,61,46,0.06);
  position: relative;
  animation: float-stat 4s ease-in-out infinite;
  will-change: transform;
}

.stat-card::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 20px;
  box-shadow: 0 0 24px 8px rgba(201,168,76,0.45);
  opacity: 0;
  pointer-events: none;
  animation: glow-stat 4s ease-in-out infinite;
  z-index: -1;
}

@keyframes glow-stat {
  0%, 100% { opacity: 0.2; }
  50%       { opacity: 0.75; }
}

.about-stats .stat-card:nth-child(1),
.about-stats .stat-card:nth-child(1)::after { animation-delay: 0s; }
.about-stats .stat-card:nth-child(2),
.about-stats .stat-card:nth-child(2)::after { animation-delay: 0.6s; }
.about-stats .stat-card:nth-child(3),
.about-stats .stat-card:nth-child(3)::after { animation-delay: 1.2s; }
.about-stats .stat-card:nth-child(4),
.about-stats .stat-card:nth-child(4)::after { animation-delay: 1.8s; }

@media (hover: hover) {
  .stat-card:hover,
  .stat-card:hover::after { animation-play-state: paused; }
}

.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-number.gold { color: var(--gold); }
.stat-number.teal { color: var(--teal); }
.stat-number.green { color: var(--green-dark); }

.stat-card-green {
  background: var(--green-dark);
  color: var(--white);
}
.stat-card-green .stat-label,
.stat-card-green .stat-sub { color: rgba(255,255,255,0.75); }
.stat-card-green .stat-number.gold { color: var(--gold); }
.stat-card-green .stat-number.teal { color: #7ecfc9; }
.stat-card-green .stat-number.green { color: var(--white); }

.stat-label {
  color: var(--green-dark);
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 0.2rem;
}

.stat-sub { color: var(--text-faint); font-size: 0.78rem; }

/* ===== WORKSHOPS ===== */
#oficinas {
  padding: 120px 6vw;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.oficinas-bg-strip {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.oficinas-bg-strip::before,
.oficinas-bg-strip::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
}
.oficinas-bg-strip::before {
  left: 0;
  background: linear-gradient(to right, #fff 20%, rgba(255,255,255,0));
}
.oficinas-bg-strip::after {
  right: 0;
  background: linear-gradient(to left, #fff 20%, rgba(255,255,255,0));
}

.oficinas-strip-track {
  display: flex;
  gap: 1rem;
  animation: strip-scroll 30s linear infinite;
  will-change: transform;
}

.oficinas-strip-track img {
  height: 600px;
  width: auto;
  border-radius: 10px;
  object-fit: cover;
  opacity: 0.55;
  margin-top: 200px;
  flex-shrink: 0;
}

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

.oficinas-inner {
  position: relative;
  z-index: 1;
}

.oficinas-inner { max-width: 1100px; margin: 0 auto; }

.oficinas-header { margin-bottom: 3rem; }

.oficinas-title-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: fit-content;
  margin: 0 auto;
}

.workshops-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.workshop-card {
  background: var(--white);
  border-radius: 16px;
  padding: 1.6rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(10,61,46,0.05);
  border: 1px solid rgba(10,61,46,0.07);
  cursor: default;
}

.workshop-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: 16px 16px 0 0;
}

.workshop-card.c-gold::before { background: linear-gradient(90deg, #c9a84c, #c9a84c88); }
.workshop-card.c-teal::before { background: linear-gradient(90deg, #1a7a6e, #1a7a6e88); }
.workshop-card.c-blue::before { background: linear-gradient(90deg, #4a9ba8, #4a9ba888); }

.workshop-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 8px;
  padding: 0.3rem 0.7rem;
  margin-bottom: 0.75rem;
}

.workshop-liga {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
}

.workshop-theme {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
}

.workshop-title {
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(10,61,46,0.68);
}

/* ===== COUNTDOWN ===== */
.countdown-wrap {
  text-align: center;
  margin-bottom: 3rem;
  background: var(--green-dark);
  border-radius: 20px;
  padding: 2.5rem 2rem;
}

.countdown-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.5rem;
}

.countdown-boxes {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.countdown-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  min-width: 90px;
}

.countdown-num {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.countdown-unit {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 0.4rem;
}

.countdown-sep {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.countdown-date {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

/* ===== TIMELINE ===== */
.timeline-wrap {
  margin-bottom: 3rem;
  background: var(--white);
  border-radius: 20px;
  padding: 2rem 2.5rem;
  box-shadow: 0 4px 20px rgba(10,61,46,0.06);
  border: 1px solid var(--border);
}

.timeline-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.tl-item {
  display: grid;
  grid-template-columns: 52px 20px 1fr;
  align-items: start;
  gap: 0 1rem;
  position: relative;
}

.tl-item:not(:last-child) .tl-dot::after {
  content: '';
  position: absolute;
  left: 52px + 1rem + 9px;
  top: 20px;
  width: 2px;
  height: 100%;
  background: rgba(10,61,46,0.1);
}

.tl-time {
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  padding-top: 2px;
  text-align: right;
}

.tl-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green-dark);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--green-dark);
  margin-top: 3px;
  position: relative;
  flex-shrink: 0;
  z-index: 1;
}

.tl-dot::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 12px;
  transform: translateX(-50%);
  width: 2px;
  height: calc(100% + 18px);
  background: rgba(10,61,46,0.12);
}

.tl-dot-end::before { display: none; }

.tl-content {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding-bottom: 1.25rem;
  padding-top: 1px;
}

/* ===== INFO ===== */
#informacoes {
  padding: 120px 6vw;
  background: var(--creme);
}

.info-inner { max-width: 1100px; margin: 0 auto; }

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 0;
}

.info-left, .info-right { display: flex; flex-direction: column; gap: 1rem; }

.info-card {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(10,61,46,0.05);
  border: 1px solid rgba(10,61,46,0.06);
  padding: 1.25rem 1.5rem;
}

.info-detail-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.info-icon-box {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.icon-red { background: #fef2f2; }
.icon-gray { background: #f4f4f5; }
.icon-gold { background: rgba(201,168,76,0.12); }

.info-detail-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 2px;
}

.info-detail-value {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--green-dark);
}

/* Maps card */
.maps-card-link {
  display: block;
  text-decoration: none;
  color: var(--text);
  transition: opacity 0.2s;
}
.maps-card-link:hover { opacity: 0.9; }

.maps-preview {
  position: relative;
  width: 100%;
  height: 140px;
  overflow: hidden;
  background: #e8e8e8;
}

.maps-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -100%);
  font-size: 2rem;
  pointer-events: none;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.maps-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.1rem;
  border-top: 1px solid var(--border);
  gap: 0.5rem;
}

.maps-footer-text { display: flex; flex-direction: column; }
.maps-label { font-weight: 700; font-size: 0.88rem; color: var(--green-dark); }
.maps-sub { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.1rem; }
.maps-arrow { font-size: 1rem; color: var(--text-faint); flex-shrink: 0; }

/* Incluso card */
.incluso-card {
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.22);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
}

.incluso-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 0.9rem;
}

.incluso-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1rem;
}

.incluso-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--green-dark);
  font-weight: 500;
}

.incluso-item::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Pagamento card */
.pagamento-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--green-dark);
  margin-bottom: 1.25rem;
}

.pix-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 0.5rem;
}

.pix-cnpj-box {
  background: var(--creme);
  border: 1px solid rgba(10,61,46,0.1);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.6rem;
}

.pix-cnpj-val {
  font-family: monospace;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green-dark);
}

.pix-copy {
  background: none;
  border: none;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}

.pix-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 1.25rem;
}

.divider {
  border: none;
  border-top: 1px solid rgba(10,61,46,0.07);
  margin: 0 0 1.25rem;
}

.sipag-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  border: 1.5px solid var(--gold);
  color: var(--gold-muted);
  background: transparent;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  font-family: 'Inter', sans-serif;
}
.sipag-btn:hover { background: rgba(201,168,76,0.08); }

/* Duvidas card */
.duvidas-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 0.5rem;
}

.duvidas-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: #25d366;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 0.78rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  font-family: 'Inter', sans-serif;
}
.btn-whatsapp:hover { background: #1db954; }

/* ===== FORM ===== */
#inscricao {
  padding: 120px 6vw;
  background: var(--creme);
  position: relative;
  overflow: hidden;
}

.form-inner {
  max-width: 760px;
  margin: 0 auto;
}

/* Progress bar */
.form-progress {
  margin-bottom: 2rem;
}

.form-progress-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 0.8rem;
}

.form-progress-label { color: var(--text-muted); }
.form-progress-remaining { color: var(--gold-muted); font-weight: 700; }

.progress-track {
  height: 6px;
  background: rgba(10,61,46,0.08);
  border-radius: 999px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #c9a84c, #e0be6a);
  border-radius: 999px;
  transition: width 1s ease;
}

/* Form card */
.form-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 48px rgba(10,61,46,0.14);
  border: 1px solid rgba(10,61,46,0.08);
  display: grid;
  grid-template-columns: 280px 1fr;
}

/* Side panel */
.form-side-panel {
  background: var(--green-dark);
  padding: 2.5rem 1.75rem;
  display: flex;
  flex-direction: column;
}

.form-side-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
}

.form-side-sub {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.3rem;
  line-height: 1.4;
}

.form-side-divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 1.25rem 0;
}

.form-side-info { display: flex; flex-direction: column; gap: 0.65rem; }

.form-side-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
}

.form-side-icon { font-size: 1rem; flex-shrink: 0; }

/* Urgency banner above form */
.vagas-urgency-wrap {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  margin-bottom: 2.5rem;
}

.vagas-urgency-banner {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1.3rem;
  background: rgba(201,168,76,0.08);
  border: 1.5px solid rgba(201,168,76,0.45);
  border-radius: 100px;
  animation: urgency-pop 0.6s cubic-bezier(.22,1,.36,1) both, urgency-glow 2.4s ease-in-out 0.6s infinite;
}

@keyframes urgency-pop {
  from { opacity: 0; transform: scale(0.88) translateY(8px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes urgency-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,76,0); border-color: rgba(201,168,76,0.35); }
  50%       { box-shadow: 0 0 14px 2px rgba(201,168,76,0.22); border-color: rgba(201,168,76,0.75); }
}

.vagas-urgency-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  animation: pulse 1.6s ease-in-out infinite;
}

.vagas-urgency-text {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gold-muted);
  letter-spacing: 0.01em;
}

.vagas-urgency-arrow {
  font-size: 1rem;
  color: var(--gold);
  animation: arrow-nudge 1.6s ease-in-out infinite;
}

@keyframes arrow-nudge {
  0%, 100% { transform: translateX(0); }
  50%       { transform: translateX(4px); }
}

.form-side-vagas {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.form-side-vagas-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  animation: pulse 1.8s ease-in-out infinite;
}

.form-side-vagas-label {
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.03em;
}

/* Side steps */
.form-side-steps {
  margin-top: auto;
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.form-side-step {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.form-side-step-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.35);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
}

.form-side-step.active .form-side-step-circle {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--green-dark);
}

.form-side-step.done .form-side-step-circle {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}

.form-side-step-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  font-weight: 500;
  transition: color 0.3s;
}

.form-side-step.active .form-side-step-label { color: #fff; font-weight: 700; }
.form-side-step.done .form-side-step-label { color: rgba(255,255,255,0.6); }

.form-side-step-line {
  width: 2px;
  height: 20px;
  background: rgba(255,255,255,0.12);
  margin-left: 13px;
}

.form-right-panel { display: flex; flex-direction: column; min-width: 0; }

@media (max-width: 900px) {
  .form-card { grid-template-columns: 1fr; }
  .form-side-panel { padding: 1.5rem; flex-direction: row; flex-wrap: wrap; gap: 1rem; align-items: center; }
  .form-side-steps { display: none; }
  .form-side-vagas { text-align: left; margin-bottom: 0; }
  .form-side-divider { display: none; }
  .form-side-sub { display: none; }
}

/* Steps tabs */
.steps-nav {
  display: flex;
  border-bottom: 1px solid rgba(10,61,46,0.07);
}

.step-tab {
  flex: 1;
  padding: 1rem;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 400;
  color: rgba(10,61,46,0.28);
  border-bottom: 2.5px solid transparent;
  background: transparent;
  border-top: none;
  border-left: none;
  border-right: none;
  cursor: default;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
}

.step-tab.active {
  font-weight: 700;
  color: var(--gold-muted);
  border-bottom-color: var(--gold);
  background: rgba(201,168,76,0.05);
}

.step-tab.done {
  color: rgba(10,61,46,0.45);
  cursor: pointer;
}

/* Form body */
.form-body { padding: 2.25rem; }

.form-step { display: none; }
.form-step.active { display: block; }

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1.25rem;
}

.form-grid-2 .full { grid-column: 1 / -1; }

.form-field { margin-bottom: 1rem; }

.form-label {
  display: block;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(10,61,46,0.42);
  margin-bottom: 0.4rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: var(--field-bg);
  border: 1.5px solid rgba(10,61,46,0.14);
  border-radius: 10px;
  padding: 0.78rem 1rem;
  color: var(--green-dark);
  font-size: 0.93rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  font-family: 'Inter', sans-serif;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}

.form-textarea { resize: vertical; min-height: 80px; }

/* Payment options */
.payment-options {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 0.25rem;
}

.payment-btn {
  padding: 0.6rem 1.1rem;
  border-radius: 10px;
  border: 1.5px solid rgba(10,61,46,0.15);
  background: var(--field-bg);
  color: rgba(10,61,46,0.6);
  font-size: 0.85rem;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: all 0.2s;
}

.payment-btn.selected {
  border-color: var(--gold);
  background: rgba(201,168,76,0.1);
  color: var(--gold-muted);
  font-weight: 600;
}

/* File upload */
.file-upload-area {
  border: 2px dashed rgba(10,61,46,0.15);
  border-radius: 12px;
  padding: 1.25rem;
  text-align: center;
  cursor: pointer;
  background: var(--field-bg);
  transition: all 0.2s;
}

.file-upload-area:hover { border-color: rgba(201,168,76,0.6); }
.file-upload-area.drag { border-color: var(--gold); background: rgba(201,168,76,0.06); }
.file-upload-area.has-file { border-color: rgba(201,168,76,0.6); background: rgba(201,168,76,0.04); }

.file-upload-area input { display: none; }
.file-upload-icon { font-size: 1.5rem; margin-bottom: 0.35rem; }
.file-upload-text { color: rgba(10,61,46,0.45); font-size: 0.85rem; font-weight: 500; }
.file-upload-text.has-file { color: var(--gold-muted); }
.file-upload-hint { font-size: 0.7rem; color: rgba(10,61,46,0.28); margin-top: 0.25rem; }

.sipag-info {
  background: rgba(201,168,76,0.07);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1.25rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.sipag-info a { color: var(--gold-muted); }

.payment-valor {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  padding: 0.45rem 0.75rem;
  background: rgba(10,61,46,0.05);
  border-radius: 7px;
  border-left: 3px solid var(--green-dark);
}
.payment-valor strong {
  color: var(--green-dark);
  font-size: 0.95rem;
}

.file-clear-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 6px;
  padding: 4px 10px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #c0392b;
  background: rgba(192,57,43,0.07);
  border: 1px solid rgba(192,57,43,0.2);
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.15s;
}
.file-clear-btn:hover { background: rgba(192,57,43,0.14); }

.termo-link {
  display: inline-block;
  font-size: 0.8rem;
  color: var(--gold-muted);
  text-decoration: underline;
  margin-bottom: 0.5rem;
}

/* Form actions */
.form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(10,61,46,0.07);
}

.btn-back {
  background: var(--white);
  border: 1.5px solid rgba(10,61,46,0.18);
  color: rgba(10,61,46,0.65);
  padding: 0.75rem 1.4rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: border-color 0.2s, color 0.2s;
}

.btn-back:hover {
  border-color: rgba(10,61,46,0.4);
  color: var(--green-dark);
}

.btn-submit {
  background: var(--green-dark);
  color: #fff;
  border: none;
  padding: 0.75rem 1.75rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 4px 16px rgba(10,61,46,0.18);
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }

@media (max-width: 540px) {
  .form-actions {
    flex-direction: column-reverse;
    gap: 0.6rem;
  }
  .form-actions > div { display: none; }
  .btn-back,
  .btn-submit {
    width: 100%;
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
    text-align: center;
    justify-content: center;
  }
}

/* Error text */
.field-error {
  color: #c0392b;
  font-size: 0.78rem;
  margin-top: 0.4rem;
}

/* Success state */
.form-success, .form-closed {
  display: none;
  text-align: center;
  padding: 4rem 1.5rem;
}

.form-success.show { display: block; }
.form-closed.show { display: block; }

.form-success-icon, .form-closed-icon { font-size: 3rem; margin-bottom: 1rem; }

.form-success h3, .form-closed h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--green-dark);
  margin-bottom: 1rem;
}

.form-success { background: linear-gradient(135deg, rgba(201,168,76,0.08), rgba(201,168,76,0.03)); border-radius: 20px; }
.form-closed { background: var(--field-bg); border-radius: 20px; border: 1px solid rgba(201,168,76,0.25); }
.form-success p, .form-closed p { color: rgba(10,61,46,0.62); line-height: 1.7; }
.form-success strong { color: var(--gold-muted); }

.success-email-notice {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  margin: 1rem 0 1.5rem;
  font-size: 0.85rem;
  color: rgba(10,61,46,0.7);
  line-height: 1.55;
}
.success-email-notice a {
  color: var(--green-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Success WhatsApp card */
.success-whatsapp-card {
  margin-top: 2rem;
  background: #fff;
  border: 1.5px solid #e0dbd0;
  border-radius: 14px;
  padding: 1.5rem 1.75rem;
  text-align: left;
}
.success-wpp-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--green-dark);
  margin-bottom: 0.75rem;
}
.success-wpp-desc {
  font-size: 0.88rem;
  color: rgba(10,61,46,0.65);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.success-wpp-desc strong { color: var(--green-dark); }
.success-wpp-btn {
  display: inline-block;
  background: #25d366;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.65rem 1.4rem;
  border-radius: 8px;
  text-decoration: none;
  margin-bottom: 1.25rem;
  transition: background 0.18s;
}
.success-wpp-btn:hover { background: #1ebe5d; }
.success-wpp-contacts { border-top: 1px solid #e8e4da; padding-top: 1rem; }
.success-wpp-contacts-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold-muted);
  margin-bottom: 0.5rem;
}
.success-wpp-contact-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.success-wpp-contact-list a {
  font-size: 0.85rem;
  color: var(--green-dark);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.15s;
}
.success-wpp-contact-list a:hover { opacity: 1; text-decoration: underline; }

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  z-index: 999;
  transition: transform 0.22s cubic-bezier(.22,1,.36,1), box-shadow 0.22s;
}
.wa-float:hover {
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 12px 36px rgba(37,211,102,0.5);
}
.wa-float svg { width: 28px; height: 28px; }

.wa-tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--green-dark);
  color: #f5f0e0;
  padding: 0.4rem 0.9rem;
  border-radius: 8px;
  white-space: nowrap;
  font-size: 0.8rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  font-weight: 500;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
}
.wa-float:hover .wa-tooltip { opacity: 1; }

/* ===== DEPOIMENTOS ===== */
#depoimentos {
  background: var(--white);
  padding: 6rem 0;
  overflow: hidden;
}

.depoimentos-header {
  text-align: center;
  padding: 0 6vw;
  margin-bottom: 3.5rem;
}

.depoimentos-track-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.depoimentos-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
}

.track-forward {
  animation: dep-scroll-fwd 38s linear infinite;
}

.track-backward {
  animation: dep-scroll-bwd 42s linear infinite;
}

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

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

.depoimentos-track:hover { animation-play-state: paused; }

.dep-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem 1.6rem;
  width: 300px;
  flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(10,61,46,0.06);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: box-shadow 0.2s, transform 0.2s;
}

.dep-card:hover {
  box-shadow: 0 6px 24px rgba(10,61,46,0.12);
  transform: translateY(-2px);
}

.dep-stars {
  display: flex;
  gap: 3px;
  color: var(--gold);
  font-size: 0.9rem;
}

.dep-quote {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(10,61,46,0.7);
  flex: 1;
}

.dep-author {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
}

.dep-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--creme-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--green-dark);
  flex-shrink: 0;
}

.dep-name {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--green-dark);
  line-height: 1.2;
}

.dep-city {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: 'DM Sans', sans-serif;
}

@media (max-width: 768px) {
  #depoimentos { padding: 4rem 0; }
  .dep-card { width: 260px; padding: 1.2rem 1.3rem; }
  .depoimentos-track-wrap { gap: 1rem; }
  .depoimentos-track { gap: 1rem; }
}

/* ===== FOOTER ===== */
footer {
  background: var(--green-dark);
  padding: 5rem 6vw 2.5rem;
}

.footer-inner { max-width: 1100px; margin: 0 auto; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-logos {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.footer-logos img {
  filter: brightness(0) invert(1);
  object-fit: contain;
}

.footer-logo-dcem { height: 80px; opacity: 0.95; }
.footer-logo-colig { height: 52px; filter: none; opacity: 0.9; }

.footer-brand-text {
  font-size: 0.85rem;
  color: rgba(245,240,224,0.45);
  line-height: 1.8;
}

.footer-brand-text strong { color: rgba(245,240,224,0.7); font-weight: 600; }

.footer-col-title {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.footer-contact { margin-bottom: 0.9rem; }

.footer-contact-name {
  color: rgba(245,240,224,0.78);
  font-size: 0.88rem;
  font-weight: 500;
  margin-bottom: 2px;
}

.footer-contact-phone {
  color: rgba(245,240,224,0.38);
  font-size: 0.82rem;
  transition: color 0.2s;
}
.footer-contact-phone:hover { color: var(--gold); }

.footer-link {
  display: block;
  color: rgba(245,240,224,0.42);
  font-size: 0.88rem;
  margin-bottom: 0.6rem;
  transition: color 0.2s;
}
.footer-link:hover { color: #f5f0e0; }

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 1.5rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
}

.footer-bottom p { font-size: 0.74rem; color: rgba(245,240,224,0.25); }

/* ===== TOAST ===== */
#toast {
  position: fixed;
  bottom: 90px;
  right: 24px;
  background: var(--green-dark);
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 0.88rem;
  z-index: 9999;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  max-width: 300px;
  transition: opacity 0.3s;
  opacity: 0;
  pointer-events: none;
}
#toast.show { opacity: 1; pointer-events: auto; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero-sticky {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: calc(var(--nav-height) + 1.5rem) 1.5rem 2rem;
    overflow-y: auto;
    gap: 1.5rem;
    height: auto;
    min-height: 100vh;
  }
  .hero-text-top { padding-top: 0; }
  .hero-text-bottom { padding-bottom: 0; }
  .hero-video-wrap { width: 100%; justify-content: center; }
  .hero-video-wrap video { max-width: 220px; }
  .hero-video-fallback { max-width: 220px; }
  .hero-title { font-size: 2.6rem; }
  .hero-subtitle { font-size: 1rem; }

  .about-stats { grid-template-columns: 1fr 1fr; }
  .about-stats > *:nth-child(3) { order: 4; }
  .about-stats > *:nth-child(4) { order: 3; }
  #sobre {
    padding: 80px 1.5rem;
    background-position: right top;
  }

  .workshops-grid { grid-template-columns: 1fr; }
  #oficinas { padding: 80px 1.5rem; }
  .oficinas-bg-strip { align-items: flex-start; }
  .oficinas-strip-track img {
    height: 120vw;
    width: 60vw;
    object-fit: cover;
    margin-top: 20px;
    opacity: 0.65;
  }
  .oficinas-strip-track { animation-duration: 30s; }
  .oficinas-bg-strip::before,
  .oficinas-bg-strip::after { width: 24px; }
  .oficinas-bg-strip::before { background: linear-gradient(to right, #fff 10%, rgba(255,255,255,0)); }
  .oficinas-bg-strip::after  { background: linear-gradient(to left,  #fff 10%, rgba(255,255,255,0)); }

  /* Countdown mobile */
  .countdown-boxes { gap: 0.3rem; flex-wrap: nowrap; }
  .countdown-box { padding: 0.6rem 0.4rem; min-width: 0; flex: 1; }
  .countdown-num { font-size: 1.7rem; }
  .countdown-sep { font-size: 1.2rem; margin-bottom: 1rem; }
  .countdown-unit { font-size: 0.55rem; }

  .info-grid { grid-template-columns: 1fr; }
  #informacoes { padding: 80px 1.5rem; }

  .form-grid-2 { grid-template-columns: 1fr; }
  .form-body { padding: 1.5rem; }
  .step-tab { font-size: 0.7rem; padding: 0.85rem 0.25rem; }
  #inscricao { padding: 80px 1.5rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  footer { padding: 3.5rem 1.5rem 2rem; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 480px) {
  .hero-vagas-badge { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .hero-actions { flex-direction: column; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .payment-options { flex-direction: column; }
}

@media (max-width: 360px) {
  .about-stats { grid-template-columns: 1fr; }
  .countdown-num { font-size: 1.4rem; }
  .countdown-sep { font-size: 1rem; }
}
