:root {
  --bg: #090e1a;
  --bg-2: #101827;
  --card: #ffffff;
  --muted: #667085;
  --text: #172033;
  --soft: #f4f6fb;
  --border: #e7eaf1;
  --primary: #009688;
  --primary-dark: #5142df;
  --second: #00968769;
  --accent: #21d4fd;
  --success: #1fc77e;
  --danger: #ff6b6b;
  --shadow: 0 24px 70px rgba(15, 23, 42, .12);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1180px;
}

* { box-sizing: border-box; } html { scroll-behavior: smooth; }

html, body {
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: Inter, Work Sans, Arial, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; } img { max-width: 100%; display: block; }

.container { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; } .narrow { width: min(850px, calc(100% - 40px)); }

.site-header {
  position: sticky; top: 0; z-index: 30;
  background: rgba(156, 152, 152, 0.274);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(18px);
}

.header-inner {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: -.04em;
  color: var(--bg);
  font-size: 1.25rem;
}

.logo-mark {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background-image: url(/assets/img/logo-transparente.png);

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #344054;
  font-weight: 700;
  font-size: .93rem;
}

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

.side-bar {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;

  width: 320px;
  max-width: 85%;
  height: 100vh;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  padding: 110px 32px 40px;
  gap: 28px;
  background: var(--primary-dark);
  backdrop-filter: blur(22px);
  border-left: 1px solid rgba(255,255,255,.08);
  box-shadow: -10px 0 40px rgba(0,0,0,.25);
  transform: translateX(100%);
  opacity: 0;

  z-index: 999;
  pointer-events: none;
  overflow-y: auto;
  overflow-x: hidden;
}

.side-bar.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

.side-bar a {
  display: flex;
  align-items: center;
  gap: 14px;

  color: white;
  text-decoration: none;
  font-size: 1.15rem;
  font-weight: 700;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: .25s ease;
}

.side-bar a i {
  width: 22px;
  height: 22px;
  color: var(--primary);
  flex-shrink: 0;
  transition: .25s ease;
}

.side-bar .side-menu-contact{
    color: white;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 14px 0;;
  transition: .25s ease;
}

.side-bar a:hover {color: var(--primary);transform: translateX(6px);}
.side-bar a:hover i {transform: scale(1.1);}

.side-bar .close-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: .25s ease;
}

.menu-overlay.active { opacity: 1; pointer-events: auto; }

.bar-icon {
  width: 30px;
  height: 30px;
  color: var(--primary);
  cursor: pointer;
  transition: .25s ease;
  display: none;
}

.bar-icon:hover { transform: scale(1.08); }

.header-actions { display: flex; align-items: center; gap: 12px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 13px 22px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary));
  box-shadow: 0 16px 35px rgba(109, 93, 251, .24);
}

.btn-secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.164);
  
}

.btn-outline {
  background: #fff;
  color: var(--primary);
  border-color: #d9d8ff;
}

.btn-light {
  background: rgba(255,255,255,.14);
  color: #fff;
  border-color: rgba(255,255,255,.24);
}

.btn.full { width: 100%; margin-top: 14px; justify-content: center; }

.hero,
.internal-hero {
  background:
    linear-gradient(to right, rgba(102, 112, 133, 0.356) 0%, var(--second) 40%),
    url(/assets/img/treinamento-corporativo.jpg);
    
  position: relative;
  overflow: hidden;
  color: #fff;
  z-index: 1;

  padding: 120px 0 72px;
  min-height: 60vh;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;  
}


.hero > *, .internal-hero > * { position: relative; z-index: 1; }

