/* Di Maior — shared site styles. Importado por todas as páginas. */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:       #33CC99;
  --green-dark:  #28A37A;
  --green-light: #E3F9F1;
  --gray-bg:     #F9F9F9;
  --dark-bg:     #1A1A1A;
  --text-dark:   #1C1B1F;
  --text-med:    #4A4851;
  --text-muted:  #626263;
  --border:      #DFDFDF;
  --max-w:       1200px;
  --px:          clamp(24px, 6.1vw, 83px);
}

html { scroll-behavior: auto; }
html, body { overflow-x: hidden; max-width: 100%; }
body { font-family: 'Lexend Deca', sans-serif; color: var(--text-dark); background: #fff; -webkit-font-smoothing: antialiased; }

/* ── UTILITIES ─────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; width: 100%; }
.section-px { padding-left: var(--px); padding-right: var(--px); }

/* ── BUTTONS ───────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: 'Lexend Deca', sans-serif; font-weight: 700; font-size: 16px;
  border-radius: 10px; height: 55px; padding: 0 28px; cursor: pointer;
  text-decoration: none; border: none; white-space: nowrap;
  transition: transform .15s cubic-bezier(.33,1,.68,1), box-shadow .15s cubic-bezier(.33,1,.68,1), filter .15s, background .15s;
}

.btn-primary {
  background: var(--green); border: 2px solid var(--green-dark);
  box-shadow: 0 6px 0 var(--green-dark); color: #fff;
}
.btn-primary:hover  { transform: translateY(-3px); box-shadow: 0 9px 0 var(--green-dark); filter: brightness(1.04); }
.btn-primary:active { transform: translateY(4px);  box-shadow: 0 2px 0 var(--green-dark); }

.btn-secondary {
  background: #fff; border: 2px solid var(--border);
  box-shadow: 0 6px 0 var(--border); color: #272727;
}
.btn-secondary:hover  { transform: translateY(-3px); box-shadow: 0 9px 0 var(--border); background: #f7f7f7; }
.btn-secondary:active { transform: translateY(4px);  box-shadow: 0 2px 0 var(--border); }

/* ── BADGE PILL ────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-light); border-radius: 999px; padding: 5px 14px;
  font-family: 'Lexend Deca', sans-serif; font-weight: 500; font-size: 15px; color: var(--text-med);
}
.badge-icon { width: 18px; height: 18px; flex-shrink: 0; }

/* ── HEADINGS ──────────────────────────────── */
h1, h2, h3 { font-family: 'Nunito Sans', sans-serif; font-weight: 700; color: var(--text-dark); line-height: 1.25; text-wrap: pretty; }

.section-head { text-align: center; }
.section-title { font-size: clamp(26px, 3vw, 40px); line-height: 1.25; }
.section-sub {
  font-family: 'Lexend Deca', sans-serif; font-weight: 300; font-size: 18px;
  line-height: 1.6; color: var(--text-med); margin-top: 16px; text-wrap: pretty;
}

/* ════════════════════════════════════════════
   HEADER
════════════════════════════════════════════ */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(255,255,255,.96); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,.07);
}
body { padding-top: 87px; }
@media (max-width: 768px) { body { padding-top: 64px; } }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 87px; max-width: var(--max-w); margin: 0 auto; padding: 0 var(--px);
  gap: 20px;
}
.header-logo img { height: 28px; display: block; }
.header-nav { display: flex; align-items: center; gap: 28px; }
.header-nav a {
  font-family: 'Lexend Deca', sans-serif; font-weight: 300; font-size: 16px;
  color: var(--text-med); text-decoration: none; transition: color .15s;
}
.header-nav a:hover { color: var(--green-dark); }
.header-ctas { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }

/* Hamburger — mobile only */
.hamburger {
  display: none;
  width: 44px; height: 44px;
  background: transparent; border: none; cursor: pointer;
  padding: 10px;
  position: relative; z-index: 220;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text-dark); border-radius: 2px;
  margin: 5px auto;
  transition: transform .3s cubic-bezier(.33,1,.68,1), opacity .2s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu overlay */
.mobile-menu {
  position: fixed; inset: 0;
  background: #fff;
  z-index: 210;
  display: flex; flex-direction: column;
  padding: 100px var(--px) 32px;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.33,1,.68,1);
  visibility: hidden;
}
.mobile-menu.active { transform: translateX(0); visibility: visible; }
.mobile-menu-nav {
  display: flex; flex-direction: column;
  gap: 4px; margin-bottom: 28px;
}
.mobile-menu-nav a {
  font-family: 'Lexend Deca', sans-serif; font-weight: 500; font-size: 22px;
  color: var(--text-dark); text-decoration: none;
  padding: 14px 0; border-bottom: 1px solid #eee;
}
.mobile-menu-ctas {
  display: flex; flex-direction: column; gap: 12px;
  margin-top: auto; padding-bottom: 24px;
}
.mobile-menu-ctas .btn { width: 100%; height: 54px; }

