/* ==========================================================================
   BRECHÓFY — Design System
   Sistema de gestão para brechós · SaaS + sustentável + profissional
   ========================================================================== */

/* -------------------------------------------------------------------------
   1. Reset & base
   ------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, ul, ol, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input { font: inherit; }
svg { display: block; }

/* -------------------------------------------------------------------------
   2. Design tokens
   ------------------------------------------------------------------------- */
:root {
  /* Verdes */
  --green: #087443;
  --green-dark: #064D35;
  --green-deep: #022F24;
  --green-light: #DDF5E8;
  --green-accent: #35C76F;

  /* Neutros */
  --bg: #F7F9F8;
  --bg-cream: #F7F5F0;
  --white: #FFFFFF;
  --text: #13201C;
  --text-secondary: #66736E;
  --text-disabled: #9BA6A1;
  --border: #E4EAE7;

  /* Auxiliares */
  --success: #16A05D;
  --warning: #F59E0B;
  --error: #E5484D;
  --error-soft: #C75450;
  --info: #3478F6;

  /* Tipografia */
  --font-display: "Plus Jakarta Sans", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  /* Espaçamento (escala 8px) */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-6: 24px;
  --sp-8: 32px;
  --sp-10: 40px;
  --sp-12: 48px;
  --sp-16: 64px;
  --sp-20: 80px;
  --sp-24: 96px;
  --sp-30: 120px;

  /* Radius */
  --radius-input: 6px;
  --radius-btn: 8px;
  --radius-sm: 10px;
  --radius-card: 14px;
  --radius-lg: 16px;
  --radius-mockup: 24px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, .05);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, .08);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, .12);
  --shadow-card: 0 4px 20px rgba(10, 50, 35, .06);

  /* Container / grid */
  --container-max: 1440px;
  --container-pad: 40px;
  --grid-gap: 24px;

  /* Seções */
  --section-space: 120px;
}

@media (max-width: 1024px) {
  :root { --container-pad: 32px; --section-space: 96px; }
}
@media (max-width: 640px) {
  :root { --container-pad: 20px; --section-space: 72px; }
}

/* -------------------------------------------------------------------------
   3. Base tipográfica
   ------------------------------------------------------------------------- */
body {
  font-family: var(--font-display);
  color: var(--text);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

h1, .h1 {
  font-size: 56px;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -1.8px;
}
h2, .h2 {
  font-size: 40px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -1.2px;
}
h3, .h3 {
  font-size: 28px;
  line-height: 1.2;
  font-weight: 700;
}
h4, .h4 {
  font-size: 20px;
  line-height: 1.3;
  font-weight: 700;
}
.body-lg { font-size: 18px; line-height: 1.6; font-weight: 400; }
.body-sm { font-size: 14px; line-height: 1.5; }
.label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .3px;
  text-transform: uppercase;
}
.text-secondary { color: var(--text-secondary); }
.text-green { color: var(--green); }

@media (max-width: 640px) {
  h1, .h1 { font-size: 36px; letter-spacing: -1px; }
  h2, .h2 { font-size: 30px; letter-spacing: -.8px; }
  h3, .h3 { font-size: 22px; }
}

/* -------------------------------------------------------------------------
   4. Layout — container & grid
   ------------------------------------------------------------------------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
@media (min-width: 1600px) {
  .container { padding: 0 64px; }
}

.section { padding: var(--section-space) 0; }
.section-sm { padding: calc(var(--section-space) * .66) 0; }

.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--grid-gap);
}

/* -------------------------------------------------------------------------
   5. Ícones
   ------------------------------------------------------------------------- */
