/* ============================================================
   NOVA LP – TecVitória
   Cores: #5025C4 Purple | #CDF500 Lime | #1E0F6B Deep Purple
   Font: Poppins
   ============================================================ */

/* ── Reset total ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body.nlp {
  font-family: "Readex Pro", Sans-serif;
  font-size: 16px;
  color: #374151;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Variáveis ── */
:root {
  --purple:     #5025C4;
  --purple-dk:  #3B1A9A;
  --purple-dp:  #1a0a6b;
  --lime:       #CDF500;
  --lime2:      #CDF544;
  --white:      #FFFFFF;
  --gray:       #374151;
  --gray-lt:    #4B5563;
  --bg-card:    #F4F3FF;
  --cw:         1200px;
  --py:         88px;
}

/* ── Container ── */
.nlp-container { max-width: var(--cw); margin: 0 auto; padding: 0 32px; }

/* ── Botões ── */
.nlp-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: "Readex Pro", sans-serif;
  font-size: 14px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  text-decoration: none; border: none; cursor: pointer;
  transition: transform .2s, opacity .2s;
}
.nlp-btn:hover { transform: translateY(-2px); opacity: .92; }

.nlp-btn--lime {
  background: var(--lime);
  color: #4a2ab6;
}
.nlp-btn--wa { font-size: 19px; }

/* ── Títulos pill ── */
.nlp-title {
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 800; text-transform: uppercase;
  letter-spacing: 1px; text-align: center;
  margin-bottom: 48px;
}
.nlp-title--pill-purple {
  border: 2px solid var(--lime); color: var(--purple);
  border-radius: 500px; padding: 10px 40px;
  display: inline-block; width: auto;
}
.nlp-title--pill-lime {
  border: 2px solid var(--lime); color: var(--purple);
   border-radius: 500px; 
	padding: 10px 40px;
   display: block;
	margin: 0 auto;
  width: fit-content;
	margin-bottom:60px;

}

/* ==============================================================
   HERO — sem header separado, logo dentro da seção
   ============================================================== */
.nlp-hero {
  background: radial-gradient(ellipse at 30% 40%, #7B35D8 0%, #5A18A8 100%);
  position: relative;
  padding-bottom: 80px;
}

@media (max-width: 768px) {
  .nlp-hero {
    background: linear-gradient(135deg, #5B25C8 0%, #3D0FA0 100%);
  }
}

/* Logo dentro do hero */
.nlp-hero__logo {
  display: inline-flex; align-items: center;
  text-decoration: none; margin-bottom: 24px;
}
@media (min-width: 769px){
.nlp-hero__logo-img {
  height: 95px; width: auto; display: block;margin-left:-10px;
}
}
@media (max-width: 768px) {
  .nlp-hero__logo-img {
   width: 90%; margin:0 auto;
  }
}

/* Grid hero: texto | shape */
.nlp-hero__inner {
  display: grid; grid-template-columns: 1fr 480px;
  gap: 48px; align-items: center;
  padding: 48px 0 48px;
}

.nlp-hero__headline {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 900; color: var(--white);
  line-height: 1.1; margin-bottom: 18px;
}
.nlp-hero__sub {
  font-size: 15px; color: rgba(255,255,255,.75);
  line-height: 1.65; margin-bottom: 32px; max-width: 440px;
}

.nlp-hero__shape {
  width: 100%; border-radius: 20px; display: block;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,.3));
}

/* Startups */
.nlp-startups { text-align: center; padding-bottom: 32px; }

.nlp-startups__title {
  font-size: 15px; font-weight: 700;
  color: rgba(255,255,255,.65);
  letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 20px; line-height: 1.6;
}

.nlp-startups__img {
  max-width: 700px; width: 100%; display: block;
  margin: 0 auto 20px; border-radius: 16px;
}

.nlp-startups__footer {
  font-size: 14px; color: rgba(255,255,255,.70);
  line-height: 1.7;
}
.nlp-startups__footer strong { color: var(--lime); font-weight: 700; }