/* ════════════════════════════════════════════
   HERO
════════════════════════════════════════════ */
#hero { padding: 0 var(--px); overflow: hidden; min-height: calc(100vh - 87px - 200px); display: flex; align-items: center; }
.hero-grid {
  max-width: var(--max-w); margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 36px;
  align-items: center; padding: 40px 0;
}

/* Illustration side */
.hero-visual {
  position: relative;
  align-self: stretch;
  display: flex; align-items: stretch;
  background: #0e1116;
}
.hero-visual lottie-player, .hero-visual video {
  width: 100%;
  min-height: 560px;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #0e1116;
}
@media (prefers-reduced-motion: reduce) {
  #hero-video { animation: none !important; }
}

/* Content side */
.hero-content { display: flex; flex-direction: column; gap: 24px; align-items: flex-start; }
.hero-title { font-size: clamp(30px, 3.7vw, 50px); line-height: 1.36; }
.hero-sub {
  font-family: 'Lexend Deca', sans-serif; font-weight: 300; font-size: 18px;
  line-height: 1.6; color: var(--text-med);
}
.hero-ctas { display: flex; gap: 10px; flex-wrap: wrap; }

/* ════════════════════════════════════════════
   SOCIAL PROOF
════════════════════════════════════════════ */
#social-proof { padding: 12px var(--px) 36px; text-align: center; }
.sp-label {
  font-family: 'Lexend Deca', sans-serif; font-weight: 300; font-size: 16px;
  color: var(--text-muted); margin-bottom: 20px;
}
.sp-logos {
  display: flex; justify-content: center; align-items: center;
  gap: 40px; flex-wrap: wrap;
}
.sp-logos img { height: 56px; object-fit: contain; opacity: .7; }
.sp-slot {
  overflow: hidden;
  height: 56px;
  display: flex;
  align-items: flex-end;
}
.sp-item {
  clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0% 100%);
  opacity: 0;
  transition:
    clip-path 0.85s cubic-bezier(.33,1,.68,1) var(--cd, 0ms),
    opacity   0.85s cubic-bezier(.33,1,.68,1) var(--cd, 0ms);
}
.sp-item.revealed {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  opacity: .7;
}
.sp-logo-text {
  opacity: .7; display: flex; align-items: center; gap: 8px;
  font-family: 'Nunito Sans', sans-serif; font-weight: 700;
  font-size: 22px; color: var(--text-med); letter-spacing: -.5px;
}
.sp-logo-text svg { flex-shrink: 0; }

/* ════════════════════════════════════════════
   PROBLEM SECTION
════════════════════════════════════════════ */
#problem { background: var(--gray-bg); padding: 80px var(--px); }
.problem-cards {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 44px;
}
.p-card {
  background: #fff; border-radius: 16px; padding: 28px 24px 32px;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
}
.p-card-icon { margin-bottom: 32px; color: var(--text-dark); }
.p-card-title {
  font-family: 'Nunito Sans', sans-serif; font-weight: 700; font-size: 24px;
  color: var(--text-dark); margin-bottom: 10px;
}
.p-card-text {
  font-family: 'Lexend Deca', sans-serif; font-weight: 300; font-size: 16px;
  line-height: 1.6; color: var(--text-med);
}
.section-cta { text-align: center; margin-top: 40px; }

/* ════════════════════════════════════════════
   COURSES SECTION
════════════════════════════════════════════ */
#courses { padding: 80px var(--px); }
.courses-grid {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 85px; align-items: center;
}
.courses-text .section-sub { text-align: left; max-width: 100%; }
.courses-list { display: flex; flex-direction: column; gap: 28px; margin-top: 0; }
.c-card {
  background: var(--gray-bg); border-radius: 12px;
  display: flex; align-items: center; overflow: hidden;
}
.c-card-img { width: 104px; height: 104px; object-fit: cover; flex-shrink: 0; }
.c-card-title {
  font-family: 'Lexend Deca', sans-serif; font-size: 18px; line-height: 1.6;
  color: var(--text-med); padding: 16px 20px;
}
.courses-cta { margin-top: 28px; }