.hero {
  margin-top: 0;
  width: 100vw;
  padding: 170px 0 72px;
  min-height: 90vh;
  background:
    linear-gradient(to right, rgba(102, 112, 133, 0.356) 0%, var(--second) 40%),
    url('/assets/img/treinamento-corporativo.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: 42px;
  align-items: center;
}

.hero h1,
.internal-hero h1 {
  font-size: clamp(2.5rem, 3vw, 4.8rem);
  line-height: .98;
  letter-spacing: -.07em;
  margin: 14px 0 20px;
}

.internal-hero h1 {
  font-size: clamp(2.3rem, 2.5vw, 2.8rem);
  letter-spacing: -.03em;
}

.hero p,
.internal-hero p {
  color: #d7def0;
  font-size: 1.12rem;
  max-width: 620px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

.hero-panel {
  padding: 28px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(18px);
  box-shadow: 0 25px 80px rgba(0,0,0,.18);
}

.hero-panel strong { display: block; margin-bottom: 14px; font-size: 1.1rem; }

.hero-panel ul { margin: 0; padding-left: 20px; color: #e9edfa; }

.hero-panel li { margin: 10px 0; } .quote-card p { margin: 10px 0; }

.eyebrow {
  display: inline-flex;
  color: white;
  background: var(--second);
  border: 1px solid rgba(109,93,251,.16);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: .78rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 900;
}

.hero .eyebrow,
.internal-hero .eyebrow {
  color: #c7f7ff;
  background: rgba(33,212,253,.12);
  border-color: rgba(33,212,253,.25);
}

.section { padding: 82px 0; min-height: 50vh; } .section.soft { background: var(--soft); }

.section-heading {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto 42px;
}

.section-heading.left { text-align: left; margin-left: 0; }

.section-heading h2,
.content-block h2 {
  font-size: clamp(2rem, 3.2vw, 2.4rem);
  line-height: 1.05;
  letter-spacing: -.055em;
  margin: 14px 0 14px;
}

.section-heading p { color: var(--muted); margin: 0; font-size: 1.05rem; }
.solutions-grid, .catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.catalog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.solution-card, .catalog-card, .course-row, .module-card, .content-block, .budget-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.solution-card, .catalog-card { padding: 28px;}
.solutions-grid .solution-card { padding: 28px; text-align: center; }
.solution-number {
  color: var(--primary);
  font-weight: 900;
  letter-spacing: -.04em;
  font-size: 2.4rem;
}

.solution-card .btn { display: flex; flex-direction: column; }

.solution-card h3, .catalog-card h3, .course-row h3 {
  font-size: 1.45rem;
  margin: 12px 0 10px;
  letter-spacing: -.03em;
}

.solution-card p, .catalog-card p, .course-row p {
  color: var(--muted);
  font-weight: 100;
  font-size: 1rem;
}

.solution-card ul { padding-left: 18px; color: #344054; }
.solution-card li { margin: 8px 0; }

.featured-solution {
  grid-column: span 3;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
  gap: 28px;
  padding: 34px;
  background: linear-gradient(135deg, #ffffff, #f7f8ff);
}

.feature-icon { display: flex; align-items: center;}
.feature-icon h2{font-size: clamp(2rem, 3.2vw, 2.2rem); padding-left: 15px;}

.feature

.feature-pill span {
  position: relative;
  z-index: 2;
  font-size: 1rem;
  font-weight: 700;
}

.feature-pill svg {
  width: 30px;
  height: 30px;
  color: var(--primary);
  padding: 1px;
}


.galeria{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:22px;
}

.card{
    height:170px;
    border-radius:18px;
    overflow:hidden;
    background-size:cover;
    background-position:center;
    position:relative;
    cursor:pointer;
    transition:.35s;
}

.card::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.85),
        rgba(0,0,0,.35),
        transparent
    );
    transition:.35s;
}

.card:hover{
    transform:translateY(-6px);
}

.card:hover::before{
    background:linear-gradient(
        to top,
        rgba(0,0,0,.65),
        rgba(0,0,0,.2),
        transparent
    );
}

.overlay{
    position:absolute;
    left:20px;
    right:20px;
    bottom:20px;
    z-index:2;
}

.overlay h3{
    color:#fff;
    font-size:15px;
    margin-bottom:8px;
    font-weight:300;
}

.img1{
    background-image:url("/assets/img/categorias-img/lideranca_gp.jpg");
}

.img2{
    background-image:url("/assets/img/categorias-img/atendente_sac.jpg");
}

.img3{
    background-image:url("/assets/img/categorias-img/venda_consultiva_spin.jpg");
}

.img4{
    background-image:url("/assets/img/cards-img/rh.jpg");
}

.img5{
    background-image:url("/assets/img/cards-img/comunicacao.jpg");
}

.img6{
    background-image:url("/assets/img/cards-img/industria.jpg");
}

.feature-pill {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 130px;
  padding: 20px;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;

  background-image:
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.514),
      rgba(0,0,0,.15)
    ),
    var(--bg-image);

  background-size: cover;
  background-position: center;
  transition: transform .4s ease;
}