/* Curva de transição para branco */
.nlp-hero__wave {
  position: absolute; bottom: 0; left: 0; right: 0;
  line-height: 0;
}
.nlp-hero__wave svg { display: block; width: 100%; height: 80px; }

@media (max-width: 900px) {
  .nlp-hero__inner { grid-template-columns: 1fr; text-align: center; }
  .nlp-hero__sub   { margin-inline: auto; }
  .nlp-hero__shape { max-width: 260px; margin: 0 auto; }
  .nlp-hero__logo  { padding-top: 24px; }
}

/* ==============================================================
   DEPOIMENTOS
   ============================================================== */
.nlp-testimonials {
  padding: var(--py) 0;
  background: var(--white);
  text-align: center;
}
.nlp-testimonials__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.nlp-testimonial {
  background: var(--bg-card);
  border: 1px solid rgba(80,37,196,.12);
  border-radius: 20px; padding: 36px 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.nlp-testimonial__avatar {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), #A887FF);
  margin-bottom: 16px;
 object-fit: cover; ;
}
.nlp-testimonial blockquote {
  font-size: 15px; font-style: italic;
  color: var(--gray); line-height: 1.7; margin-bottom: 8px;
		text-align: left;
}
.nlp-testimonial strong { font-size: 14px; color: var(--purple); display: block; text-align: left; }
.nlp-testimonial span  { font-size: 13px; color: var(--gray-lt); display: block; text-align: left; }

@media (max-width: 640px) {
  .nlp-testimonials__grid { grid-template-columns: 1fr; }
}

/* ==============================================================
   POR QUE TECVITÓRIA?
   ============================================================== */
.nlp-why {
 padding: 0;
  background: var(--white);
}
.nlp-why__lead {
  text-align: center; font-size: 17px; color: var(--gray);
  max-width: 640px; margin: -28px auto 52px; line-height: 1.7;
}

.nlp-why__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin-bottom: 16px;
}

.nlp-why-card {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid rgba(80,37,196,.08);
  border-radius: 16px; padding: 24px 20px;
  transition: box-shadow .25s, transform .25s;
}
.nlp-why-card:hover { box-shadow: 0 4px 24px rgba(80,37,196,.15); transform: translateY(-2px); }
.nlp-why-card--full { width: 100%; margin-bottom: 0; }

.nlp-why-card__icon {
  width: 55px; height: 55px; flex-shrink: 0;
  background: var(--purple);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.nlp-why-card__body h3 {
  font-size: 13px; font-weight: 800; color: var(--purple);
  text-transform: uppercase; letter-spacing: .6px; margin-bottom: 6px;
}
.nlp-why-card__body p {
  font-size: 13px; color: var(--gray-lt); line-height: 1.6;
}

/* Journey intro (dentro da seção why, fundo branco) */
.nlp-journey-intro {
  text-align: center;
  padding: 64px 0 48px;
}
.nlp-journey-intro__sub {
  font-size: 17px; color: var(--gray);
  max-width: 560px; margin: -28px auto 0; line-height: 1.7;
}
.nlp-journey-intro__sub strong { color: var(--purple); }

@media (max-width: 640px) {
  .nlp-why__grid { grid-template-columns: 1fr; }
}

/* ==============================================================
   PROGRAMAS
   ============================================================== */
.nlp-programs {
  padding: 0 0 var(--py);
  background: var(--purple);
	padding-top:40px;
}

.nlp-program {
  background: var(--white);
  border-radius: 28px; overflow: hidden;
  margin: 40px 0;
  box-shadow: 0 8px 48px rgba(0,0,0,.25);
}

/* Header do programa (fundo lime) */
.nlp-program__header {
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; padding: 0 48px;
}
.nlp-program__header--green { background: var(--lime); }

.nlp-program__header-text h3 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 900; color: #A887FF;
  text-transform: uppercase; line-height: 1;
}
.nlp-program__sub {
  font-size: 15px; font-weight: 700;
  color: rgba(0,0,0,.55); text-transform: uppercase;
  margin-top: 4px;
}
.nlp-program__duration {
  font-size: 11px; color: rgba(0,0,0,.45);
  font-weight: 600; margin-top: 10px; letter-spacing: .5px;
}
.nlp-program__desc {
  font-size: 13px; color: rgba(0,0,0,.60);
  margin-top: 6px; max-width: 380px; line-height: 1.6;
}
.nlp-program__rocket {
  margin-bottom: -8px;
}