/* ════════════════════════════════════════════
   HOW IT WORKS
════════════════════════════════════════════ */
#how { background: var(--green-light); padding: 20px var(--px); }
.how-grid {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 120px;
  align-items: center; min-height: 716px;
}
.how-photo { border-radius: 24px; overflow: hidden; height: 676px; flex-shrink: 0; }
.how-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.how-content { display: flex; flex-direction: column; gap: 32px; padding: 40px 0; position: relative; }
.how-grafismo {
  position: absolute; top: 0; right: 0; width: 100px; height: 100px;
  object-fit: contain; pointer-events: none;
  animation: spinCW 12s linear infinite;
}
.how-title { font-size: 40px; }
.how-steps { display: flex; flex-direction: column; gap: 28px; }
.how-step { display: flex; align-items: flex-start; gap: 24px; }
.how-step-icon { color: var(--green); flex-shrink: 0; margin-top: 2px; }
.how-step-name {
  font-family: 'Lexend Deca', sans-serif; font-size: 24px; color: var(--text-dark); margin-bottom: 4px;
}
.how-step-desc {
  font-family: 'Lexend Deca', sans-serif; font-weight: 300; font-size: 16px;
  line-height: 1.6; color: var(--text-med);
}

/* ════════════════════════════════════════════
   APP SECTION (DESTRAVA)
════════════════════════════════════════════ */
#app { padding: 80px var(--px); }
.app-inner { max-width: var(--max-w); margin: 0 auto; text-align: center; }
.app-title {
  font-size: clamp(26px, 3vw, 40px);
  display: flex; align-items: center; justify-content: center; gap: 12px;
}
.app-logo-wrap {
  width: 80px;
  height: 80px;
  overflow: hidden;
  flex-shrink: 0;
}
.app-logo-wrap lottie-player {
  width: 80px;
  height: calc(80px * 261 / 211);
  display: block;
  cursor: pointer;
}
.app-sub { max-width: 820px; margin: 16px auto 28px; text-align: center; }