.icon {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.icon-lg { width: 30px; height: 30px; }
.icon-sm { width: 16px; height: 16px; }

/* -------------------------------------------------------------------------
   6. Botões
   ------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 46px;
  padding: 0 22px;
  border-radius: var(--radius-btn);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}
.btn:hover { transform: translateY(-1px); }
.btn .icon { width: 16px; height: 16px; }

.btn-primary { background: var(--green); color: var(--white); }
.btn-primary:hover { background: var(--green-dark); }

.btn-secondary { background: var(--white); color: var(--green); border: 1px solid var(--green); }
.btn-secondary:hover { background: var(--green-light); }

.btn-ghost { background: transparent; color: var(--green); }
.btn-ghost:hover { background: var(--green-light); }

.btn-white { background: var(--white); color: var(--green-dark); }
.btn-white:hover { background: var(--green-light); }

.btn-outline-white { background: transparent; color: var(--white); border: 1px solid rgba(255, 255, 255, .5); }
.btn-outline-white:hover { background: rgba(255, 255, 255, .1); border-color: var(--white); }

.btn-header-login { height: 44px; padding: 0 20px; background: transparent; color: var(--green); border: 1px solid var(--green); border-radius: var(--radius-btn); font-weight: 600; font-size: 14px; }
.btn-header-login:hover { background: var(--green-light); }

.btn-sm { height: 40px; padding: 0 18px; }
.btn-block { width: 100%; }

/* -------------------------------------------------------------------------
   7. Inputs
   ------------------------------------------------------------------------- */
.input {
  height: 46px;
  width: 100%;
  border: 1px solid #DDE5E0;
  border-radius: var(--radius-input);
  padding: 0 14px;
  font-size: 14px;
  background: var(--white);
  color: var(--text);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}
.input:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px var(--green-light);
}
.input::placeholder { color: var(--text-disabled); }

/* -------------------------------------------------------------------------
   8. Cards
   ------------------------------------------------------------------------- */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: var(--sp-6);
  box-shadow: var(--shadow-card);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.card--hover:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .3px;
  background: var(--green-light);
  color: var(--green-dark);
}

/* -------------------------------------------------------------------------
   9. Slots de imagem (fallback gracioso enquanto não há imagem real)
   ------------------------------------------------------------------------- */
.img-slot {
  position: relative;
  overflow: hidden;
  background: var(--green-light);
}
.img-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.img-slot-fallback {
  display: none;
  position: absolute;
  inset: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  padding: var(--sp-4);
  background: var(--green-light);
  border: 1.5px dashed var(--green);
  border-radius: inherit;
  color: var(--green-dark);
}
.img-slot-fallback .icon { color: var(--green); }
.img-slot-fallback span { font-size: 12px; font-weight: 600; color: var(--green-dark); word-break: break-all; }
.img-slot--empty img { display: none; }
.img-slot--empty .img-slot-fallback { display: flex; }

.img-slot--logo { width: 160px; height: 40px; background: transparent; }
.img-slot--logo .img-slot-fallback { background: transparent; border: none; flex-direction: row; padding: 0; }
.img-slot--logo .img-slot-fallback span { font-family: var(--font-display); font-weight: 700; font-size: 22px; letter-spacing: -.5px; color: var(--green-dark); }
.img-slot--logo.on-dark .img-slot-fallback span { color: var(--white); }
.img-slot--logo img { object-fit: contain; object-position: left center; }

/* -------------------------------------------------------------------------
   10. Header
   ------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 76px;
  display: flex;
  align-items: center;
  background: var(--bg);
  border-bottom: 1px solid transparent;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}
.site-header.is-scrolled { border-color: var(--border); box-shadow: var(--shadow-sm); }

.site-header .container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
}

.header-nav { display: flex; align-items: center; gap: 28px; }
.header-nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  transition: color 180ms ease;
}
.header-nav a:hover { color: var(--green); }

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

.header-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-btn);
}
.header-toggle .icon { width: 24px; height: 24px; }

@media (max-width: 1024px) {
  .site-header { height: 64px; }
  .header-nav { position: fixed; inset: 64px 0 0 0; background: var(--white); flex-direction: column; align-items: flex-start; gap: 0; padding: var(--sp-6) var(--container-pad); overflow-y: auto; transform: translateX(100%); transition: transform 220ms ease; }
  .header-nav.is-open { transform: translateX(0); }
  .header-nav a { width: 100%; padding: 14px 0; border-bottom: 1px solid var(--border); }
  .header-actions .btn-header-login,
  .header-actions .btn-primary { display: none; }
  .header-nav-actions { display: flex; flex-direction: column; gap: 12px; width: 100%; margin-top: var(--sp-4); }
  .header-nav-actions .btn { width: 100%; }
  .header-toggle { display: inline-flex; }
}
@media (min-width: 1025px) { .header-nav-actions { display: none; } }

/* -------------------------------------------------------------------------
   11. Hero
   ------------------------------------------------------------------------- */