/* Body com deliverables */
.nlp-program__body { padding: 36px 48px; }

.nlp-track-title {
  font-size: 15px; font-weight: 800;
  color: var(--gray); text-transform: uppercase;
  letter-spacing: 1px; margin-bottom: 24px;
  display: flex; align-items: center; gap: 12px;
}
.nlp-track-bar {
  display: inline-block; width: 4px; height: 20px;
  background: var(--purple); border-radius: 2px; flex-shrink: 0;
}
.nlp-track-sub { font-weight: 400; color: var(--gray-lt); }

.nlp-delivery {
  background: var(--bg-card);
  border-radius: 10px; padding: 18px 20px;
  margin-bottom: 12px; position: relative;
}
.nlp-delivery__num {
  position: absolute; top: 14px; right: 16px;
  font-size: 10px; font-weight: 800; color: var(--purple);
  letter-spacing: 1.2px; text-transform: uppercase;
  border-right: 2px solid var(--purple); padding-right: 8px;
}
.nlp-delivery ul {
  list-style: none; padding: 0;
  padding-right: 80px; /* espaço para o num label */
}
.nlp-delivery li {
  font-size: 14px; color: var(--gray-lt);
  padding: 3px 0 3px 26px; position: relative; line-height: 1.5;
}
.nlp-delivery li::before {
  content: '✓';
  position: absolute; left: 0; top: 5px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--purple);
  color: #fff;
  font-size: 10px; font-weight: 900;
  text-align: center; line-height: 18px;
}
.nlp-delivery__cols { columns: 2; column-gap: 24px; }

/* Investment box */
.nlp-invest {
  background: var(--purple);
  border-radius: 18px; padding: 24px 48px;
  margin: 0 48px 48px;
}
.nlp-invest__label {
  font-size: 11px; font-weight: 700;
  color: rgba(255,255,255,.60);
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 6px;
}
.nlp-invest__row {
  display: flex; align-items: center; gap: 20px;
}
.nlp-invest__x {
  font-size: clamp(48px, 8vw, 76px);
  font-weight: 900; color: var(--lime); line-height: 1; flex-shrink: 0;
}
.nlp-invest__price {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 800; color: var(--lime); line-height: 1.1;
}
.nlp-invest__note {
  font-size: 13px; color: rgba(255,255,255,.65);
  margin-top: 5px; line-height: 1.5;
}

@media (max-width: 768px) {
  .nlp-program__header { flex-direction: column; padding: 28px 24px; }
  .nlp-program__rocket { display: none; }
  .nlp-program__body   { padding: 28px 24px; }
  .nlp-invest          { margin: 0 24px 28px; padding: 20px 24px; }
  .nlp-delivery ul     { padding-right: 0; }
  .nlp-delivery__num   { position: static; display: block; margin-bottom: 8px; }
  .nlp-delivery__cols  { columns: 1; }
}

/* ==============================================================
   FAQ
   ============================================================== */
.nlp-faq {
  padding: var(--py) 0;
  background: var(--white); text-align: center;
}
.nlp-faq__sub {
  font-size: 16px; font-weight: 600; color: var(--purple);
  margin-top: -32px; margin-bottom: 48px;
}

.nlp-accordion { max-width: 760px; margin: 0 auto; text-align: left; }

.nlp-acc-item {
  background: var(--bg-card);
  border: 1px solid rgba(80,37,196,.10);
  border-radius: 14px; margin-bottom: 10px; overflow: hidden;
}
.nlp-acc-btn {
  width: 100%; display: flex; justify-content: space-between;
  align-items: center; gap: 16px;
  padding: 18px 20px;
  background: none; border: none;
  font-family: 'Poppins', sans-serif;
  font-size: 14px; font-weight: 600; color: var(--gray);
  cursor: pointer; text-align: left; line-height: 1.5;
}
.nlp-acc-icon { flex-shrink: 0; transition: transform .3s; }
.nlp-acc-item.open .nlp-acc-icon { transform: rotate(180deg); }