.phone-mock {
  position: relative;
  width: 284px;
  margin: 36px auto 0;
  background: #0c0c0c;
  border-radius: 48px;
  padding: 12px;
  box-shadow: 0 0 0 1.5px #2a2a2a, 0 32px 80px rgba(0,0,0,.4);
}
.phone-mock::before {
  content: '';
  position: absolute;
  left: -4px; top: 110px;
  width: 4px; height: 32px;
  background: #1c1c1c; border-radius: 3px 0 0 3px;
  box-shadow: 0 48px 0 #1c1c1c, 0 88px 0 #1c1c1c;
}
.phone-mock::after {
  content: '';
  position: absolute;
  right: -4px; top: 148px;
  width: 4px; height: 60px;
  background: #1c1c1c; border-radius: 0 3px 3px 0;
}
.phone-inner {
  background: #000;
  border-radius: 38px;
  overflow: hidden;
}
.phone-screen {
  width: 260px;
  height: 552px;
  overflow: hidden;
  position: relative;
  background: #fff;
}
.lottie-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  will-change: transform;
}
.lottie-slide lottie-player {
  width: 260px;
  height: 618px;
  display: block;
}
.phone-dots {
  display: flex; gap: 6px; justify-content: center; padding: 10px 0 8px;
  background: #fff;
}
.phone-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #d0d0d0;
  transition: background .3s, transform .3s;
}
.phone-dot.active { background: var(--green); transform: scale(1.3); }
.phone-home {
  height: 28px; background: #fff;
  display: flex; align-items: center; justify-content: center;
}
.phone-home-bar { width: 90px; height: 4px; background: #1a1a1a; border-radius: 2px; }

.app-store-note {
  font-family: 'Lexend Deca', sans-serif; font-weight: 300; font-size: 16px;
  color: var(--text-med); margin-top: 28px;
}
.app-stores { display: flex; gap: 10px; justify-content: center; margin-top: 16px; }
.store-btn {
  background: #0a0a0a; border-radius: 8px; padding: 10px 18px;
  display: flex; align-items: center; gap: 10px; cursor: pointer;
  text-decoration: none; border: none; transition: opacity .15s;
}
.store-btn:hover { opacity: .85; }
.store-btn-logo { height: 26px; object-fit: contain; filter: invert(1); }
.store-btn-text { text-align: left; }
.store-btn-pre {
  display: block; font-family: 'Nunito Sans', sans-serif; font-size: 7.5px;
  color: #fff; text-transform: uppercase; letter-spacing: .4px; opacity: .85;
}
.store-btn-name { height: 16px; display: block; margin-top: 1px; filter: invert(1); }

/* ════════════════════════════════════════════
   KIT SECTION
════════════════════════════════════════════ */
#kit {
  background: linear-gradient(180deg, #252525 0%, #000 72%);
  padding: 80px var(--px);
}
.kit-grid {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.kit-content { display: flex; flex-direction: column; gap: 32px; align-items: flex-start; }
.kit-badge { background: var(--green-light); }
.kit-title { font-size: clamp(26px, 2.8vw, 38px); line-height: 1.42; color: #fff; }
.kit-features { display: flex; flex-direction: column; gap: 22px; }
.kit-feat { display: flex; align-items: center; gap: 20px; }
.kit-feat-icon { color: var(--green); flex-shrink: 0; }
.kit-feat-text {
  font-family: 'Lexend Deca', sans-serif; font-weight: 300; font-size: 18px;
  line-height: 1.6; color: #fff;
}
.kit-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.kit-visual img.porquinho { max-width: 100%; max-height: 560px; object-fit: contain; display: block; }
.kit-visual img.grafismo-dec {
  position: absolute; top: -20px; right: -20px; width: 110px; opacity: .55;
  animation: spinCW 16s linear infinite;
}
@keyframes spinCW { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* ════════════════════════════════════════════
   TOOLS
════════════════════════════════════════════ */
#tools { padding: 80px var(--px); }
.tools-inner { max-width: var(--max-w); margin: 0 auto; }
.tools-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; margin-top: 44px; }
.tool-card { position: relative; }
.tool-img-wrap {
  height: 200px; background: var(--gray-bg); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; margin-bottom: 24px;
}
.tool-img-wrap img { height: 170px; object-fit: contain; transition: transform 350ms ease; }
.tool-card:hover .tool-img-wrap img { transform: scale(1.06); }
.tool-name-row { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.tool-name { font-family: 'Nunito Sans', sans-serif; font-weight: 700; font-size: 24px; color: #1F2124; }
.tool-link { color: var(--text-dark); display: flex; align-items: center; }
.tool-link::after { content: ''; position: absolute; inset: 0; cursor: pointer; }
.tool-link svg { stroke: rgb(160,160,161); }
.tool-desc {
  font-family: 'Lexend Deca', sans-serif; font-weight: 300; font-size: 16px;
  line-height: 1.75; color: var(--text-med);
}

/* ════════════════════════════════════════════
   WHATSAPP COMMUNITY
════════════════════════════════════════════ */
#community { background: var(--green-light); padding: 32px var(--px); overflow: hidden; position: relative; }
.community-card {
  max-width: var(--max-w); margin: 0 auto;
  border-radius: 22px; padding: 55px 40px; text-align: center;
  position: relative;
}
.community-bg-icon {
  position: absolute;
  width: 520px; height: 520px;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  opacity: .09;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.community-card > *:not(.community-bg-icon) { position: relative; z-index: 1; }
.community-title { font-size: clamp(22px, 2.4vw, 32px); }
.community-sub { max-width: 820px; margin: 12px auto 32px; text-align: center; }
.community-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.comm-btn {
  background: #fff; border-radius: 10px; height: 55px; padding: 0 28px;
  display: flex; align-items: center; gap: 10px;
  font-family: 'Lexend Deca', sans-serif; font-weight: 700; font-size: 16px;
  color: var(--text-dark); cursor: pointer; text-decoration: none;
  border: 2px solid var(--border);
  box-shadow: 0 6px 0 var(--border);
  transition: transform .15s cubic-bezier(.33,1,.68,1), box-shadow .15s cubic-bezier(.33,1,.68,1), background .15s;
}
.comm-btn:hover  { transform: translateY(-3px); box-shadow: 0 9px 0 var(--border); background: #f7f7f7; }
.comm-btn:active { transform: translateY(4px);  box-shadow: 0 2px 0 var(--border); }
.comm-btn-icon { width: 16px; height: 16px; flex-shrink: 0; filter: brightness(0) saturate(100%) invert(68%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(90%); }

/* ════════════════════════════════════════════
   FAQ
════════════════════════════════════════════ */
#faq { background: var(--gray-bg); padding: 80px var(--px); }
.faq-inner { max-width: var(--max-w); margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 12px; margin-top: 44px; }
.faq-item { background: #fff; }
.faq-question {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 20px; cursor: pointer; user-select: none; list-style: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-q-icon { color: var(--green); flex-shrink: 0; transition: transform .3s cubic-bezier(.33,1,.68,1); }
.faq-item[open] .faq-q-icon { transform: rotate(45deg); }
.faq-q-text {
  font-family: 'Nunito Sans', sans-serif; font-weight: 700; font-size: 18px;
  color: #1F2124; line-height: 1.6;
}
.faq-answer-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.38s cubic-bezier(.33,1,.68,1);
}
.faq-item[open] .faq-answer-wrap { grid-template-rows: 1fr; }
.faq-answer {
  overflow: hidden; min-height: 0;
  padding: 0 20px 0 52px;
  font-family: 'Lexend Deca', sans-serif; font-weight: 300; font-size: 16px;
  line-height: 1.75; color: var(--text-med);
  transition: padding-bottom 0.38s cubic-bezier(.33,1,.68,1);
}
.faq-item[open] .faq-answer { padding-bottom: 20px; }

/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
#footer { background: var(--gray-bg); border-top: 1px solid rgba(0,0,0,.06); padding: 22px var(--px); }
.footer-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; flex-direction: column; gap: 14px;
}
.footer-logo img { height: 26px; display: block; }
.footer-links {
  font-family: 'Lexend Deca', sans-serif; font-weight: 300; font-size: 15px;
  color: var(--text-med); line-height: 1.4;
}

/* ════════════════════════════════════════════
   ANIMATIONS
════════════════════════════════════════════ */
.clip-item {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity   0.6s cubic-bezier(.33,1,.68,1) var(--cd, 0ms),
    transform 0.6s cubic-bezier(.33,1,.68,1) var(--cd, 0ms);
}
.clip-item.revealed { opacity: 1; transform: translateY(0); }
.p-card.clip-item.revealed { transition: opacity .6s cubic-bezier(.33,1,.68,1), transform .25s cubic-bezier(.33,1,.68,1); }
.p-card.clip-item.revealed:hover { transform: translateY(-6px); }
.c-card.clip-item.revealed { transition: opacity .6s cubic-bezier(.33,1,.68,1), transform .25s cubic-bezier(.33,1,.68,1); }
.c-card.clip-item.revealed:hover { transform: translateX(8px); }

.tw-cursor::after {
  content: '|'; font-weight: 300; margin-left: 2px;
  color: #33CC99; animation: twBlink .7s step-end infinite;
}
@keyframes twBlink { 0%,100%{opacity:1} 50%{opacity:0} }

/* Page fade-in (aplica em <body class="page-fade-in">) */
@keyframes pageFadeIn { from { opacity: 0; } to { opacity: 1; } }
body.page-fade-in { animation: pageFadeIn 0.7s cubic-bezier(.33,1,.68,1) both; }
@media (prefers-reduced-motion: reduce) {
  body.page-fade-in { animation: none; }
}

/* ════════════════════════════════════════════
   ABOUT PAGE (/sobre/) — narrative long-form
════════════════════════════════════════════ */
.about-page-title { text-align: center; padding: 56px var(--px) 28px; }
.about-page-title h1 { font-size: clamp(28px, 3.4vw, 44px); }
.about-cover { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--px); }
.about-cover img { width: 100%; height: auto; display: block; border-radius: 16px; }
.about-brand-mark { display: flex; justify-content: center; margin: 120px 0 80px; padding: 0; }
.about-brand-mark img,
.about-brand-mark video { max-width: 360px; width: 100%; height: auto; display: block; }
.about-body { max-width: 820px; margin: 0 auto; padding: 80px var(--px) 64px; }
.about-body .lead {
  font-family: 'Nunito Sans', sans-serif; font-weight: 700;
  font-size: clamp(26px, 2.6vw, 34px); line-height: 1.25;
  color: var(--green); text-align: center;
  margin: 0 0 18px;
}
.about-body .lead-sub { text-align: center; font-family: 'Lexend Deca', sans-serif; font-weight: 300; font-size: 17px; line-height: 1.7; color: var(--text-med); margin-bottom: 40px; }
.about-body h2 { font-size: clamp(22px, 2.2vw, 30px); margin: 36px 0 14px; }
.about-body p { font-family: 'Lexend Deca', sans-serif; font-weight: 300; font-size: 17px; line-height: 1.75; color: var(--text-med); margin-bottom: 16px; }
.about-body p strong { color: var(--text-dark); font-weight: 700; }
.about-body ul { list-style: none; padding: 0; margin: 12px 0 20px; display: flex; flex-direction: column; gap: 12px; }
.about-body ul li {
  font-family: 'Lexend Deca', sans-serif; font-weight: 300; font-size: 17px;
  line-height: 1.7; color: var(--text-med);
  padding-left: 28px; position: relative;
}
.about-body ul li::before {
  content: ''; position: absolute; left: 0; top: 12px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--green);
}
.about-body ul li strong { color: var(--text-dark); font-weight: 700; }

/* legacy classes (mantidos caso reuse futuro) */
#about-hero { padding: 80px var(--px) 60px; background: var(--green-light); }
.about-hero-inner { max-width: var(--max-w); margin: 0 auto; text-align: center; }
.about-hero h1 { font-size: clamp(32px, 4vw, 52px); line-height: 1.2; margin-bottom: 20px; }
.about-hero p { font-family: 'Lexend Deca', sans-serif; font-weight: 300; font-size: clamp(16px, 1.4vw, 19px); line-height: 1.65; color: var(--text-med); max-width: 760px; margin: 0 auto; }

#about-story { padding: 80px var(--px); }
.about-grid {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.about-grid--reverse { direction: rtl; }
.about-grid--reverse > * { direction: ltr; }
.about-grid h2 { font-size: clamp(26px, 2.6vw, 36px); margin-bottom: 20px; }
.about-grid p { font-family: 'Lexend Deca', sans-serif; font-weight: 300; font-size: 17px; line-height: 1.7; color: var(--text-med); margin-bottom: 16px; }
.about-image { border-radius: 20px; overflow: hidden; aspect-ratio: 4 / 3; background: var(--gray-bg); }
.about-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

#about-purpose { padding: 60px var(--px); background: var(--gray-bg); }
.purpose-inner { max-width: var(--max-w); margin: 0 auto; }
.purpose-quote {
  font-family: 'Nunito Sans', sans-serif; font-style: italic; font-weight: 700;
  font-size: clamp(20px, 2.2vw, 28px); line-height: 1.45; color: var(--text-dark);
  text-align: center; max-width: 820px; margin: 0 auto 48px;
  border-left: 4px solid var(--green); padding: 8px 0 8px 24px;
}
.purpose-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.purpose-card {
  background: #fff; border-radius: 16px; padding: 32px 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
}
.purpose-card h3 { font-size: 20px; margin-bottom: 12px; color: var(--green-dark); }
.purpose-card p { font-family: 'Lexend Deca', sans-serif; font-weight: 300; font-size: 16px; line-height: 1.6; color: var(--text-med); }

#about-values { padding: 80px var(--px); }
.values-inner { max-width: var(--max-w); margin: 0 auto; }
.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 44px;
}
.value-card {
  background: #fff; border: 1.5px solid var(--border); border-radius: 16px;
  padding: 28px; transition: transform .25s cubic-bezier(.33,1,.68,1), border-color .25s;
}
.value-card:hover { transform: translateY(-4px); border-color: var(--green); }
.value-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--green-light); color: var(--green-dark);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.value-card h3 { font-size: 20px; margin-bottom: 10px; }
.value-card p { font-family: 'Lexend Deca', sans-serif; font-weight: 300; font-size: 15px; line-height: 1.6; color: var(--text-med); }

#about-impact { padding: 80px var(--px); background: var(--dark-bg); color: #fff; }
.impact-inner { max-width: var(--max-w); margin: 0 auto; text-align: center; }
.impact-inner h2 { color: #fff; }
.impact-inner > p { color: rgba(255,255,255,.78); font-family: 'Lexend Deca', sans-serif; font-weight: 300; font-size: 17px; line-height: 1.7; margin: 16px auto 48px; max-width: 760px; }
.impact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; text-align: left; }
.impact-item {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px; padding: 24px;
}
.impact-item h3 { font-size: 17px; color: var(--green); margin-bottom: 8px; }
.impact-item p { font-family: 'Lexend Deca', sans-serif; font-weight: 300; font-size: 15px; line-height: 1.6; color: rgba(255,255,255,.78); }

#about-cta { padding: 80px var(--px); text-align: center; }
.about-cta-inner { max-width: 720px; margin: 0 auto; }
.about-cta-inner h2 { font-size: clamp(26px, 2.6vw, 36px); margin-bottom: 16px; }
.about-cta-inner p { font-family: 'Lexend Deca', sans-serif; font-weight: 300; font-size: 17px; line-height: 1.65; color: var(--text-med); margin-bottom: 32px; }
.about-cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ════════════════════════════════════════════
   RESPONSIVO
════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-grid { gap: 24px; }
  .courses-grid { gap: 48px; }
  .how-grid { gap: 60px; }
  .kit-grid { gap: 40px; }
}

@media (max-width: 768px) {
  :root { --px: 20px; }

  .header-nav { display: none; }
  .header-ctas { display: none; }
  .hamburger { display: block; }
  .header-inner { padding: 0 var(--px) !important; height: 64px; }
  .header-logo img { height: 24px; }

  #hero { min-height: auto; padding: 0; display: block; }
  .hero-grid {
    grid-template-columns: 1fr;
    padding: 0 var(--px) 44px;
    gap: 16px;
    align-items: start;
  }
  .hero-visual {
    order: 1;
    margin: 0 calc(-1 * var(--px));
    width: 100vw;
    aspect-ratio: 1 / 0.95;
    min-height: 0;
    align-self: auto;
    display: flex; align-items: center; justify-content: center;
    background: transparent;
  }
  .hero-visual lottie-player, .hero-visual video {
    width: 100%; height: 100%; min-height: 0; max-height: none;
    object-fit: cover; background: transparent;
  }
  .hero-content { order: 2; gap: 16px; align-items: flex-start; text-align: left; }
  .badge { font-size: 13px; padding: 5px 12px; gap: 6px; }
  .badge-icon { width: 14px; height: 14px; }
  .hero-title { font-size: 34px; line-height: 1.15; letter-spacing: -0.5px; }
  .hero-sub { font-size: 16px; line-height: 1.55; }
  .hero-ctas { flex-direction: column; width: 100%; gap: 10px; margin-top: 4px; }
  .hero-ctas .btn { width: 100%; height: 52px; box-shadow: 0 5px 0 var(--green-dark); }
  .hero-ctas .btn-secondary { box-shadow: 0 5px 0 var(--border); }

  #social-proof { padding: 0 var(--px) 32px; }
  .sp-logos { gap: 24px; }
  .sp-slot { height: auto; min-height: 60px; align-items: center; overflow: visible; }
  .sp-logos img, .sp-logos img[style*="height:52px"] { height: 44px !important; }

  .problem-cards { grid-template-columns: 1fr; gap: 16px; }
  #problem { padding: 56px var(--px); }
  .section-cta .btn { width: 100%; }

  #courses { padding: 56px var(--px); }
  .courses-grid { grid-template-columns: 1fr; gap: 28px; }
  .courses-text .section-sub { text-align: left; }

  .how-grid { grid-template-columns: 1fr; gap: 0; min-height: auto; }
  .how-photo { display: none; }
  .how-content { padding: 48px 0 40px; }
  .how-grafismo { width: 64px; height: 64px; }
  .how-title { font-size: 28px; }
  #how { padding: 0 var(--px); }

  #app { padding: 56px var(--px); }
  .app-title { font-size: 24px; flex-direction: column; gap: 8px; }
  .app-sub { font-size: 15px; }
  .phone-mock { width: 240px; }
  .phone-screen { width: 216px; height: 458px; }
  .lottie-slide lottie-player { width: 216px; height: calc(216px * 937 / 394); }
  .app-stores { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 8px; }
  .app-stores img { height: 48px !important; }

  #kit { padding: 56px var(--px); }
  .kit-grid { grid-template-columns: 1fr; gap: 32px; }
  .kit-visual { order: -1; }
  .kit-visual img.porquinho { max-height: 260px; }
  .kit-title { font-size: 26px; }
  .kit-feat-text { font-size: 16px; }
  .kit-content .btn { width: 100%; }

  #tools { padding: 56px var(--px); }
  .tools-grid { grid-template-columns: 1fr; gap: 40px; }

  .community-card { padding: 40px 20px; }
  .community-btns { flex-direction: column; align-items: center; }
  .comm-btn { width: 100%; justify-content: center; max-width: 340px; }

  #faq { padding: 56px var(--px); }
  .faq-q-text { font-size: 15px; }

  .section-title { font-size: clamp(22px, 6vw, 30px); }
  .section-sub { font-size: 16px; }

  /* About page mobile */
  #about-hero { padding: 56px var(--px) 40px; }
  #about-story { padding: 56px var(--px); }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-grid--reverse { direction: ltr; }
  .about-image { aspect-ratio: 16 / 11; }
  .purpose-cards { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .impact-grid { grid-template-columns: 1fr; }
  #about-cta { padding: 56px var(--px); }
  .about-cta-btns { flex-direction: column; }
  .about-cta-btns .btn { width: 100%; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 28px; }
  .hero-visual { aspect-ratio: 1 / 1; }
  .phone-mock { width: 200px; }
  .phone-screen { width: 176px; height: 382px; }
  .lottie-slide lottie-player { width: 176px; height: calc(176px * 937 / 394); }
}

/* ════════════════════════════════════════════
   LEGAL PAGES (/destrava/privacidade/, /destrava/excluir-conta/)
════════════════════════════════════════════ */
.about-body h3 { font-family: 'Nunito Sans', sans-serif; font-weight: 700; font-size: clamp(18px, 1.8vw, 22px); margin: 24px 0 10px; color: var(--text-dark); }
.about-body ol { padding-left: 24px; margin: 12px 0 20px; display: flex; flex-direction: column; gap: 10px; }
.about-body ol li { font-family: 'Lexend Deca', sans-serif; font-weight: 300; font-size: 17px; line-height: 1.7; color: var(--text-med); }
.about-body a { color: var(--green-dark); text-decoration: underline; text-underline-offset: 3px; }
.about-body a:hover { color: var(--green); }
.about-body .meta-row { font-family: 'Lexend Deca', sans-serif; font-size: 14px; color: var(--text-muted); margin: 0 0 24px; text-align: center; }

.policy-table { width: 100%; border-collapse: collapse; margin: 16px 0 28px; font-family: 'Lexend Deca', sans-serif; font-size: 15px; }
.policy-table th, .policy-table td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--border); vertical-align: top; line-height: 1.5; color: var(--text-med); }
.policy-table th { background: var(--gray-bg); font-weight: 700; color: var(--text-dark); font-size: 14px; text-transform: uppercase; letter-spacing: .03em; }
.policy-table tr:last-child td { border-bottom: none; }
@media (max-width: 640px) {
  .policy-table, .policy-table thead, .policy-table tbody, .policy-table tr, .policy-table th, .policy-table td { display: block; width: 100%; }
  .policy-table thead { display: none; }
  .policy-table tr { border: 1px solid var(--border); border-radius: 10px; padding: 8px; margin-bottom: 12px; }
  .policy-table td { border-bottom: 1px dashed var(--border); padding: 8px 6px; }
  .policy-table td::before { content: attr(data-label); display: block; font-weight: 700; color: var(--text-dark); font-size: 12px; text-transform: uppercase; letter-spacing: .03em; margin-bottom: 4px; }
  .policy-table td:last-child { border-bottom: none; }
}

/* ════════════════════════════════════════════
   DELETION REQUEST FORM
════════════════════════════════════════════ */
.delete-form { display: flex; flex-direction: column; gap: 18px; max-width: 560px; margin: 24px auto 0; }
.delete-form .field { display: flex; flex-direction: column; gap: 6px; }
.delete-form label { font-family: 'Lexend Deca', sans-serif; font-weight: 500; font-size: 15px; color: var(--text-dark); }
.delete-form .hint { font-family: 'Lexend Deca', sans-serif; font-weight: 300; font-size: 13px; color: var(--text-muted); }
.delete-form input[type="email"],
.delete-form input[type="text"],
.delete-form textarea {
  font-family: 'Lexend Deca', sans-serif; font-size: 16px; line-height: 1.5;
  padding: 14px 16px; border: 2px solid var(--border); border-radius: 10px;
  background: #fff; color: var(--text-dark);
  transition: border-color .15s, box-shadow .15s;
  width: 100%;
}
.delete-form textarea { min-height: 96px; resize: vertical; }
.delete-form input:focus,
.delete-form textarea:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 4px rgba(51,204,153,.18); }
.delete-form .checkbox-row { display: flex; align-items: flex-start; gap: 10px; padding: 14px 16px; border: 2px dashed var(--border); border-radius: 10px; background: var(--gray-bg); }
.delete-form .checkbox-row input[type="checkbox"] { margin-top: 4px; width: 18px; height: 18px; accent-color: var(--green); flex-shrink: 0; }
.delete-form .checkbox-row label { font-weight: 400; font-size: 15px; line-height: 1.5; color: var(--text-med); }
.delete-form .actions { display: flex; justify-content: center; margin-top: 8px; }
.delete-form .btn { width: 100%; max-width: 360px; }
.delete-form .status { margin-top: 12px; padding: 14px 16px; border-radius: 10px; font-family: 'Lexend Deca', sans-serif; font-size: 15px; line-height: 1.5; display: none; }
.delete-form .status.is-success { display: block; background: var(--green-light); color: var(--green-dark); border: 1px solid var(--green); }
.delete-form .status.is-error { display: block; background: #FDECEC; color: #B33A3A; border: 1px solid #E89A9A; }
.delete-form .field-error { color: #B33A3A; font-size: 13px; margin-top: 4px; min-height: 16px; }

/* ════════════════════════════════════════════
   FOOTER LINKS (lista navegável, substitui texto solto)
════════════════════════════════════════════ */
.footer-links-nav { display: flex; flex-wrap: wrap; gap: 6px 20px; font-family: 'Lexend Deca', sans-serif; font-size: 15px; }
.footer-links-nav a { color: var(--text-med); text-decoration: none; line-height: 1.6; transition: color .15s; }
.footer-links-nav a:hover { color: var(--green-dark); }
.footer-legal { font-family: 'Lexend Deca', sans-serif; font-size: 13px; color: var(--text-muted); line-height: 1.5; }