.hero {
  padding: 72px 0 var(--sp-16);
  background: linear-gradient(180deg, var(--bg) 0%, #EFF7F2 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-10);
  align-items: center;
}
.hero-text { max-width: 620px; }
.hero-title { margin-bottom: var(--sp-4); }
.hero-title mark {
  background: none;
  color: var(--green);
}
.hero-subtitle { max-width: 560px; color: var(--text-secondary); margin-bottom: var(--sp-6); }
.hero-cta { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; }

.hero-media { position: relative; }
.hero-mockup {
  width: 100%;
  aspect-ratio: 1211 / 947;
  border-radius: var(--radius-mockup);
  box-shadow: var(--shadow-lg);
}

@media (max-width: 1024px) {
  .hero { padding: 56px 0 var(--sp-12); }
  .hero-grid { grid-template-columns: 1fr; gap: var(--sp-10); text-align: center; }
  .hero-text { max-width: 100%; margin: 0 auto; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .hero-media { max-width: 480px; margin: 0 auto; }
}
@media (max-width: 640px) {
  .hero { padding: 40px 0 var(--sp-10); }
  .hero-grid { gap: var(--sp-6); }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; text-align: center; }
}

/* -------------------------------------------------------------------------
   12. Barra de prova
   ------------------------------------------------------------------------- */
.proof-bar { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--white); }
.proof-bar .grid-12 { padding: 26px 0; }
.proof-item {
  grid-column: span 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
}
.proof-item-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--green-light);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.proof-item-num { font-weight: 700; font-size: 18px; line-height: 1.2; }
.proof-item-label { font-size: 13px; color: var(--text-secondary); }

@media (max-width: 1024px) {
  .proof-item { grid-column: span 6; }
}
@media (max-width: 640px) {
  .proof-bar .grid-12 { display: flex; flex-direction: column; gap: var(--sp-4); }
}

/* -------------------------------------------------------------------------
   13. Problema
   ------------------------------------------------------------------------- */
.problema { background: var(--bg-cream); }
.problema-grid { display: grid; grid-template-columns: 40% 1fr; gap: var(--sp-10); align-items: center; }
.problema-text p.body-lg { color: var(--text-secondary); margin: var(--sp-3) 0 var(--sp-6); }
.problema-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px var(--sp-6); }
.problema-list li { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 500; color: var(--error-soft); }
.problema-list .icon { color: var(--error-soft); width: 18px; height: 18px; }

.problema-media { position: relative; }
.problema-photo {
  width: 100%;
  aspect-ratio: 1703 / 924;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.problema-callout {
  position: absolute;
  right: -10px;
  bottom: -24px;
  max-width: 220px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-md);
  padding: var(--sp-4);
  font-weight: 700;
  font-size: 15px;
}

@media (max-width: 1024px) {
  .problema-grid { grid-template-columns: 1fr; }
  .problema-callout { position: static; margin-top: var(--sp-4); max-width: none; }
}
@media (max-width: 640px) {
  .problema-list { grid-template-columns: 1fr; }
}

/* -------------------------------------------------------------------------
   14. Solução (cards de funcionalidades)
   ------------------------------------------------------------------------- */
.solucao-head { max-width: 640px; margin-bottom: var(--sp-10); }
.solucao-head p { color: var(--text-secondary); margin-top: var(--sp-3); }

.solucao-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.solucao-card {
  min-height: 150px;
  padding: var(--sp-6);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--sp-4);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.solucao-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.solucao-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--green-light);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
}
.solucao-card h4 { font-size: 16px; }

@media (max-width: 1024px) { .solucao-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .solucao-grid { grid-template-columns: 1fr; } }

/* -------------------------------------------------------------------------
   15. Demonstração (vídeo)
   ------------------------------------------------------------------------- */
.demo-video { background: var(--green-dark); color: var(--white); position: relative; overflow: hidden; }
.demo-video-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-10); align-items: center; }
.demo-video-text p { color: #C9DED4; margin: var(--sp-3) 0 var(--sp-8); }
.demo-video-actions { display: flex; align-items: center; flex-wrap: wrap; gap: var(--sp-4); }

.demo-video-thumb {
  position: relative;
  border-radius: var(--radius-lg);
  aspect-ratio: 16 / 10;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
}
.demo-video-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--white);
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: transform 180ms ease;
}
.demo-video-thumb:hover .demo-video-play { transform: scale(1.08); }