.feature-pill:hover {
  transform: translateY(-4px);
    background-image:
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.671),
      rgba(0,0,0,.15)
    ),
    var(--bg-image);
  
}

.tag {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 7px 11px;
  background: #eef0ff;
  color: var(--primary);
  font-weight: 900;
  font-size: .78rem;
}

.catalog-card__top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
}

.course-list { display: grid; gap: 18px; }

.course-row {
  padding: 26px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  box-shadow: none;
}

.course-row:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
  transition: .2s ease;
}

.meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.meta-line span {
  background: var(--soft);
  border-radius: 999px;
  padding: 8px 12px;
  color: #475467;
  font-size: .9rem;
  font-weight: 700;
}

.course-actions { display: flex; flex-direction: column; gap: 10px; }

.two-columns {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 34px;
  align-items: start;
}

.content-block {
  padding: 32px;
  margin-bottom: 22px;
  box-shadow: none;
}

.check-list {
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  margin: 13px 0;
  color: #344054;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
  margin-top: 22px;
}

.module-card { padding: 18px; box-shadow: none; }
.module-card span { color: var(--primary); font-weight: 900; }
.module-card p { margin: 8px 0 0; color: #344054; font-weight: 700; }

.sticky-form { position: sticky; top: 98px; }

.budget-form { padding: 28px; }

.budget-form h3 {
  color: #090e1a;
  font-size: 1.55rem;
  letter-spacing: -.04em;
  margin: 14px 0 18px;
}

.budget-form label {
  display: block;
  margin: 14px 0 7px;
  font-weight: 800;
  color: #344054;
}

.budget-form input, .budget-form textarea, .budget-form select {
  width: 100%;
  border: 1px solid #d0d5dd;
  border-radius: 14px;
  padding: 13px 14px;
  font: inherit;
  outline: none;
  background: #fff;
}

.budget-form input:focus,
.budget-form textarea:focus,
.budget-form select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(109,93,251,.12);
}

.budget-form small {
  display: block;
  margin-top: 15px;
  color: var(--muted);
  text-align: center;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
}

.cta-band {
  background: linear-gradient(135deg, var(--primary), var(--primary));
  color: #fff;
  border-radius: 34px;
  padding: 42px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.cta-band h2 {
  margin: 0 0 8px;
  font-size: clamp(1.8rem, 2vw, 3rem);
  letter-spacing: -.05em;
}

.cta-band p { margin: 0; color: rgba(255,255,255,.88); }

.site-footer {
  background: var(--bg);
  color: #d7def0;
  padding: 36px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}
.footer-inner a { color: #fff; font-weight: 800; }

@media (max-width: 960px) {
  .nav { display: none; }
  .bar-icon { display: block; }
  .hero-grid, .featured-solution, .two-columns { grid-template-columns: 1fr; }
  .solutions-grid, .catalog-grid { grid-template-columns: 1fr; }
  .featured-solution { grid-column: span 1; }
  .course-row { grid-template-columns: 1fr; }
  .course-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .sticky-form { position: static; }
  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .container, .narrow { width: min(100% - 28px, var(--container)); }
  .header-actions .btn-outline { display: none; }
  .header-actions .btn-primary { display: none; }
  .hero, .internal-hero { padding: 60px 0; }
  .section { padding: 58px 0; }
  .feature-list, .module-grid, .form-grid { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .hero-actions { width: 100%; }
}
.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.chip {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(109, 93, 251, .22);
  background: rgba(109, 93, 251, .08);
  color: var(--primary);
  border-radius: 999px;
  padding: 7px 11px;
  font-size: .82rem;
  font-weight: 800;
}

.internal-hero .chip{
  color: white;
  background: var(--second);
}
.btn.full { width: 100%; justify-content: center; }
.course-row .chip-list { max-width: 760px; }

/* ==========================================================
   Página de curso - estrutura institucional para Google Ads
   Apresentação, objetivos, público-alvo, conteúdo vertical,
   carga horária sugerida e customização.
   ========================================================== */

.program-list {
  display: grid;
  gap:5px;
  margin-top: 22px;
}

.program-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(15, 23, 42, .06);
}

.program-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  font-weight: 900;
  font-size: .9rem;
}

.program-item p {
  margin: 7px 0 0;
  color: #344054;
  font-weight: 700;
  line-height: 1.45;
}

.workload-box {
  padding: 22px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(109, 93, 251, .08), rgba(33, 212, 253, .08));
  border: 1px solid rgba(109, 93, 251, .18);
}

