:root {
  --yellow: #FFD248;
  --yellow-dark: #c9a200;
  --pink: #DA4B95;
  --pink-light: #e87bbf;
  --purple: #61488A;
  --purple-light: #8b6fba;
  --purple-dark: #3d2a5e;
  --teal: #0C7385;
  --teal-light: #3a9aaa;
  --teal-dark: #074f5c;
  --bg: #f5f4fa;
  --bg-teal: #eaf5f7;
  --white: #ffffff;
  --text: #1a1228;
  --text-soft: #4a4060;
  --text-muted: #9088a8;
}

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

body {
  font-family: 'Lato', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid #f0e8ff;
  padding: 12px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 16px;
  color: var(--purple);
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo span {
  color: var(--pink);
}

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

.nav-links a {
  font-size: 13px;
  color: var(--text-soft);
  text-decoration: none;
  font-weight: 600;
  transition: color .2s;
}

.nav-links a:hover {
  color: var(--purple);
}

.nav-cta {
  background: var(--pink);
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 30px;
  font-weight: 700 !important;
  font-size: 13px !important;
  transition: background .2s !important;
}

.nav-cta:hover {
  background: var(--pink-light) !important;
  color: #fff;
}

.hero {
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple) 60%, var(--teal-dark) 100%);
  padding: 60px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: rgba(224, 24, 108, 0.15);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.hero-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.vagas-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--yellow);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 30px;
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}

.vagas-dot {
  width: 8px;
  height: 8px;
  background: var(--yellow);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .6;
    transform: scale(1.3);
  }
}

.hero h1 {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero h1 em {
  font-style: normal;
  color: var(--yellow);
}

.hero-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 480px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.hbadge {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.85);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.btn-primary {
  background: var(--pink);
  color: #fff;
  padding: 14px 28px;
  border-radius: 40px;
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(224, 24, 108, 0.4);
  transition: transform .2s, box-shadow .2s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(224, 24, 108, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 14px 24px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: background .2s;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}

.hero-info {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  gap: 6px;
}

.vagas-bar-wrap {
  margin-top: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 14px 16px;
  max-width: 420px;
}

.vagas-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

.vagas-label strong {
  color: var(--yellow);
}

.vbar {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  height: 10px;
  overflow: hidden;
}

.vfill {
  height: 100%;
  background: linear-gradient(90deg, var(--yellow), #e8a000);
  border-radius: 10px;
  position: relative;
}

.hero-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo img {
  width: 220px;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.3));
}

.section {
  padding: 60px 24px;
}

.section-inner {
  max-width: 900px;
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  background: linear-gradient(135deg, var(--pink), var(--teal));
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 900;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.2;
}

.section-title span {
  color: var(--pink);
}

.section-sub {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.6;
}

.problema {
  background: #fff;
}

.problema-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 36px;
  align-items: start;
}

.problema-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.problema-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fef0f5;
  border: 1px solid #fcc;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
  color: #5a2030;
  line-height: 1.5;
}

.prob-icon {
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

.solucao-box {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  border-radius: 16px;
  padding: 28px 24px;
  color: #fff;
}

.solucao-box h3 {
  font-family: 'Nunito', sans-serif;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--yellow);
}

.solucao-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}

.sol-check {
  width: 20px;
  height: 20px;
  background: rgba(255, 179, 209, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 1px;
}

.paraquem {
  background: var(--bg-teal);
}

.perfis-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.perfil-card {
  background: #fff;
  border: 2px solid #dde8ef;
  border-radius: 14px;
  padding: 24px 20px;
  text-align: center;
  transition: border-color .2s, transform .2s;
}

.perfil-card:hover {
  border-color: var(--teal);
  transform: translateY(-3px);
}

.perfil-emoji {
  font-size: 36px;
  margin-bottom: 14px;
  display: block;
}

.perfil-card h4 {
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: var(--purple);
  margin-bottom: 8px;
}

.perfil-card p {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.5;
}

.modulos {
  background: #fff;
}

.modulos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 32px;
}

.modulo-card {
  background: var(--bg);
  border: 1px solid #e8e0f8;
  border-radius: 12px;
  padding: 16px;
  transition: border-color .2s, background .2s;
}

.modulo-card:hover {
  border-color: var(--teal);
  background: #f0ebff;
}

.modulo-num {
  font-family: 'Nunito', sans-serif;
  font-size: 11px;
  font-weight: 800;
  color: var(--pink);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.modulo-card h4 {
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: var(--purple);
  margin-bottom: 4px;
  line-height: 1.3;
}

.modulo-card p {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.4;
}

.modulos-link {
  display: block;
  text-align: center;
  margin-top: 24px;
  color: var(--pink);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  padding: 12px;
  border: 2px solid var(--pink);
  border-radius: 30px;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
  transition: background .2s, color .2s;
}

.modulos-link:hover {
  background: var(--pink);
  color: #fff;
}

.comofunciona {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-teal) 100%);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.step-card {
  text-align: center;
  position: relative;
}

.step-card::after {
  content: '→';
  position: absolute;
  right: -14px;
  top: 20px;
  color: #ccc;
  font-size: 18px;
}

.step-card:last-child::after {
  display: none;
}

.step-num {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--pink), var(--teal));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Nunito', sans-serif;
  font-size: 18px;
  font-weight: 900;
  margin: 0 auto 12px;
}