@media (max-width: 1024px) { .demo-video-grid { grid-template-columns: 1fr; } }

/* -------------------------------------------------------------------------
   16. Benefícios
   ------------------------------------------------------------------------- */
.beneficios-head { text-align: center; max-width: 640px; margin: 0 auto var(--sp-10); }
.beneficios-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: var(--sp-6); text-align: center; }
.beneficio-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-3);
}
.beneficio-item p { font-weight: 600; font-size: 15px; }

@media (max-width: 1024px) { .beneficios-grid { grid-template-columns: repeat(3, 1fr); gap: var(--sp-6) var(--sp-4); } }
@media (max-width: 640px) { .beneficios-grid { grid-template-columns: repeat(2, 1fr); } }

/* -------------------------------------------------------------------------
   17. Tour do produto
   ------------------------------------------------------------------------- */
.tour { display: grid; grid-template-columns: 220px 1fr; gap: var(--sp-8); }
.tour-sidebar { display: flex; flex-direction: column; gap: 4px; }
.tour-tab {
  text-align: left;
  padding: 14px 16px;
  border-radius: var(--radius-btn);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: background-color 180ms ease, color 180ms ease;
}
.tour-tab:hover { background: var(--green-light); color: var(--green-dark); }
.tour-tab.is-active { background: var(--green-dark); color: var(--white); }

.tour-panel { display: none; }
.tour-panel.is-active { display: grid; grid-template-columns: 1fr 1.2fr; gap: var(--sp-8); align-items: center; }
.tour-panel-text h3 { margin-bottom: var(--sp-3); }
.tour-panel-text p.body-lg { color: var(--text-secondary); margin-bottom: var(--sp-4); }
.tour-panel-list li { display: flex; align-items: center; gap: 10px; padding: 6px 0; font-size: 15px; }
.tour-panel-list .icon { color: var(--green); }
.tour-panel-link { display: inline-flex; align-items: center; gap: 6px; margin-top: var(--sp-4); font-weight: 600; color: var(--green); }

.tour-panel-media { border-radius: var(--radius-lg); aspect-ratio: 4/3; box-shadow: var(--shadow-md); }
.tour-panel-media img { object-fit: contain; }

@media (max-width: 1024px) {
  .tour { grid-template-columns: 1fr; }
  .tour-sidebar { flex-direction: column; gap: 6px; }
  .tour-tab { width: 100%; text-align: left; white-space: normal; }
  .tour-panel.is-active { grid-template-columns: 1fr; }
}

/* -------------------------------------------------------------------------
   18. Fluxo (timeline horizontal)
   ------------------------------------------------------------------------- */