.workload-box strong {
  display: block;
  font-size: 1.35rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.workload-box p {
  margin: 0;
  color: #475467;
  font-weight: 600;
}

.content-block > p {
  color: #344054;
  font-size: 1.03rem;
  font-weight: 500;
  line-height: 1.75;
}

@media (max-width: 640px) {
  .program-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .program-item span {
    width: 38px;
    height: 38px;
  }
}

/* ==========================================================
   Landing Page - Treinamentos In Company
   Otimizada para Google Ads e geração de orçamentos
   ========================================================== */

.landing-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 96px 0 76px;
  background:
    radial-gradient(circle at 80% 15%, rgba(33, 212, 253, .24), transparent 32%),
    linear-gradient(115deg, rgba(9, 14, 26, .92), rgba(18, 26, 46, .82)),
    url('/assets/img/treinamento-corporativo.jpg');
  background-size: cover;
  background-position: center;
}

.landing-hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -28% -10%;
  height: 260px;
  background: rgba(255,255,255,.08);
  filter: blur(80px);
  pointer-events: none;
}

.landing-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, .82fr);
  gap: 44px;
  align-items: start;
}

.landing-hero-copy h1 {
  font-size: clamp(2.7rem, 4vw, 5.4rem);
  line-height: .92;
  letter-spacing: -.075em;
  margin: 16px 0 22px;
  max-width: 880px;
}

.landing-hero-copy p {
  color: #e6ecfb;
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  max-width: 720px;
  margin: 0;
}

.hero-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
  max-width: 820px;
}

.hero-proof-grid div {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(14px);
}

.hero-proof-grid strong,
.hero-proof-grid span {
  display: block;
}

.hero-proof-grid strong {
  font-size: 1.08rem;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 5px;
}

.hero-proof-grid span {
  color: rgba(255,255,255,.74);
  font-size: .9rem;
  line-height: 1.35;
}

.landing-form-card {
  position: sticky;
  top: 94px;
}

.landing-form-card .budget-form {
  box-shadow: 0 30px 90px rgba(0,0,0,.28);
  border-color: rgba(255,255,255,.18);
}

.form-intro {
  margin: -6px 0 16px;
  color: var(--muted);
  font-size: .96rem;
}

.compact-grid {
  gap: 12px;
}

.trust-strip-section {
  padding: 30px 0;
  min-height: auto;
  background: #fff;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.trust-strip span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 12px 16px;
  border-radius: 18px;
  background: var(--soft);
  border: 1px solid var(--border);
  color: #344054;
  font-weight: 900;
  text-align: center;
}

.landing-themes-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.theme-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 278px;
  padding: 24px;
  border-radius: 26px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 18px 46px rgba(15, 23, 42, .09);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.theme-card::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  right: -38px;
  top: -38px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(109,93,251,.18), rgba(33,212,253,.16));
}

.theme-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(109,93,251,.35);
}

.theme-card span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: fit-content;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(109,93,251,.10);
  color: var(--primary);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.theme-card h3 {
  position: relative;
  z-index: 1;
  margin: 18px 0 10px;
  font-size: 1.18rem;
  line-height: 1.18;
  letter-spacing: -.035em;
  color: var(--text);
}

.theme-card p {
  position: relative;
  z-index: 1;
  margin: auto 0 0;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.45;
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
    margin-top:50px;
}

.process-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:24px;
    padding:28px;
    min-height:260px;

    display:flex;
    flex-direction:column;

    transition:.3s;
    box-shadow:0 12px 30px rgba(15,23,42,.06);
}

.process-card:hover{
    transform:translateY(-6px);
    box-shadow:0 24px 50px rgba(15,23,42,.10);
}

.process-header{
    display:flex;
    align-items:center;
    gap:16px;
    padding-bottom:18px;
    margin-bottom:18px;
    border-bottom:1px solid #ececf3;
}

.process-card span{
    width:52px;
    height:52px;
    border-radius:18px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--accent)
    );

    color:#fff;
    font-size:1rem;
    font-weight:800;
    flex-shrink:0;

    box-shadow:0 8px 20px rgba(81,66,223,.25);
}

.process-card h3{
    margin:0;
    font-size:1.1rem;
    line-height:1.25;
    font-weight:800;
    color:var(--text);
}