.step-card h4 {
  font-family: 'Nunito', sans-serif;
  font-size: 12px;
  font-weight: 800;
  color: var(--purple);
  margin-bottom: 6px;
}

.step-card p {
  font-size: 11px;
  color: var(--text-soft);
  line-height: 1.5;
}

.instrutor {
  background: #fff;
}

.instrutor-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: center;
  margin-top: 32px;
}

.instrutor-left h3 {
  font-family: 'Nunito', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--text-muted);
  line-height: 1.3;
  margin-bottom: 8px;
}

.instrutor-left h3 em {
  font-style: normal;
  color: var(--pink);
}

.instrutor-left p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.6;
}

.instrutor-card {
  background: linear-gradient(135deg, #e8f5f7, #f0ebff);
  border: 2px solid #b8e0e5;
  border-radius: 20px;
  padding: 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.instrutor-foto {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--teal), var(--pink));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}

.instrutor-card h4 {
  font-family: 'Nunito', sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: var(--purple);
  margin-bottom: 4px;
}

.instrutor-role {
  font-size: 12px;
  font-weight: 700;
  color: var(--pink);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

/* NEW BIG PHOTO INSTRUTOR LAYOUT */
.instrutor-big {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: linear-gradient(135deg, #e8f5f7, #f0ebff);
  border-radius: 20px;
  border: 2px solid #b8e0e5;
  overflow: hidden;
  margin-top: 32px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.instrutor-big-foto {
  width: 100%;
  min-height: 480px;
  position: relative;
}

.instrutor-big-foto img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.instrutor-big-text {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.instrutor-big-text h3 {
  font-family: 'Nunito', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--purple);
  margin-bottom: 4px;
}

.instrutor-big-text p.ib-main {
  font-size: 16px;
  color: var(--text-soft);
  line-height: 1.8;
  margin-bottom: 24px;
}

.instrutor-big-text h4 {
  font-family: 'Nunito', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--pink);
  margin-bottom: 8px;
  line-height: 1.4;
}

.instrutor-big-text p.ib-sub {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.turma {
  background: var(--bg);
  border-top: 4px solid var(--yellow);
}

.turma-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
  margin-bottom: 20px;
}

.turma-card {
  background: #fff;
  border: 2px solid #e8e0f8;
  border-radius: 14px;
  padding: 20px;
}

.turma-card .tc-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.turma-card .tc-value {
  font-family: 'Nunito', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--purple);
  line-height: 1.1;
}

.turma-card .tc-sub {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

.vagas-alert {
  background: #fff9e0;
  border: 2px solid var(--yellow);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 14px;
  color: #5a3800;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.taxa {
  background: #fff;
}

.taxa-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 32px;
}

.taxa-preco {
  text-align: center;
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  border-radius: 20px;
  padding: 36px 28px;
  color: #fff;
}

.taxa-preco .tp-label {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.taxa-preco .tp-valor {
  font-family: 'Nunito', sans-serif;
  font-size: 56px;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 8px;
}

.taxa-preco .tp-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 20px;
}

.taxa-info {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.taxa-info li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.5;
}

.ti-icon {
  width: 32px;
  height: 32px;
  background: #f0e8ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.formulario {
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--teal-dark) 100%);
  padding: 72px 24px;
  position: relative;
  overflow: hidden;
}

.formulario::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 350px;
  height: 350px;
  background: rgba(224, 24, 108, 0.12);
  border-radius: 50%;
}

.formulario-inner {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  text-align: center;
}

.formulario h2 {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 10px;
}

.formulario .f-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 36px;
}

.form-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px;
  text-align: left;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 7px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e8e0f8;
  border-radius: 10px;
  font-size: 14px;
  color: var(--text);
  font-family: 'Lato', sans-serif;
  transition: border-color .2s;
  background: #fff;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--teal);
}

.form-group input::placeholder {
  color: #bbb;
}

.form-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: #fff;
  border: none;
  padding: 16px;
  border-radius: 40px;
  font-family: 'Nunito', sans-serif;
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
  margin-top: 8px;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(224, 24, 108, 0.35);
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(224, 24, 108, 0.5);
}

.form-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 14px;
}

.duvidas {
  background: var(--bg-teal);
  padding: 48px 24px;
  text-align: center;
}

.duvidas p {
  font-size: 15px;
  color: var(--text-soft);
  margin-bottom: 16px;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #1da851;
  color: #fff;
  padding: 14px 28px;
  border-radius: 40px;
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  transition: transform .2s;
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
}

footer {
  background: linear-gradient(135deg, var(--purple-dark), var(--teal-dark));
  padding: 32px 24px;
  text-align: center;
  border-top: 3px solid var(--yellow);
}

footer .f-name {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 6px;
}

footer .f-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 12px;
}

footer .f-link {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
}

footer .f-link a {
  color: var(--pink-light);
  text-decoration: none;
}

@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-logo {
    display: none;
  }

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

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

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

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

  .step-card::after {
    display: none;
  }

  .instrutor-inner {
    grid-template-columns: 1fr;
  }

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

  .taxa-inner {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }
}

@media (max-width: 480px) {
  .modulos-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .instrutor-big {
    grid-template-columns: 1fr;
  }

  .instrutor-big-foto {
    min-height: 280px;
  }

  .instrutor-big-text {
    padding: 32px 24px;
  }
}