.fluxo-head { text-align: center; margin-bottom: var(--sp-10); }
.fluxo-timeline { display: grid; grid-template-columns: repeat(9, 1fr); gap: var(--sp-2); }
.fluxo-step { text-align: center; position: relative; padding: 0 4px; }
.fluxo-step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green-dark);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-3);
  position: relative;
  z-index: 1;
}
.fluxo-step:first-child .fluxo-step-num { background: var(--green); color: var(--white); }
.fluxo-step::before {
  content: "";
  position: absolute;
  top: 20px;
  left: -50%;
  width: 100%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.fluxo-step:first-child::before { display: none; }
.fluxo-step p { font-size: 13px; font-weight: 600; }

@media (max-width: 1024px) {
  .fluxo-timeline { grid-template-columns: 1fr; gap: var(--sp-6); text-align: center; }
  .fluxo-step { display: flex; flex-direction: column; align-items: center; padding: 0; }
  .fluxo-step-num { margin: 0 auto var(--sp-3); flex-shrink: 0; }
  .fluxo-step::before { display: none; }
}

/* -------------------------------------------------------------------------
   19. Prova social 2 + depoimento
   ------------------------------------------------------------------------- */
.prova-social { background: var(--green-dark); color: var(--white); }
.prova-social-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: var(--sp-10); align-items: center; }
.prova-social-stats { display: flex; gap: var(--sp-10); flex-wrap: wrap; }
.prova-social-stat .stat-num { font-size: 40px; font-weight: 700; letter-spacing: -1px; color: var(--green-accent); }
.prova-social-stat .stat-label { color: #C9DED4; font-size: 14px; margin-top: 4px; }

.testimonial-card {
  width: 100%;
  max-width: 560px;
  margin-left: auto;
  padding: var(--sp-8);
  border-radius: var(--radius-lg);
  background: var(--white);
  color: var(--text);
  box-shadow: var(--shadow-lg);
}
.testimonial-quote { font-size: 18px; line-height: 1.6; margin-bottom: var(--sp-6); }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.testimonial-avatar .img-slot-fallback { border: none; background: var(--green-light); }
.testimonial-avatar .img-slot-fallback span { display: none; }
.testimonial-avatar .img-slot-fallback .icon { color: var(--green); }
.testimonial-name { font-weight: 700; }
.testimonial-role { font-size: 13px; color: var(--text-secondary); }

@media (max-width: 1024px) {
  .prova-social-grid { grid-template-columns: 1fr; }
  .testimonial-card { margin-left: 0; max-width: none; }
}
@media (max-width: 640px) {
  .prova-social-stats { justify-content: center; text-align: center; gap: var(--sp-6); }
}

/* -------------------------------------------------------------------------
   20. Planos
   ------------------------------------------------------------------------- */
.planos-head { text-align: center; margin-bottom: var(--sp-10); }
.planos-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)) 1fr; gap: var(--sp-6); align-items: stretch; }
.plano-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}
.plano-card--featured { border: 2px solid var(--green); position: relative; box-shadow: var(--shadow-md); }
.plano-badge {
  position: absolute;
  top: -14px;
  left: 28px;
  background: var(--green);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 999px;
}
.plano-name { font-weight: 700; font-size: 18px; }
.plano-desc { color: var(--text-secondary); font-size: 14px; margin: 6px 0 var(--sp-4); }
.plano-price { font-size: 36px; font-weight: 700; letter-spacing: -1px; }
.plano-price span { font-size: 14px; font-weight: 500; color: var(--text-secondary); }
.plano-features { margin: var(--sp-6) 0; display: flex; flex-direction: column; gap: 10px; flex-grow: 1; }
.plano-features li { display: flex; align-items: center; gap: 8px; font-size: 14px; }
.plano-features .icon { color: var(--green); width: 16px; height: 16px; }

.plano-benefits {
  background: var(--green-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
}
.plano-benefit { display: flex; align-items: flex-start; gap: 10px; }
.plano-benefit .icon { color: var(--green); margin-top: 2px; }
.plano-benefit strong { display: block; font-size: 14px; }
.plano-benefit span { font-size: 13px; color: var(--text-secondary); }

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

/* -------------------------------------------------------------------------
   21. FAQ
   ------------------------------------------------------------------------- */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4) var(--sp-6); align-items: start; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--white); overflow: hidden; }
.faq-question {
  width: 100%;
  min-height: 58px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  font-size: 15px;
  font-weight: 600;
  text-align: left;
}
.faq-question .icon { color: var(--green); transition: transform 180ms ease; flex-shrink: 0; }
.faq-item.is-open .faq-question .icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 220ms ease; }
.faq-answer-inner { padding: 0 20px 18px; color: var(--text-secondary); font-size: 14px; line-height: 1.6; }

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

/* -------------------------------------------------------------------------
   22. CTA final
   ------------------------------------------------------------------------- */