.process-card p{
    margin:0;
    color:var(--muted);
    font-size:1rem;
    line-height:1.8;
    font-weight:500;
}

.split-section{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
    
}

.program-box{
    background:#fff;
    border:1px solid var(--border);
    border-radius:28px;
    padding:34px;
    box-shadow:0 18px 44px rgba(15,23,42,.08);
}

.split-section h2{
    font-size:clamp(2rem,2.8vw,3.3rem);
    line-height:1;
    letter-spacing:-.06em;
    margin:18px 0;
}

.split-section p{
    color:var(--muted);
    font-size:1.08rem;
    font-weight:600;
    line-height:1.7;
    margin-bottom:34px;
}

.trust-strip{
    margin-top:38px;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:14px;
}

.trust-item{
    padding:18px 20px;
    background:#fff;
    border:1px solid var(--border);
    border-radius:18px;
    text-align:center;
    font-weight:700;
    color:var(--text);
    transition:.25s;
    box-shadow:0 10px 24px rgba(15,23,42,.05);
}

.trust-item:hover{
    transform:translateY(-3px);
    box-shadow:0 18px 36px rgba(15,23,42,.08);
}

.benefit-list{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.benefit-card{
    display:flex;
    gap:22px;
    align-items:flex-start;
    padding:28px;
    border-radius:24px;
    background:#fff;
    border:1px solid var(--border);
    box-shadow:0 18px 44px rgba(15,23,42,.08);
    transition:.25s;
}

.benefit-card:hover{
    transform:translateY(-6px);
    box-shadow:0 24px 60px rgba(15,23,42,.12);
}

.benefit-icon{
    width:58px;
    height:58px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,var(--primary),var(--accent));
    flex-shrink:0;
}

.benefit-icon svg{
    width:28px;
    height:28px;
    color:#fff;
}

.benefit-card strong{
    display:block;
    font-size:1.35rem;
    margin-bottom:8px;
    color:var(--text);
}

.benefit-card span{
    display:block;
    color:var(--muted);
    font-weight:600;
    line-height:1.7;
}

.mini-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

.mini-card{
    position:relative;
    height:190px;
    border-radius:22px;
    overflow:hidden;
    display:flex;
    align-items:flex-end;
    padding:22px;
    cursor:pointer;

    background-size:cover;
    background-position:center;

    transition:.35s;
}

.mini-card::before{
    content:"";
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        180deg,
        rgba(8,12,24,.15),
        rgba(8,12,24,.75)
    );

    transition:.35s;
}

.mini-card::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        135deg,
        rgba(81,66,223,.15),
        rgba(81,66,223,.45)
    );
}

.mini-card span{
    position:relative;
    z-index:2;

    color:#fff;
    font-size:1.25rem;
    font-weight:800;
    line-height:1.2;
    max-width:180px;
}

.mini-card:hover{
    transform:translateY(-6px) scale(1.02);
}

.mini-card:hover::before{
    background:
    linear-gradient(
        180deg,
        rgba(8,12,24,.05),
        rgba(8,12,24,.55)
    );
}

.program-box h3 {
  margin: 0 0 12px; 
  font-size: 1.35rem;
  letter-spacing: -.04em;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 18px 22px;
  box-shadow: 0 12px 34px rgba(15, 23, 42, .06);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -.02em;
}

.faq-list p {
  margin: 12px 0 0;
  color: var(--muted);
  font-weight: 600;
}

.final-cta-section {
  min-height: auto;
  padding-top: 42px;
}

@media (max-width: 1100px) {
  .landing-themes-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .landing-hero-grid,
  .split-section,
  .split-section.reverse {
    grid-template-columns: 1fr;
  }

  .landing-form-card {
    position: static;
  }

  .hero-proof-grid,
  .trust-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .landing-hero {
    padding: 62px 0 54px;
  }

  .landing-hero-copy h1 {
    font-size: clamp(2.35rem, 13vw, 3.1rem);
  }

  .landing-themes-grid,
  .process-grid,
  .mini-grid {
    grid-template-columns: 1fr;
  }

  .theme-card {
    min-height: auto;
  }
}

/* ==========================================================
   Ajuste final do cabeçalho e navegação
   Evita quebra dos links em duas linhas.
   ========================================================== */
.site-header {
  background: rgba(255, 255, 255, .96);
}

.header-inner {
  min-height: 82px;
  height: auto;
  gap: 22px;
}