.nlp-acc-body {
  max-height: 0; overflow: hidden; transition: max-height .35s ease;
}
.nlp-acc-item.open .nlp-acc-body { max-height: 400px; }
.nlp-acc-body p {
  padding: 0 20px 20px;
  font-size: 14px; color: var(--gray-lt); line-height: 1.75;
}

/* ==============================================================
   CTA FINAL
   ============================================================== */
.nlp-cta {
  background: var(--purple);
  padding: var(--py) 0;
  position: relative; overflow: hidden;
  text-align: center;
}

/* Decorações geométricas nos cantos */
.nlp-cta__deco {
  position: absolute; width: 280px; height: 280px;
  border: 2px solid rgba(205,245,0,.20);
  transform: rotate(20deg);
  border-radius: 24px;
}
.nlp-cta__deco--tl { top: -80px; left: -80px; }
.nlp-cta__deco--br { bottom: -80px; right: -80px; transform: rotate(-15deg); }

.nlp-cta__inner { position: relative; z-index: 1; }

.nlp-cta__title {
  font-size: clamp(40px, 7vw, 50px);
  font-weight: 900; color: #DAEA84;
  text-transform: uppercase; letter-spacing: -1px;
  line-height: 1.05; margin-bottom: 24px;
}
.nlp-cta__desc {
  font-size: 19px; color: rgba(255,255,255,.80);
  max-width: 540px; margin: 0 auto 40px; line-height: 1.7;
}
.nlp-cta__desc strong { color: var(--white); }

/* ==============================================================
   FOOTER
   ============================================================== */

/* Parte escura */
.nlp-footer__top {
  background: var(--purple);
  padding: 32px 0;
  border-top: 1px solid rgba(80,37,196,.08);
}
.nlp-footer__top-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 24px;
  flex-wrap: wrap;
}
.nlp-footer__brand {
  display: flex; align-items: baseline;
  gap: 6px; flex-wrap: wrap;
}
.nlp-footer__brand-name {
 }
.nlp-footer__brand p {
  width: 100%; font-size: 13px; color: var(--white); margin-top: 2px;
}
.nlp-footer__copy {
  font-size: 13px; color: var(--white);margin-top:30px;
}

/* Parte escura com logos */

/* Parte escura com logos 2*/
.nlp-footer__dark { background: #fff; padding: 40px 0 48px; }

.nlp-footer__partners-row {
  display: flex; align-items: center;
  justify-content: center; gap: 48px;
  flex-wrap: wrap; margin-bottom: 8px;
}
.nlp-fp-logo--lg { max-height: 56px; width: auto; }
.nlp-fp-dots    { max-height: 48px; width: auto; }
.nlp-fp-realizacao { text-align: center; }
.nlp-fp-realizacao img { max-height: 40px; width: auto; }

.nlp-footer__section-label {
  font-size: 13px; font-weight: 400;
  color: #5025C4; text-align: center; margin-top: 16px;
}
.nlp-footer__divider {
  border: none; border-top: 1px solid #5025C4;
  margin: 8px 0 28px;
}

.nlp-footer__logos-grid {
  display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
  flex-wrap: wrap; margin-bottom: 28px;
}
.nlp-footer__logos-grid img {
  max-height: 40px; width: auto; display: block; flex-shrink: 0;
}
.nlp-footer__logos-grid--benefits img { max-height: 84px; }
.nlp-footer__logos-grid--benefits { gap: 24px 0; justify-content: center; }
.nlp-footer__logos-grid--last { margin-bottom: 0; }

.nlp-hide-mobile { display: block; }

@media (max-width: 768px) {
  .nlp-hide-mobile { display: none; }
  .nlp-footer__partners-row,
  .nlp-footer__logos-grid { justify-content: center; gap: 20px; }
  .nlp-footer__logos-grid img { max-height: 32px; }
  .nlp-fp-logo--lg { max-height: 40px; }
}

/* ==============================================================
   ACESSIBILIDADE
   ============================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