.cta-final { background: var(--green-dark); color: var(--white); text-align: center; }
.cta-final h2 { color: var(--white); max-width: 720px; margin: 0 auto var(--sp-4); }
.cta-final p { font-size: 18px; color: #D8E9E1; max-width: 560px; margin: 0 auto var(--sp-8); }

/* -------------------------------------------------------------------------
   23. Footer
   ------------------------------------------------------------------------- */
.site-footer { background: var(--green-deep); color: #B9CBC3; padding: var(--sp-16) 0 var(--sp-6); }
.footer-top { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: var(--sp-8); padding-bottom: var(--sp-12); border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand p { margin: var(--sp-3) 0 var(--sp-4); font-size: 14px; color: #9FB6AC; max-width: 260px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 180ms ease, border-color 180ms ease;
}
.footer-social a:hover { background: var(--green); border-color: var(--green); color: var(--white); }
.footer-social .icon { width: 16px; height: 16px; }

.footer-col h6 { color: var(--white); font-size: 14px; font-weight: 700; margin-bottom: var(--sp-4); }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a, .footer-col li { font-size: 14px; color: #9FB6AC; }
.footer-col a:hover { color: var(--white); }
.footer-contact li { display: flex; align-items: center; gap: 8px; }
.footer-contact .icon { width: 16px; height: 16px; color: var(--green-accent); }

.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: var(--sp-3); padding-top: var(--sp-6); font-size: 13px; color: #8FA69C; }
.footer-bottom a:hover { color: var(--white); }
.footer-legal { display: flex; gap: var(--sp-4); }

@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .footer-top { grid-template-columns: 1fr; text-align: center; }
  .footer-brand { display: flex; flex-direction: column; align-items: center; }
  .footer-social { justify-content: center; }
  .footer-col ul { align-items: center; }
  .footer-contact li { justify-content: center; }
  .footer-bottom { flex-direction: column; justify-content: center; text-align: center; }
  .footer-legal { justify-content: center; }
}

/* -------------------------------------------------------------------------
   24. Utilidades gerais
   ------------------------------------------------------------------------- */
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-2 { margin-top: var(--sp-2); }
.mt-4 { margin-top: var(--sp-4); }
.mb-2 { margin-bottom: var(--sp-2); }
.mb-3 { margin-bottom: var(--sp-3); }
.mb-4 { margin-bottom: var(--sp-4); }
.mb-6 { margin-bottom: var(--sp-6); }
.mb-10 { margin-bottom: var(--sp-10); }

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 90;
  transition: transform 180ms ease;
}
.whatsapp-float:hover { transform: translateY(-2px); }
.whatsapp-float .icon { width: 26px; height: 26px; }

/* -------------------------------------------------------------------------
   25. Modal de vídeo
   ------------------------------------------------------------------------- */
.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: var(--sp-6);
}
.video-modal.is-open { display: flex; }
.video-modal-backdrop { position: absolute; inset: 0; background: rgba(2, 47, 36, .85); }
.video-modal-body {
  position: relative;
  width: 100%;
  max-width: 960px;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.video-modal-body video { width: 100%; height: 100%; object-fit: cover; }
.video-modal-close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-modal-close:hover { background: rgba(255, 255, 255, .22); }

/* -------------------------------------------------------------------------
   26. Checkout de assinatura
   ------------------------------------------------------------------------- */
.checkout-back { display: inline-flex; align-items: center; gap: 6px; color: var(--text-secondary); font-weight: 600; font-size: 14px; margin-bottom: var(--sp-6); }
.checkout-back:hover { color: var(--green); }
.checkout-back .icon { width: 16px; height: 16px; }

.checkout-grid { display: grid; grid-template-columns: 320px 1fr; gap: var(--sp-8); align-items: start; }

.checkout-plan-card { position: sticky; top: 100px; }
.checkout-plan-card .checkout-plan-benefits { margin-top: var(--sp-4); padding: var(--sp-4); gap: var(--sp-3); }

.checkout-form-card h2 { margin-bottom: 4px; }
.checkout-form-card p.body-lg { color: var(--text-secondary); margin-bottom: var(--sp-6); }

.checkout-field { margin-bottom: var(--sp-4); }
.checkout-field label { display: block; font-size: 13px; font-weight: 600; color: var(--green-dark); margin-bottom: 6px; }
.checkout-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }

.checkout-note { display: flex; align-items: flex-start; gap: 8px; margin-top: var(--sp-4); font-size: 13px; color: var(--text-secondary); }
.checkout-note .icon { color: var(--green); width: 16px; height: 16px; flex-shrink: 0; margin-top: 1px; }

@media (max-width: 860px) {
  .checkout-grid { grid-template-columns: 1fr; }
  .checkout-plan-card { position: static; }
  .checkout-field-row { grid-template-columns: 1fr; }
}

.retorno-card { max-width: 520px; margin: 0 auto; text-align: center; padding: var(--sp-10) var(--sp-6); }
.retorno-icon { width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto var(--sp-6); }
.retorno-icon .icon { width: 32px; height: 32px; }
.retorno-icon--ok { background: var(--green-light); color: var(--green); }
.retorno-icon--pending { background: #FFF4DE; color: #B7791F; }
.retorno-card h1 { margin-bottom: var(--sp-3); }
.retorno-card p { color: var(--text-secondary); margin-bottom: var(--sp-6); }