.logo,
.logo-image {
  flex: 0 0 auto;
  padding: 0;
  margin: 0;
  background: transparent;
}

.logo-image img {
  display: block;
  width: 300px;
  max-width: 100%;
  height: auto;
  max-height: 64px;
  object-fit: contain;
}

.logo-mark {
  display: none !important;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  gap: 24px;
  min-width: 0;
}

.nav a {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  line-height: 1.2;
}

.header-actions {
  flex: 0 0 auto;
}

@media (max-width: 1450px) {
  .logo-image img {
    width: 255px;
  }

  .nav {
    gap: 17px;
    font-size: .88rem;
  }

  .header-actions .btn {
    padding: 12px 18px;
  }
}

/* Antes de faltar espaço, o menu principal vira menu lateral. */
@media (max-width: 1280px) {
  .nav {
    display: none !important;
  }

  .bar-icon {
    display: block !important;
    flex: 0 0 auto;
  }

  .header-inner {
    min-height: 78px;
  }
}

@media (max-width: 760px) {
  .logo-image img {
    width: 220px;
    max-height: 54px;
  }
}

@media (max-width: 640px) {
  .header-inner {
    min-height: 70px;
    gap: 12px;
  }

  .logo-image img {
    width: 190px;
    max-height: 48px;
  }
}


.menu-button {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
  position: relative;
  z-index: 1001;
}

.menu-button .bar-icon {
  display: block;
  width: 30px;
  height: 30px;
  color: var(--primary);
  pointer-events: none;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 998;
  background: rgba(9, 14, 26, 0.58);
  backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.side-bar {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  width: 340px;
  max-width: 88%;
  height: 100vh;
  padding: 96px 30px 40px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: #0b7068;
  box-shadow: -18px 0 50px rgba(0, 0, 0, 0.25);
  transform: translateX(105%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  overflow-y: auto;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.side-bar.active {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.side-bar .close-btn {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
}

.side-bar .close-btn svg {
  width: 25px;
  height: 25px;
}

.side-bar a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 4px;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.side-bar a:hover {
  color: #b9fff7;
  transform: translateX(5px);
}

.side-bar a svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: #7ff5e8;
}

body.menu-open {
  overflow: hidden;
}

@media (max-width: 1280px) {
  .nav {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }
}

@media (max-width: 640px) {
  .header-actions .btn {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  .side-bar {
    width: 310px;
  }
}

/* ==========================================================
   MENU LATERAL — CORREÇÃO DEFINITIVA
   ========================================================== */
.menu-button {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 14px;
  background: transparent;
  color: var(--primary);
  cursor: pointer;
  position: relative;
  z-index: 10002;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.menu-button svg,
.menu-button .bar-icon {
  display: block !important;
  width: 30px;
  height: 30px;
  color: currentColor;
  pointer-events: none;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(9, 14, 26, .58);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s ease, visibility .25s ease;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.side-bar {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 340px;
  max-width: 88vw;
  height: 100dvh;
  z-index: 10001;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 92px 28px 36px;
  background: #0b7068;
  border-left: 1px solid rgba(255,255,255,.12);
  box-shadow: -18px 0 50px rgba(0,0,0,.28);
  transform: translateX(105%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  overflow-y: auto;
  transition: transform .3s ease, opacity .3s ease, visibility .3s ease;
}

.side-bar.active {
  transform: translateX(0) !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

.side-bar .close-btn {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.14);
  color: #fff;
  cursor: pointer;
}

.side-bar .close-btn svg { width: 25px; height: 25px; pointer-events: none; }

.side-bar a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 4px;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
  border-bottom: 1px solid rgba(255,255,255,.14);
}

.side-bar a svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  color: #7ff5e8;
}

body.menu-open { overflow: hidden; }

@media (max-width: 1280px) {
  .nav { display: none !important; }
  .menu-button { display: inline-flex !important; }
}

@media (max-width: 640px) {
  .header-actions .btn { display: none !important; }
  .menu-button { display: inline-flex !important; }
  .side-bar { width: 310px; }
}

/* Hamburger sem dependência de biblioteca externa */
.menu-button span {
  display: block;
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: var(--primary);
  transition: transform .2s ease, opacity .2s ease;
}
.menu-button { flex-direction: column; gap: 5px; }
.side-bar .close-btn { font-size: 32px; line-height: 1; }
