/* ==================== CONFIGURAÇÃO GERAL ==================== */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background: #f2eddd;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  font-family: "DM Sans", Arial, sans-serif;
  overflow-x: hidden; /* Evita quebra lateral por causa dos badges absolutos */
}

/* ==================== SEÇÃO 1: HERO / APRESENTAÇÃO ==================== */
.selva-hero-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(330px, 28vw, 430px);
  background: #fffdf5; /* Fundo off-white macio */
  border-radius: 0;
  border: none;
  box-shadow: none;
  max-width: 100%;
  width: 100%;
  margin: 0;
  overflow: hidden;
  align-items: stretch;
  min-height: clamp(600px, 52vw, 760px);
}

/* 1. Banner Verde (Esquerda) */
.selva-hero-banner {
  grid-column: 1;
  background: #042918;
  color: #ffffff;
  padding: clamp(62px, 6vw, 88px) 112px clamp(60px, 5.4vw, 80px) 48px;
  padding-left: clamp(48px, calc((100vw - 1280px) / 2 + 48px), 96px);
  position: relative;
  border-radius: 0 68px 210px 0; /* Curva folha */
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
  box-shadow: 15px 0 30px rgba(4, 41, 24, 0.15);
  margin-right: -88px;
  min-width: 0;
}

.selva-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #124d2d;
  color: #39db80; /* verde claro destacado */
  font-size: clamp(13px, 1.2vw, 16px);
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 10px 18px;
  border-radius: 8px;
  align-self: flex-start;
}

.selva-leaf-icon {
  stroke: #39db80;
}

.selva-hero-banner h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(56px, 6vw, 92px);
  font-weight: 900;
  line-height: 0.92;
  margin: 34px 0 26px 0;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  max-width: 920px;
}

.selva-text-highlight {
  color: #39db80; /* Verde oliva claro da imagem */
}

.selva-hero-desc {
  font-size: clamp(20px, 2.1vw, 27px);
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.85);
  max-width: 860px;
  margin: 0 0 48px 0;
  font-weight: 500;
}

.selva-desc-highlight {
  color: #39db80;
  font-weight: 700;
}

/* CTAs e Botoes */
.selva-hero-actions-wrapper {
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.selva-hero-buttons {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.selva-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  border-radius: 16px;
  padding: 18px 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  font-family: "DM Sans", Arial, sans-serif;
}

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

.selva-btn-primary {
  background: #00a859; /* Verde botão da imagem */
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 168, 89, 0.25);
}

.selva-btn-primary:hover {
  background: #00be64;
  box-shadow: 0 10px 24px rgba(0, 168, 89, 0.35);
}

.selva-btn-outline {
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  color: #ffffff;
}

.selva-btn-outline:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
}

.selva-btn-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.1;
}

.selva-btn-text span {
  font-size: 14px;
  font-weight: 600;
  opacity: 0.85;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.selva-btn-text strong {
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.selva-btn-arrow {
  font-size: 24px;
  font-weight: 700;
  margin-left: 4px;
}

/* Checklist Hero */
.selva-hero-checklist {
  display: flex;
  align-items: center;
  gap: 34px;
  flex-wrap: wrap;
}

.selva-check-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}

.selva-check-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(57, 219, 128, 0.2);
  color: #39db80;
  display: grid;
  place-items: center;
  font-size: 15px;
  font-weight: 900;
}

/* 2. Bloco do Mockup do Celular (Direita) */
.selva-hero-mockup-container {
  grid-column: 2;
  padding: clamp(40px, 5vw, 70px) clamp(28px, calc((100vw - 1280px) / 2 + 36px), 92px) clamp(40px, 5vw, 70px) 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  overflow: visible;
  z-index: 3;
  min-width: 0;
}

.selva-phone-mockup {
  width: clamp(310px, 23vw, 380px);
  aspect-ratio: 275 / 485;
  height: auto;
  background: #000000;
  border-radius: 36px;
  padding: 10px;
  box-shadow: -15px 20px 40px rgba(0, 0, 0, 0.08), 0 5px 15px rgba(26, 61, 43, 0.05);
  border: 4px solid #1f1f1f;
  position: relative;
  display: flex;
  flex-direction: column;
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.selva-phone-mockup:hover {
  transform: translateY(-5px);
}

.selva-phone-notch {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 20px;
  background: #000000;
  border-radius: 10px;
  z-index: 10;
}

.selva-phone-screen {
  flex: 1;
  background: #efeae2; /* Fundo do WhatsApp */
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}

.selva-phone-statusbar {
  height: 30px;
  padding: 0 16px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-size: 10px;
  font-weight: 700;
  color: #ffffff;
  background: #082f1d;
  z-index: 9;
}

.selva-statusbar-icons {
  display: flex;
  gap: 4px;
}

/* WhatsApp Header */
.selva-chat-header {
  height: 52px;
  background: #082f1d;
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #ffffff;
  z-index: 8;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.selva-chat-header-left {
  display: flex;
  align-items: center;
  gap: 6px;
}

.selva-chat-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #107c41;
  color: #ffffff;
  display: grid;
  place-items: center;
  font-weight: bold;
  font-size: 14px;
}

.selva-chat-info {
  display: flex;
  flex-direction: column;
}

.selva-chat-name {
  font-size: 12.5px;
  font-weight: 700;
}

.selva-chat-status {
  font-size: 10px;
  color: #39db80;
  font-weight: 500;
}

.selva-chat-header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Corpo do Chat / Mensagens */
.selva-chat-body {
  flex: 1;
  padding: 16px 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  overflow: hidden;
}

.selva-chat-bubble {
  max-width: 85%;
  padding: 8px 10px;
  font-size: 12.5px;
  line-height: 1.35;
  position: relative;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
}

.selva-chat-bubble p {
  margin: 0;
  word-wrap: break-word;
}

.selva-chat-bubble.left {
  background: #ffffff;
  color: #111b21;
  border-radius: 0 10px 10px 10px;
  align-self: flex-start;
}

.selva-chat-bubble.right {
  background: #d9fdd3;
  color: #111b21;
  border-radius: 10px 0 10px 10px;
  align-self: flex-end;
}

/* Alerta Explicativo WhatsApp */
.selva-chat-bubble.alert {
  background: #fdf5e8;
  color: #63431f;
  border: 1px dashed rgba(230, 126, 34, 0.4);
  border-radius: 10px;
  align-self: center;
  max-width: 95%;
  text-align: center;
  margin-top: 4px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.selva-chat-bubble .time {
  font-size: 9px;
  color: #8696a0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 2px;
  margin-top: 4px;
}

.selva-chat-bubble.right .time {
  color: #667781;
}

.selva-chat-bubble .checks {
  color: #53bdeb; /* azul lido clássico */
  font-weight: 700;
}

/* Rodapé do WhatsApp */
.selva-chat-footer {
  padding: 6px 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: #efeae2;
}

.selva-chat-input-bar {
  flex: 1;
  background: #ffffff;
  border-radius: 18px;
  height: 34px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.selva-chat-emoji-btn {
  font-size: 16px;
  color: #8696a0;
  user-select: none;
}

.selva-chat-placeholder {
  flex: 1;
  font-size: 13px;
  color: #8696a0;
}

.selva-chat-input-icons {
  display: flex;
  gap: 8px;
}

.selva-chat-mic-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #00a884;
  display: grid;
  place-items: center;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
  flex-shrink: 0;
}

/* ==================== SEÇÃO 2: O PROBLEMA REAL ==================== */
.selva-problem-section {
  width: 100%;
  max-width: 100%;
  margin: -96px 0 0;
  padding: 112px clamp(16px, calc((100% - 1200px) / 2), 50%) 64px;
  background: #fdf5f2;
  box-sizing: border-box;
}

.selva-problem-container {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  width: 100%;
  box-sizing: border-box;
}

.selva-problem-badge {
  display: inline-flex;
  align-items: center;
  background: #9d291e; /* Vermelho escuro */
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 10px 16px;
  border-radius: 8px;
  margin-bottom: 24px;
}

.selva-problem-container h2 {
  margin: 0 0 16px 0;
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1.05;
  font-weight: 850;
  letter-spacing: -0.03em;
  color: #2e0e0b;
}

.selva-problem-title-highlight {
  color: #9d291e; /* Destaque vermelho em "virou preço" */
}

.selva-problem-subtitle {
  margin: 0 0 40px 0;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.35;
  font-weight: 700;
  color: #7d2921;
}

/* Grade de Conteúdo */
.selva-problem-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  margin-bottom: 32px;
  align-items: stretch;
}

/* Card da Imagem de Dor */
.selva-problem-image-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 380px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.selva-problem-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.selva-image-overlay-text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(46, 14, 11, 0.9);
  color: #ffffff;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* Lista de Motivos */
.selva-reasons-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: space-between;
}

.selva-reason-card {
  background: #ffffff;
  border: 1px solid rgba(157, 41, 30, 0.08);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 4px 12px rgba(157, 41, 30, 0.02);
  display: flex;
  align-items: center;
  gap: 20px;
}

.selva-reason-icon-circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #fdf5f2;
  color: #9d291e;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.selva-reason-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.selva-reason-badge {
  font-size: 10px;
  font-weight: 800;
  color: #9d291e;
  background: #fbeee9;
  padding: 4px 8px;
  border-radius: 4px;
  align-self: flex-start;
  letter-spacing: 0.03em;
}

.selva-reason-card h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  color: #2e0e0b;
  letter-spacing: -0.02em;
}

.selva-reason-card p {
  margin: 0;
  font-size: 14.5px;
  color: #7d2921;
  font-weight: 600;
}

/* Rodapé do Problema - Fórmula Visual */
.selva-problem-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 32px;
}

.selva-footer-col {
  flex: 1;
  padding: 16px 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 6px 16px rgba(157, 41, 30, 0.02);
  min-height: 90px;
}

.selva-footer-col.white-bg {
  background: #ffffff;
  border-left: 4px solid #2e0e0b;
}

.selva-footer-col.red-bg {
  background: #9d291e;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 90px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(157, 41, 30, 0.2);
}

.selva-footer-col-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.selva-footer-col-text .col-title {
  font-size: 11px;
  font-weight: 700;
  color: #888;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.selva-footer-col-text strong {
  font-size: 28px;
  font-weight: 900;
  color: #2e0e0b;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 2px;
}

.selva-footer-col.red-bg strong {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

.selva-footer-col-text .col-desc {
  font-size: 11px;
  font-weight: 800;
  color: #7d2921;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Ícones de círculo no rodapé */
.selva-footer-circle-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.selva-footer-circle-icon.green-bg {
  background: #e9f5ed;
  color: #0b6b35;
}

.selva-footer-circle-icon.green-bg svg {
  stroke: #0b6b35;
}

.selva-footer-circle-icon.red-bg {
  background: #fbeee9;
  color: #9d291e;
}

.selva-footer-circle-icon.red-bg svg {
  stroke: #9d291e;
}

/* Símbolos operadores */
.selva-operator {
  font-size: 24px;
  font-weight: 700;
  color: #7d2921;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(157, 41, 30, 0.15);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  user-select: none;
}

/* Barra inferior de solução da Seção 2 */
.selva-problem-solution-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f5efe6;
  border-radius: 16px;
  padding: 16px 24px;
  gap: 20px;
  border: 1px solid rgba(11, 107, 53, 0.08);
}

.selva-solution-bar-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}

.selva-solution-bar-icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.selva-solution-bar-text {
  font-size: 14.5px;
  line-height: 1.45;
  color: #1a3d2b;
  font-weight: 500;
  margin: 0;
}

.selva-red-strong {
  color: #9d291e;
  font-weight: 700;
}

.selva-btn-solution {
  background: #0f4c3a;
  color: #ffffff;
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 13.5px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: background 0.2s ease;
  white-space: nowrap;
}

.selva-btn-solution:hover {
  background: #0b3b2c;
}

/* ==================== SEÇÃO 3: COMPARATIVO / PROPOSTA REAL ==================== */
.selva-comparison-section {
  display: block;
  background: #fffdf5;
  border-radius: 0;
  border: none;
  box-shadow: none;
  max-width: 100%;
  width: 100%;
  margin: 0;
  position: relative;
  align-items: stretch;
}

/* Folhas decorativas flutuantes */
.selva-leaf-decoration {
  position: absolute;
  left: -40px;
  top: 140px;
  z-index: 5;
  pointer-events: none;
  filter: drop-shadow(4px 4px 8px rgba(27, 67, 50, 0.15));
}

.selva-comparison-left {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 48px 64px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 2;
  position: relative;
}

.selva-comparison-left h2 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  font-weight: 850;
  letter-spacing: -0.02em;
  color: #062b19;
  margin: 20px 0 16px 0;
}

.selva-title-underline-svg {
  position: absolute;
  left: 0;
  bottom: -6px;
}

.selva-comparison-desc {
  font-size: 17px;
  line-height: 1.45;
  color: #3d5246;
  margin: 0 0 28px 0;
  font-weight: 500;
  max-width: 720px;
}

/* Rodapé de Selos */
.selva-comparison-footer-badges {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 22px;
}

.selva-footer-badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 700;
  color: #1a3d2b;
}

.selva-footer-badge-item .badge-icon {
  color: #0b6b35;
  font-weight: 800;
}

.selva-device-stage {
  width: 100%;
  max-width: 1100px;
  background: linear-gradient(180deg, #fffdf7 0%, #f7f2e6 100%);
  border: 1px solid rgba(11, 107, 53, 0.1);
  border-radius: 28px;
  box-shadow: 0 28px 60px rgba(37, 54, 41, 0.12);
  padding: 28px 30px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 72px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
}

.selva-device-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 8px 10px 12px;
  border-radius: 24px;
}

.selva-device-side-before {
  background: linear-gradient(180deg, rgba(185, 28, 28, 0.06) 0%, rgba(185, 28, 28, 0.02) 100%);
}

.selva-device-side-after {
  background: linear-gradient(180deg, rgba(11, 107, 53, 0.05) 0%, rgba(11, 107, 53, 0.015) 100%);
}

.selva-device-asset {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  width: 100%;
  position: relative;
}

.selva-device-asset img {
  display: block;
  width: 100%;
  height: auto;
}

.selva-device-asset-phone img {
  width: auto;
  max-width: min(100%, 360px);
  max-height: 690px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 22px 36px rgba(15, 17, 18, 0.16));
}

.selva-device-asset-proposal {
  min-height: 0;
}

.selva-device-asset-proposal-image {
  width: auto;
  max-width: 100%;
  max-height: 690px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 26px 44px rgba(15, 17, 18, 0.18));
}

.selva-device-arrow {
  width: 64px;
  height: 64px;
  align-self: center;
  justify-self: center;
  filter: drop-shadow(0 10px 22px rgba(11, 107, 53, 0.16));
}

.selva-device-arrow svg {
  width: 100%;
  height: 100%;
}

.selva-device-notes {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 320px;
}

.selva-device-notes li {
  position: relative;
  padding-left: 22px;
  color: #355044;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 600;
}

.selva-device-notes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #84c26d;
  box-shadow: 0 0 0 4px rgba(132, 194, 109, 0.15);
}

.selva-device-notes-before li::before {
  background: #dc2626;
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.14);
}

.selva-device-notes-before li {
  color: #7f1d1d;
}

.selva-device-label {
  background: #244b39;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 11px 18px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-align: center;
  max-width: 280px;
}

.selva-device-side-before .selva-device-label {
  background: #8f1d1d;
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 10px 24px rgba(143, 29, 29, 0.18);
}

.selva-device-side-after .selva-device-label {
  box-shadow: 0 10px 24px rgba(36, 75, 57, 0.15);
}

.selva-tablet-mockup {
  width: 100%;
  max-width: 480px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  border: 8px solid #234c37;
  display: flex;
  flex-direction: column;
}

.selva-proposal-document {
  padding: 24px 20px;
  background: #ffffff;
  max-height: 520px;
  overflow-y: auto;
  font-size: 11px;
  line-height: 1.4;
  color: #333333;
}

.selva-proposal-document::-webkit-scrollbar {
  width: 6px;
}
.selva-proposal-document::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}
.selva-proposal-document::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

/* Documento Cabeçalho */
.selva-doc-logo-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.selva-doc-logo {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #0b6b35;
  color: #ffffff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 800;
}

.selva-doc-type {
  font-size: 9px;
  font-weight: 800;
  color: #0b6b35;
  letter-spacing: 0.05em;
}

.selva-doc-client-name {
  font-size: 26px;
  font-weight: 900;
  margin: 0 0 6px 0;
  color: #000000;
}

.selva-doc-badge {
  display: inline-block;
  background: #fff8e6;
  border: 1px solid #ffe8cc;
  color: #d68c45;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 9px;
  font-weight: 700;
  margin-bottom: 12px;
}

.selva-doc-author {
  margin: 0 0 16px 0;
  font-size: 11px;
  color: #666;
}

.selva-doc-author strong {
  color: #111;
}

/* Metadados */
.selva-doc-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  background: #fcfbfa;
  border: 1px solid rgba(0,0,0,0.05);
  padding: 8px 12px;
  border-radius: 6px;
  text-align: center;
}

.selva-doc-meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.selva-doc-meta-item:not(:last-child) {
  border-right: 1px solid rgba(0,0,0,0.08);
}

.selva-doc-meta-item span {
  font-size: 8px;
  color: #888;
  text-transform: uppercase;
}

.selva-doc-meta-item strong {
  font-size: 10px;
  color: #111;
}

.selva-doc-divider {
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  margin: 16px 0;
}

/* Seções da Proposta */
.selva-doc-section-title {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #0b6b35;
  margin-bottom: 8px;
}

.selva-doc-section-title h4 {
  margin: 0;
  font-size: 12px;
  font-weight: 800;
}

.selva-doc-section p {
  margin: 0 0 8px 0;
  color: #555;
  font-size: 10.5px;
}

/* Bloco Autor com Foto */
.selva-doc-author-block {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.selva-doc-author-img {
  width: 68px;
  height: 68px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid rgba(0,0,0,0.1);
}

.selva-doc-author-text {
  flex: 1;
}

.selva-doc-author-text p {
  margin: 0 0 6px 0;
}

.selva-doc-author-text .signature {
  font-family: 'Caveat', cursive;
  font-size: 16px;
  color: #0b6b35;
  font-weight: 700;
  margin-top: 8px;
}

/* Rodapé Tablet */
.selva-tablet-footer {
  background: #122c1e;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.selva-tablet-footer-icon {
  font-size: 14px;
}

.selva-tablet-footer p {
  margin: 0;
  font-size: 11px;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
}

/* ==================== SEÇÃO 4: DETALHES DO EXEMPLO REAL ==================== */
.selva-proposal-details-section {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 56px clamp(16px, calc((100% - 1200px) / 2), 50%);
  background: #fdfbf7;
  border-radius: 0;
  border: none;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}

.selva-details-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e5f1e4;
  color: #1a3d2b;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 10px 16px;
  border-radius: 8px;
  margin-bottom: 24px;
}

.selva-proposal-details-section h2 {
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 850;
  color: #062b19;
  margin: 0 0 16px 0;
  letter-spacing: -0.03em;
  text-align: center;
  position: relative;
}

.selva-details-underline-svg {
  position: absolute;
  left: 0;
  bottom: -6px;
}

.selva-details-subtitle {
  font-size: clamp(17px, 1.8vw, 21px);
  color: #3d5246;
  text-align: center;
  max-width: 820px;
  margin: 0 0 48px 0;
  line-height: 1.4;
  font-weight: 500;
}

/* Grade de Páginas */
.selva-details-pages-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  width: 100%;
  margin-bottom: 48px;
}

.selva-detail-page-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Folhas de Proposta A4 */
.selva-detail-page-sheet {
  background: #ffffff;
  border: 1px solid rgba(26, 61, 43, 0.1);
  border-radius: 12px;
  padding: 24px 20px;
  box-shadow: 0 8px 24px rgba(26, 61, 43, 0.03);
  flex: 1;
  display: flex;
  flex-direction: column;
  font-size: 11px;
  line-height: 1.45;
  color: #444;
}

.selva-page-section h4 {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
  color: #062b19;
}

.selva-page-item-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.selva-page-number-badge {
  width: 20px;
  height: 20px;
  background: #000;
  color: #fff;
  border-radius: 4px;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: bold;
}

.selva-client-highlight-text {
  font-weight: 700;
  color: #062b19;
  margin-bottom: 8px;
}

.selva-page-section p {
  margin: 0 0 10px 0;
}

.selva-page-section p:last-child {
  margin-bottom: 0;
}

.selva-page-divider {
  border: none;
  border-top: 1px dashed rgba(26, 61, 43, 0.12);
  margin: 20px 0;
  width: 100%;
}

/* Caixa reflexiva (Vale a pena parar e pensar) */
.selva-page-think-box {
  background: #0f271a;
  border-radius: 10px;
  padding: 16px;
  color: #ffffff;
  margin-top: auto;
}

.selva-think-box-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.selva-think-box-header h5 {
  margin: 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #39db80;
}

.selva-think-box-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.selva-think-box-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 10.5px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.9);
}

.selva-think-box-list li .think-check {
  color: #39db80;
  font-weight: 900;
  font-size: 12px;
}

/* Indicadores inferiores fora da folha */
.selva-page-indicator-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #f1f8f4;
  border: 1.5px solid rgba(11, 107, 53, 0.12);
  border-radius: 12px;
  padding: 12px;
  width: 100%;
}

.selva-page-indicator-badge .indicator-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #0b6b35;
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: bold;
}

.selva-page-indicator-badge strong {
  font-size: 14px;
  color: #0b6b35;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* Tabela de Atendimento */
.selva-page-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px;
  font-size: 10.5px;
}

.selva-page-table tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.selva-page-table tr:last-child {
  border-bottom: none;
}

.selva-page-table td {
  padding: 8px 6px;
}

.selva-page-table td.table-label {
  font-weight: 800;
  color: #555;
  width: 38%;
  background: #fcfbf9;
}

.selva-page-table td.table-value {
  color: #111;
  font-weight: 500;
}

.selva-page-section .section-desc-light {
  font-size: 10px;
  color: #666;
  margin-bottom: 12px;
}

/* Antes e Depois Grid */
.selva-before-after-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.before-after-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  justify-content: center;
}

.ba-col {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
}

.ba-col .ba-label {
  font-size: 8px;
  font-weight: 800;
  color: #888;
  letter-spacing: 0.02em;
  text-align: left;
}

.ba-col img {
  width: 100%;
  max-width: 110px; /* Mantém as imagens compactas */
  height: 75px; /* Altura ideal */
  object-fit: cover;
  border-radius: 5px;
  border: 1px solid rgba(0,0,0,0.06);
  display: block;
  margin: 0 auto;
}

/* Painel de Preço/Investimento */
.selva-page-price-box {
  background: #fdfcf7;
  border: 1.5px solid #e1dbcc;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  margin-top: 8px;
}

.price-original {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #888;
  font-size: 12px;
  text-decoration: line-through;
}

.price-discount-badge {
  font-size: 9px;
  background: #e9f5ed;
  color: #0b6b35;
  padding: 2px 6px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
}

.price-final {
  font-size: 32px;
  font-weight: 900;
  color: #000;
  line-height: 1.1;
  margin: 6px 0 12px 0;
}

.price-label {
  font-size: 9px;
  font-weight: 800;
  color: #888;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 8px;
}

.price-included-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.price-included-list li {
  font-size: 11px;
  font-weight: 600;
  color: #333;
  display: flex;
  align-items: center;
  gap: 6px;
}

.price-check {
  color: #0b6b35;
  font-weight: 800;
}

.price-box-divider {
  border: none;
  border-top: 1px dotted #e1dbcc;
  margin: 12px 0;
}

.price-validity {
  font-size: 9px;
  color: #888;
}

/* Como funciona a Contratação */
.selva-page-contracting-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contracting-steps-list {
  margin: 0;
  padding-left: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contracting-steps-list li {
  font-weight: 600;
}

.contracting-payment {
  background: #fbfbf9;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 10px;
}

.contracting-payment span {
  color: #777;
  display: block;
  margin-bottom: 2px;
}

.contracting-payment strong {
  color: #111;
  font-weight: 700;
}

.selva-page-section .text-small {
  font-size: 10px;
  color: #666;
  margin: 0;
}

/* Barra inferior de Ícones/Benefícios */
.selva-details-bottom-bar {
  display: flex;
  justify-content: space-between;
  width: 100%;
  border-top: 1px solid rgba(26, 61, 43, 0.08);
  padding-top: 32px;
  gap: 20px;
}

.selva-bottom-bar-item {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.bottom-bar-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f1f8f4;
  color: #0b6b35;
  display: grid;
  place-items: center;
  font-size: 18px;
  flex-shrink: 0;
}

.bottom-bar-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.bottom-bar-text strong {
  font-size: 14px;
  font-weight: 800;
  color: #062b19;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.bottom-bar-text span {
  font-size: 12px;
  color: #3d5246;
  line-height: 1.35;
  font-weight: 500;
}

@media (min-width: 1025px) {
  .selva-details-pages-grid {
    align-items: stretch;
  }

  .selva-detail-page-column {
    align-self: stretch;
  }

  .selva-detail-page-sheet {
    flex: 1;
  }

  .selva-page-think-box {
    margin-top: 20px;
  }

  .selva-detail-page-column:nth-child(1) .selva-page-think-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 300px;
  }

  .selva-detail-page-column:nth-child(2) .selva-page-section:last-child {
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .selva-detail-page-column:nth-child(2) .selva-before-after-grid {
    flex: 1;
    justify-content: space-between;
    gap: 18px;
  }

  .selva-detail-page-column:nth-child(2) .before-after-row {
    gap: 16px;
  }

  .selva-detail-page-column:nth-child(2) .ba-col img {
    max-width: 150px;
    height: 104px;
  }
}

/* ==================== SEÇÃO 5: DETALHES DA PROPOSTA ==================== */
.selva-proposal-section {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 56px clamp(16px, calc((100% - 1200px) / 2), 50%);
  background:
    radial-gradient(circle at top left, rgba(212, 233, 198, 0.25), transparent 34%),
    linear-gradient(180deg, #fffdf5 0%, #fbf7ea 100%);
  font-family: "DM Sans", Arial, sans-serif;
  color: #082f1d;
  box-sizing: border-box;
}

.selva-proposal-container {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  width: 100%;
  box-sizing: border-box;
}

.selva-section-tag {
  display: inline-flex;
  align-items: center;
  background: #e5f1e4;
  color: #1a3d2b;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 10px 16px;
  border-radius: 8px;
  margin-bottom: 24px;
}

.selva-proposal-header {
  margin-bottom: 48px;
}

.selva-header-main-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  position: relative;
}

.selva-header-main-row h2 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: #062b19;
}

/* Elemento manuscrito flutuante do cabeçalho */
.selva-handwritten-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Caveat', cursive;
  font-size: 28px;
  color: #0b6b35;
  line-height: 1.05;
  transform: rotate(-3deg) translateY(10px);
  white-space: nowrap;
  user-select: none;
}

.selva-handwritten-arrow {
  transform: translateY(-4px);
}

.selva-subtitle {
  margin: 16px 0 0 0;
  font-size: clamp(18px, 1.8vw, 22px);
  color: #1a3d2b;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.selva-sim-highlight {
  color: #0b6b35;
  font-weight: 800;
}

/* Grade de features 4x2 */
.selva-features-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

/* Estilo do Card Comum */
.selva-feature-card {
  position: relative;
  min-height: 230px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(26, 61, 43, 0.12);
  border-radius: 18px;
  padding: 28px 24px;
  box-shadow:
    0 8px 22px rgba(26, 61, 43, 0.03),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s ease, border-color 0.2s ease;
}

.selva-feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(11, 107, 53, 0.25);
  box-shadow: 0 16px 34px rgba(26, 61, 43, 0.08);
}

/* Círculo do Ícone */
.selva-icon-circle {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #e9f5ed;
  color: #0b6b35;
  margin-bottom: 24px;
}

.selva-icon-circle svg {
  width: 30px;
  height: 30px;
  stroke: #0b6b35;
}

/* Número do Card no topo direito */
.selva-card-number {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #e9f5ed;
  color: #0b6b35;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 800;
}

.selva-feature-card h3 {
  margin: 0 0 12px;
  color: #062b19;
  font-size: 21px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.selva-feature-card p {
  margin: 0;
  color: #3d5246;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 500;
}

/* Estilo do Card Destaque (Organismo/Pincelada) */
.selva-highlight-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 230px;
  padding: 24px;
}

.selva-blob-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.selva-blob-bg svg {
  width: 110%;
  height: 110%;
}

.selva-highlight-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.selva-shield-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #0b6b35;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 12px rgba(11, 107, 53, 0.15);
}

.selva-highlight-content p {
  margin: 0;
  color: #0b6b35;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

/* Sublinhado manuscrito */
.selva-underline-container {
  position: relative;
  display: inline-block;
}

.selva-underline-svg {
  position: absolute;
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%);
}

/* ==================== SEÇÃO 2: PROVA SOCIAL CURTA ==================== */
.selva-proof-section,
.selva-steps-section,
.selva-audience-section,
.selva-value-anchor-section,
.selva-serious-section,
.selva-authority-section,
.selva-footer-section {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 64px clamp(16px, calc((100% - 1200px) / 2), 50%);
  box-sizing: border-box;
  font-family: "DM Sans", Arial, sans-serif;
}

.selva-proof-section {
  background: #fffdf5;
}

.selva-proof-container,
.selva-steps-container,
.selva-audience-container,
.selva-value-anchor-container,
.selva-serious-container,
.selva-authority-container,
.selva-footer-container {
  width: 100%;
  box-sizing: border-box;
}

.selva-proof-container,
.selva-steps-container,
.selva-audience-container,
.selva-value-anchor-container,
.selva-serious-container,
.selva-authority-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.selva-proof-container h2,
.selva-steps-container h2,
.selva-audience-container h2,
.selva-value-anchor-container h2,
.selva-serious-container h2,
.selva-authority-container h2 {
  max-width: 920px;
  margin: 18px auto 16px;
  color: #042918;
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}

.selva-proof-subtitle,
.selva-steps-subtitle {
  max-width: 760px;
  margin: 0 auto 36px;
  color: #455c4f;
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.45;
  font-weight: 650;
}

.selva-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  width: 100%;
}

.selva-proof-card {
  display: flex;
  min-height: 235px;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 14px;
  background: #ffffff;
  border: 1px solid #dbe8df;
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 14px 30px rgba(4, 41, 24, 0.07);
}

.selva-proof-card-featured {
  background: #042918;
  border-color: #0b6b35;
  color: #ffffff;
}

.selva-proof-label {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  background: #e9f5ed;
  color: #0b6b35;
  padding: 7px 11px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.selva-proof-card-featured .selva-proof-label {
  background: rgba(57, 219, 128, .15);
  color: #39db80;
}

.selva-proof-card strong {
  color: #042918;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 950;
  line-height: .9;
  letter-spacing: -.04em;
}

.selva-proof-card-featured strong {
  color: #39db80;
}

.selva-proof-card p {
  margin: auto 0 0;
  color: #40584b;
  font-size: 16px;
  line-height: 1.42;
  font-weight: 750;
}

.selva-proof-card-featured p {
  color: rgba(255,255,255,.86);
}

.selva-proof-note {
  max-width: 800px;
  margin: 24px auto 0;
  color: #6d7e73;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 650;
}

/* ==================== SEÇÃO 5: PASSOS ==================== */
.selva-steps-section {
  background: linear-gradient(180deg, #fbf7ea 0%, #fffdf5 100%);
}

.selva-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  width: 100%;
  counter-reset: steps;
}

.selva-step-card {
  position: relative;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  background: #ffffff;
  border: 1px solid rgba(11, 107, 53, .15);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 12px 28px rgba(4, 41, 24, .06);
}

.selva-step-card:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  color: #0b6b35;
  font-size: 30px;
  font-weight: 900;
  z-index: 2;
}

.selva-step-number {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #0b6b35;
  color: #ffffff;
  font-size: 18px;
  font-weight: 950;
  margin-bottom: 22px;
}

.selva-step-card h3 {
  margin: 0 0 10px;
  color: #042918;
  font-size: 28px;
  line-height: 1;
  font-weight: 950;
}

.selva-step-card p {
  margin: 0;
  color: #455c4f;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 650;
}

/* ==================== SEÇÕES 7 E 8: IDENTIFICAÇÃO / ANCORAGEM ==================== */
.selva-audience-section {
  background: #fffdf5;
}

.selva-audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
  margin-top: 28px;
}

.selva-audience-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #ffffff;
  border: 1px solid #dbe8df;
  border-radius: 16px;
  padding: 22px;
  text-align: left;
  box-shadow: 0 10px 24px rgba(4, 41, 24, .05);
}

.selva-audience-item span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 50%;
  background: #e9f5ed;
  color: #0b6b35;
  font-size: 18px;
  font-weight: 950;
}

.selva-audience-item p {
  margin: 0;
  color: #243a2e;
  font-size: 17px;
  line-height: 1.4;
  font-weight: 750;
}

.selva-value-anchor-section {
  background: #f1eadf;
}

.selva-value-list {
  width: 100%;
  max-width: 820px;
  display: flex;
  flex-direction: column;
  background: #fffdf5;
  border: 1px solid #dccdb8;
  border-radius: 18px;
  overflow: hidden;
  margin-top: 28px;
  box-shadow: 0 14px 30px rgba(91, 59, 30, .07);
}

.selva-value-row,
.selva-value-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
}

.selva-value-row {
  padding: 18px 24px;
  border-bottom: 1px dashed #dccdb8;
}

.selva-value-row span {
  color: #243a2e;
  font-size: 16px;
  font-weight: 750;
}

.selva-value-row strong {
  color: #7b3028;
  font-size: 18px;
  font-weight: 900;
  text-decoration: line-through;
}

.selva-value-total {
  width: 100%;
  max-width: 820px;
  margin-top: 16px;
  padding: 22px 26px;
  border-radius: 18px;
  background: #042918;
  color: #ffffff;
  box-sizing: border-box;
}

.selva-value-total span {
  font-size: 17px;
  font-weight: 800;
}

.selva-value-total strong {
  color: #39db80;
  font-size: clamp(38px, 5vw, 58px);
  line-height: .9;
  font-weight: 950;
}

/* ==================== SEÇÕES 11 E 12: CONVERSA / AUTORIDADE ==================== */
.selva-serious-section {
  background: #fff7f3;
}

.selva-serious-container,
.selva-authority-container {
  max-width: 940px;
  margin: 0 auto;
}

.selva-serious-container p,
.selva-authority-container p {
  max-width: 820px;
  margin: 0 auto 16px;
  color: #3f5248;
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.5;
  font-weight: 650;
}

.selva-authority-section {
  background: #fffdf5;
}

.selva-authority-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.selva-authority-points span {
  display: inline-flex;
  border-radius: 999px;
  background: #e9f5ed;
  color: #0b6b35;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.selva-footer-section {
  background: #042918;
  color: rgba(255,255,255,.78);
  padding-top: 34px;
  padding-bottom: 34px;
}

.selva-footer-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 22px;
  text-align: center;
  font-size: 13px;
  font-weight: 650;
}

.selva-footer-container strong {
  color: #39db80;
  font-size: 15px;
  font-weight: 900;
}



/* ==================== SEÇÃO 7: OFERTA COMERCIAL - FASE FUNDADORA ==================== */
.selva-offer-section {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 72px clamp(16px, calc((100% - 1200px) / 2), 50%);
  background: linear-gradient(135deg, #04160b 0%, #072412 100%);
  border-radius: 0;
  border: none;
  box-shadow: none;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

/* Efeito radial luminoso verde ao fundo */
.selva-offer-light-effect {
  position: absolute;
  top: -150px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(57, 219, 128, 0.09) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
  z-index: 1;
}

/* Folhagem SVG decorativa */
.selva-offer-leaves-decor {
  position: absolute;
  bottom: -50px;
  left: -50px;
  pointer-events: none;
  z-index: 1;
}

.selva-offer-container {
  display: flex;
  width: 100%;
  align-items: flex-start;
  gap: 64px;
  position: relative;
  z-index: 2;
}

/* Coluna Esquerda */
.selva-offer-info {
  flex: 1.25;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.selva-offer-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(18, 77, 45, 0.6);
  border: 1px solid rgba(57, 219, 128, 0.25);
  color: #39db80;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 8px 14px;
  border-radius: 6px;
  margin-bottom: 24px;
}

.selva-offer-info h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 900;
  line-height: 0.95;
  color: #ffffff;
  margin: 0 0 28px 0;
  text-transform: uppercase;
}

.selva-offer-highlight-price {
  color: #39db80;
  position: relative;
  display: inline-block;
}

.selva-offer-underline-svg {
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
}

/* Bloco Alvo */
.selva-offer-highlight-box {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(57, 219, 128, 0.06);
  border: 1px solid rgba(57, 219, 128, 0.2);
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 28px;
  width: 100%;
  max-width: 500px;
}

.selva-offer-box-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.selva-offer-box-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.selva-offer-box-text strong {
  font-size: 15px;
  color: #39db80;
  font-weight: 700;
}

.selva-offer-box-text span {
  font-size: 13.5px;
  color: #a3c1ad;
}

.selva-offer-description {
  font-size: 17px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 32px 0;
  max-width: 580px;
}

.selva-green-highlight {
  color: #39db80;
  font-weight: 700;
}

/* Grid de Beneficios Rápidos */
.selva-offer-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 28px;
  width: 100%;
  margin-bottom: 40px;
}

.selva-offer-benefit-mini {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14.5px;
  font-weight: 600;
}

.selva-mini-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Garantia */
.selva-offer-guarantee-box {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px 20px;
  border-radius: 10px;
  margin-top: auto;
  width: 100%;
  max-width: 420px;
}

.selva-guarantee-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.selva-guarantee-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.selva-guarantee-text strong {
  font-size: 13.5px;
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.selva-guarantee-text span {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.6);
}

/* Coluna Direita (Card Checkout) */
.selva-checkout-card {
  flex: 0.95;
  background: #ffffff;
  border-radius: 24px;
  padding: 40px 32px 32px 32px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.selva-checkout-header {
  display: flex;
  align-self: flex-start;
  margin-bottom: 12px;
}

.selva-checkout-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #e9f5ed;
  color: #0b6b35;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.03em;
  padding: 6px 12px;
  border-radius: 6px;
}

.selva-check-dot {
  font-weight: 900;
}

.selva-checkout-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.selva-price-main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #042918;
}

.selva-installments {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(42px, 5.5vw, 64px);
  font-weight: 950;
  line-height: .9;
  letter-spacing: -0.02em;
}

.selva-cash-price {
  margin-top: 8px;
  color: #66756c;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
}

.selva-access-lock {
  display: flex;
  align-items: center;
  gap: 8px;
  text-align: left;
}

.selva-lock-icon-shield {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #e9f5ed;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.selva-lock-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.selva-lock-text strong {
  font-size: 11px;
  color: #0b6b35;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.selva-lock-text span {
  font-size: 10px;
  color: #556b5c;
  font-weight: 600;
}

.selva-checkout-divider {
  border: none;
  border-top: 1px solid #e9ecef;
  margin: 0 0 24px 0;
  width: 100%;
}

.selva-checkout-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.selva-checkout-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: #495057;
  line-height: 1.35;
}

.selva-li-check {
  color: #0b6b35;
  font-weight: bold;
  font-size: 15px;
}

.selva-text-bold {
  color: #042918;
  font-weight: 700;
}

/* Botão de Compra */
.selva-checkout-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #0b6b35;
  color: #ffffff;
  padding: 16px 20px;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(11, 107, 53, 0.2);
  transition: all 0.25s ease;
  margin-bottom: 24px;
}

.selva-checkout-btn:hover {
  background: #09542a;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(11, 107, 53, 0.3);
}

.selva-btn-wa-icon-large {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.selva-checkout-btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.15;
  padding-left: 12px;
  flex-grow: 1;
}

.selva-checkout-btn-text strong {
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-align: left;
}

.selva-checkout-btn-text span {
  font-size: 9.5px;
  opacity: 0.85;
  margin-top: 3px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.selva-checkout-btn-arrow {
  font-size: 16px;
  transition: transform 0.2s ease;
}

.selva-checkout-btn:hover .selva-checkout-btn-arrow {
  transform: translateX(3px);
}

/* Rodapé do Card */
.selva-checkout-footer {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  opacity: 0.85;
}

.selva-checkout-footer svg {
  flex-shrink: 0;
  margin-top: 1px;
}

.selva-checkout-footer p {
  margin: 0;
  font-size: 11px;
  color: #6c757d;
  line-height: 1.35;
  text-align: left;
}


/* ==================== SEÇÃO 5: DEPOIMENTOS DE RESULTADOS ==================== */
.selva-testimonials-section {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 64px clamp(16px, calc((100% - 1200px) / 2), 50%);
  background: #fffdf5;
  border-radius: 0;
  border: none;
  box-shadow: none;
  box-sizing: border-box;
}

.selva-testimonials-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.selva-testimonials-container h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(34px, 4.5vw, 54px);
  font-weight: 900;
  color: #042918;
  text-align: center;
  margin: 24px 0 16px 0;
  text-transform: uppercase;
  line-height: 1;
}

.selva-testimonials-underline-svg {
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
}

.selva-testimonials-subtitle {
  font-size: clamp(16px, 1.8vw, 19px);
  color: #495057;
  text-align: center;
  max-width: 750px;
  margin: 0 auto 48px auto;
  line-height: 1.4;
}

/* Grid de Depoimentos */
.selva-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  width: 100%;
  margin-bottom: 48px;
}

.selva-testimonial-card {
  display: flex;
  flex-direction: column;
  background: transparent;
}

.selva-result-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #ffffff;
  border: 1px solid #dbe8df;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 16px 34px rgba(4, 41, 24, 0.08);
  position: relative;
  overflow: hidden;
}

.selva-result-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 7px;
  background: #0b6b35;
}

.selva-result-card-featured {
  border-color: rgba(57, 219, 128, 0.45);
  box-shadow: 0 20px 42px rgba(4, 41, 24, 0.13);
}

.selva-result-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.selva-result-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid #e6f4ec;
}

.selva-result-person {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-align: left;
}

.selva-result-person strong {
  color: #042918;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.15;
}

.selva-result-person span {
  color: #5c7065;
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.25;
}

.selva-result-value {
  background: #eef8f2;
  border: 1px solid #d3e8dc;
  border-radius: 14px;
  padding: 16px;
  text-align: left;
}

.selva-result-value span {
  display: block;
  color: #0b6b35;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.selva-result-value strong {
  color: #042918;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 0.95;
  font-weight: 950;
  letter-spacing: -0.03em;
}

.selva-result-card blockquote {
  margin: 0;
  color: #142c20;
  font-size: 17px;
  line-height: 1.42;
  font-weight: 750;
  letter-spacing: -0.01em;
  text-align: left;
}

.selva-result-footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid #e4ece7;
  text-align: left;
}

.selva-result-pill {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #042918;
  color: #39db80;
  padding: 7px 11px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.selva-result-footer small {
  color: #728176;
  font-size: 11.5px;
  line-height: 1.35;
  font-weight: 650;
}

/* WhatsApp Mockup */
.selva-whatsapp-mockup {
  background: #efeae2; /* Fundo clássico de conversa */
  border-radius: 18px 18px 0 0;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: none;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

/* Cabeçalho */
.selva-wa-header {
  background: #075e54;
  color: #ffffff;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
}

.selva-wa-header-left {
  display: flex;
  align-items: center;
  gap: 6px;
}

.selva-wa-back {
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  margin-right: 2px;
  display: flex;
  align-items: center;
}

.selva-wa-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  background: #ccc;
}

.selva-wa-info {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.selva-wa-name {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.selva-wa-status {
  font-size: 11px;
  opacity: 0.85;
}

.selva-wa-header-right {
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0.9;
}

.selva-wa-header-icon {
  cursor: pointer;
}

/* Corpo do Chat */
.selva-wa-body {
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
  min-height: 350px;
  justify-content: flex-start;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="80" height="80" viewBox="0 0 80 80" opacity="0.06"><path d="M40 0C17.9 0 0 17.9 0 40s17.9 40 40 40 40-17.9 40-40S62.1 0 40 0zm0 72c-17.6 0-32-14.4-32-32S22.4 8 40 8s32 14.4 32 32-14.4 32-32 32z" fill="%23075E54"/></svg>'); /* Textura sutil */
}

/* Balões de Mensagem */
.selva-wa-bubble {
  max-width: 85%;
  padding: 8px 12px;
  font-size: 13.5px;
  line-height: 1.4;
  position: relative;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  margin-bottom: 4px;
}

.selva-wa-bubble p {
  margin: 0;
  color: #111b21;
}

.selva-wa-bubble.left {
  background: #ffffff;
  align-self: flex-start;
  border-radius: 0 8px 8px 8px;
}

/* Efeito cauda no primeiro balão */
.selva-wa-bubble.left::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 0;
  width: 0;
  height: 0;
  border-top: 0px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 8px solid #ffffff;
}

.selva-wa-bubble.right {
  background: #d9fdd3;
  align-self: flex-end;
  border-radius: 8px 0 8px 8px;
}

.selva-wa-bubble.right::before {
  content: "";
  position: absolute;
  right: -8px;
  top: 0;
  width: 0;
  height: 0;
  border-top: 0px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 8px solid #d9fdd3;
}

.selva-wa-time {
  font-size: 10px;
  color: #667781;
  align-self: flex-end;
  margin-top: 4px;
  margin-left: 16px;
  display: flex;
  align-items: center;
  gap: 3px;
  line-height: 1;
}

.selva-wa-checks {
  color: #53bdeb; /* Ticks azuis do WhatsApp */
  font-weight: bold;
}

/* Conquistas do Depoimento */
.selva-testimonial-achievement {
  background: #e1ebe6;
  border: 1px solid #c3d6cc;
  border-radius: 0 0 18px 18px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.selva-achievement-icon-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #0b6b35;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(11, 107, 53, 0.2);
}

.selva-achievement-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}

.selva-achievement-text strong {
  font-size: 14.5px;
  color: #042918;
  font-weight: 700;
  line-height: 1.25;
}

.selva-achievement-text span {
  font-size: 12.5px;
  color: #40584b;
}

/* Depoimento em Áudio */
.selva-audio-testimonial-card {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 28px;
  align-items: center;
  background: linear-gradient(135deg, #042918 0%, #0b6b35 100%);
  color: #ffffff;
  border-radius: 22px;
  padding: clamp(22px, 3vw, 34px);
  margin: 0 0 22px;
  box-shadow: 0 18px 42px rgba(4, 41, 24, .18);
  box-sizing: border-box;
}

.selva-audio-testimonial-copy {
  min-width: 0;
}

.selva-audio-kicker {
  display: inline-flex;
  width: fit-content;
  background: rgba(57, 219, 128, .15);
  color: #39db80;
  border: 1px solid rgba(57, 219, 128, .25);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
}

.selva-audio-testimonial-copy h3 {
  margin: 16px 0 10px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -.03em;
}

.selva-audio-testimonial-copy p {
  margin: 0;
  color: rgba(255, 255, 255, .86);
  font-size: 16px;
  line-height: 1.45;
}

.selva-audio-note {
  margin-top: 14px !important;
  padding-left: 14px;
  border-left: 3px solid #39db80;
  font-size: 13px !important;
  color: rgba(255, 255, 255, .72) !important;
}

.selva-audio-player-box {
  min-width: 0;
  background: #fffdf5;
  color: #042918;
  border-radius: 18px;
  padding: 18px;
  box-shadow: inset 0 0 0 1px rgba(4, 41, 24, .08);
}

.selva-audio-player-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.selva-audio-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: #0b6b35;
  box-shadow: 0 8px 18px rgba(11, 107, 53, .18);
}

.selva-audio-player-header strong,
.selva-audio-player-header span {
  display: block;
}

.selva-audio-player-header strong {
  font-size: 16px;
  font-weight: 900;
}

.selva-audio-player-header span {
  margin-top: 2px;
  color: #587064;
  font-size: 13px;
  font-weight: 700;
}

.selva-audio-player {
  width: 100%;
  display: block;
  margin-bottom: 14px;
}

.selva-audio-cta {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #39db80;
  color: #042918;
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .02em;
  box-shadow: 0 8px 18px rgba(57, 219, 128, .2);
}

/* Barra de Rodapé de Depoimentos */
.selva-testimonials-footer-bar {
  display: flex;
  width: 100%;
  background: #0b6b35;
  border-radius: 14px;
  padding: 14px 24px;
  color: #ffffff;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 16px;
  box-shadow: 0 6px 15px rgba(11, 107, 53, 0.15);
}

.selva-tf-left {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  font-weight: 600;
  flex: 1.3;
  text-align: left;
}

.selva-tf-leaf-icon {
  color: #39db80;
  flex-shrink: 0;
  margin-top: 3px;
}

.selva-tf-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.selva-tf-copy strong {
  font-size: 14.5px;
  font-weight: 800;
  line-height: 1.2;
}

.selva-tf-copy span {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}

.selva-tf-copy small {
  font-size: 11.5px;
  font-weight: 600;
  line-height: 1.35;
  opacity: 0.78;
}

.selva-tf-right {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #ffffff;
  color: #0b6b35;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid rgba(11, 107, 53, 0.1);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  flex: 1;
}

/* ==================== SEÇÃO 8: GARANTIA SELVA ==================== */
.selva-guarantee-section {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 64px clamp(16px, calc((100% - 1200px) / 2), 50%);
  background: #fbfbf7;
  border-radius: 0;
  border: none;
  box-shadow: none;
  box-sizing: border-box;
}

.selva-guarantee-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}

.selva-guarantee-main-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  width: 100%;
}

.selva-guarantee-image-wrapper {
  flex: 1;
  max-width: 340px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.selva-guarantee-image-wrapper img {
  width: 100%;
  height: auto;
  max-width: 300px;
  filter: drop-shadow(0 15px 30px rgba(4, 41, 24, 0.12));
  transition: transform 0.4s ease;
}

.selva-guarantee-image-wrapper img:hover {
  transform: scale(1.03) rotate(-1deg);
}

.selva-guarantee-info {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.selva-guarantee-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #e9f5ed;
  color: #0b6b35;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 5px 10px;
  border-radius: 5px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.selva-guarantee-badge svg {
  stroke: #0b6b35;
  flex-shrink: 0;
}

.selva-guarantee-info h2 {
  font-family: "DM Sans", Arial, sans-serif;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 850;
  color: #042918;
  line-height: 1.2;
  margin: 0 0 20px 0;
  letter-spacing: -0.01em;
}

.selva-guarantee-highlight-text {
  position: relative;
  display: inline-block;
  color: #0b6b35;
}

.selva-guarantee-underline-svg {
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: auto;
}

.selva-guarantee-divider-line {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 20px;
  gap: 14px;
}

.selva-guarantee-divider-line .line-left,
.selva-guarantee-divider-line .line-right {
  flex-grow: 1;
  height: 1px;
  background: #e2dfd5;
}

.divider-shield-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid #e2dfd5;
  background: #fbfbf7;
  color: #0b6b35;
  flex-shrink: 0;
}

.selva-guarantee-description {
  font-size: 16px;
  color: #495057;
  line-height: 1.5;
  margin: 0;
  font-weight: 500;
}

.selva-guarantee-green-bold {
  color: #0b6b35;
  font-weight: 700;
}

.selva-guarantee-footer-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  background: #f2f4ee;
  border-radius: 12px;
  padding: 16px 24px;
  width: 100%;
  box-sizing: border-box;
}

.selva-g-footer-item {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  box-sizing: border-box;
}

.selva-g-footer-item:not(:last-child) {
  border-right: 1px solid rgba(4, 41, 24, 0.1);
  padding-right: 12px;
}

.selva-g-footer-icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #042918;
  flex-shrink: 0;
}

.selva-g-footer-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.25;
}

.selva-g-footer-text strong {
  font-size: 13.5px;
  color: #042918;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.selva-g-footer-text span {
  font-size: 12.5px;
  color: #556b5c;
  font-weight: 600;
}


/* ==================== SEÇÃO 9: FAQ - DÚVIDAS RÁPIDAS ==================== */
.selva-faq-section {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 64px clamp(16px, calc((100% - 1200px) / 2), 50%);
  background: #fffdf5;
  border-radius: 0;
  border: none;
  box-shadow: none;
  box-sizing: border-box;
}

.selva-faq-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.selva-faq-container h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(34px, 4.5vw, 54px);
  font-weight: 900;
  color: #042918;
  text-align: center;
  margin: 24px 0 36px 0;
  text-transform: uppercase;
  line-height: 1;
}

.selva-faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 900px;
}

.selva-faq-item {
  background: #ffffff;
  border: 1.5px solid rgba(26, 61, 43, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  width: 100%;
}

/* Esconder seta padrão do summary */
.selva-faq-item summary::-webkit-details-marker {
  display: none;
}
.selva-faq-item summary {
  list-style: none;
}

.selva-faq-question {
  padding: 18px 24px;
  font-size: clamp(15px, 2vw, 17px);
  font-weight: 800;
  color: #042918;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.selva-faq-arrow-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f8f9fa;
  color: #042918;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.selva-faq-arrow-icon svg {
  transition: transform 0.3s ease;
}

/* Estilo do item Aberto */
.selva-faq-item[open] {
  border-color: #e6a123; /* Borda dourada/amarelada da imagem */
  box-shadow: 0 8px 20px rgba(230, 161, 35, 0.06);
}

.selva-faq-item[open] .selva-faq-arrow-icon {
  background: #efeae2;
  color: #e6a123;
  transform: rotate(90deg);
}

.selva-faq-answer {
  padding: 0 24px 20px 24px;
  font-size: 15px;
  line-height: 1.5;
  color: #495057;
  border-top: 1px dashed rgba(26, 61, 43, 0.08);
  margin-top: -4px;
  padding-top: 16px;
}

.selva-faq-answer p {
  margin: 0;
}


/* ==================== SEÇÃO 9: CHAMADA FINAL / RODAPÉ ==================== */
.selva-final-call-section {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 64px clamp(16px, calc((100% - 1200px) / 2), 50%);
  background: #e9f5ed;
  border-radius: 0;
  border: none;
  box-shadow: none;
  box-sizing: border-box;
}

.selva-final-call-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 850px;
  margin: 0 auto;
}

.selva-final-call-container h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 900;
  color: #042918;
  margin: 0 0 16px 0;
  line-height: 1.05;
}

.selva-final-call-container p {
  font-size: 17px;
  color: #2d6a4f;
  font-weight: 600;
  margin: 0 0 32px 0;
  max-width: 600px;
  line-height: 1.4;
}

.selva-final-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #12db6e;
  color: #ffffff;
  font-size: 17px;
  font-weight: 800;
  padding: 18px 40px;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(18, 219, 110, 0.35);
  transition: all 0.25s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.selva-final-btn:hover {
  background: #0fcb64;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(18, 219, 110, 0.45);
}


/* ==================== POPUP DE AVANÇO / MODAL ==================== */
.selva-lead-modal {
  border: none;
  background: transparent;
  padding: 0;
  overflow: visible;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  width: 90%;
  max-width: 480px;
  box-sizing: border-box;
  z-index: 9999;
}

/* Backdrop nativo */
.selva-lead-modal::backdrop {
  background-color: rgba(4, 41, 24, 0.85);
  backdrop-filter: blur(8px);
  transition: opacity 0.3s ease;
}

/* Fallback do Polyfill do Backdrop */
.selva-lead-modal + .backdrop {
  background-color: rgba(4, 41, 24, 0.85);
  backdrop-filter: blur(8px);
}

.selva-modal-content {
  background: #042918;
  border: 1px solid rgba(57, 219, 128, 0.15);
  border-radius: 24px;
  padding: 44px 36px 36px 36px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  position: relative;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 28px;
  color: #ffffff;
  font-family: "DM Sans", Arial, sans-serif;
  text-align: left;
}

/* Botão de Fechar */
.selva-modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 10;
}

.selva-modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  transform: rotate(90deg);
}

/* Cabeçalho */
.selva-modal-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.selva-modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #124d2d;
  color: #39db80;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 5px 10px;
  border-radius: 5px;
  text-transform: uppercase;
}

.selva-modal-badge svg {
  stroke: #39db80;
  flex-shrink: 0;
}

.selva-modal-header h2 {
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 23px;
  font-weight: 850;
  color: #ffffff;
  line-height: 1.25;
  margin: 0;
  letter-spacing: -0.01em;
}

.selva-modal-header p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.45;
  margin: 0;
}

/* Formulário */
.selva-modal-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.selva-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.selva-form-group label {
  font-size: 11.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.selva-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.selva-input-wrapper .input-icon {
  position: absolute;
  left: 14px;
  color: rgba(255, 255, 255, 0.4);
  pointer-events: none;
  transition: color 0.2s ease;
}

.selva-input-wrapper input {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 13px 14px 13px 42px;
  font-size: 14.5px;
  color: #ffffff;
  box-sizing: border-box;
  transition: all 0.2s ease;
}

.selva-input-wrapper input:focus {
  outline: none;
  border-color: #39db80;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(57, 219, 128, 0.15);
}

.selva-input-wrapper input:focus + .input-icon {
  color: #39db80;
}

/* Botão de Envio */
.selva-modal-submit-btn {
  width: 100%;
  background: #12db6e;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 20px;
  border-radius: 12px;
  font-size: 14.5px;
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(18, 219, 110, 0.25);
  transition: all 0.25s ease;
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.selva-modal-submit-btn:hover {
  background: #0fcb64;
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(18, 219, 110, 0.35);
}

.selva-modal-submit-btn:active {
  transform: translateY(0);
}

.selva-modal-privacy-note {
  margin: -8px 0 0;
  font-size: 11.5px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.62);
  text-align: center;
}

/* Rodapé */
.selva-modal-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-security-item {
  display: flex;
  align-items: center;
  gap: 4px;
}

.footer-security-item svg {
  stroke: rgba(255, 255, 255, 0.4);
}

.footer-divider {
  opacity: 0.3;
}


/* ==================== RESPONSIVO INTEGRADO ==================== */
@media (max-width: 1200px) {
  .selva-features-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  /* Seção 1 */
  .selva-hero-section {
    grid-template-columns: minmax(0, 1fr) minmax(250px, 32vw);
    align-items: stretch;
    border-radius: 0;
    min-height: auto;
  }

  .selva-hero-banner {
    border-radius: 0 48px 140px 0;
    padding: 48px 72px 48px 32px;
    margin-right: -56px;
    box-shadow: 0 10px 25px rgba(4, 41, 24, 0.15);
  }

  .selva-hero-mockup-container {
    padding: 32px 24px 32px 0;
    align-items: center;
  }

  .selva-phone-mockup {
    transform: translateY(0);
  }

  .selva-phone-mockup:hover {
    transform: translateY(-5px);
  }

  /* Seção 2 */
  .selva-problem-section {
    margin-top: 0;
    padding-top: 48px;
  }

  .selva-problem-container {
    padding: 0;
  }

  .selva-problem-grid {
    grid-template-columns: 1fr;
  }

  .selva-problem-image-card {
    height: 300px;
  }

  .selva-problem-footer-row {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .selva-operator {
    display: none; /* oculta operadores */
  }

  .selva-problem-solution-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    text-align: center;
  }

  .selva-solution-bar-left {
    flex-direction: column;
    gap: 12px;
  }

  .selva-btn-solution {
    justify-content: center;
  }

  /* Seção 3 (Comparativo) */
  .selva-comparison-section {
    flex-direction: column;
    align-items: stretch;
  }

  .selva-comparison-left {
    padding: 48px 20px 56px;
  }

  .selva-leaf-decoration {
    display: none; /* Esconde folhas decorativas absolutas */
  }

  /* Seção 4 (Páginas de detalhes da proposta) */
  .selva-proposal-details-section {
    padding: 40px clamp(16px, calc((100% - 1200px) / 2), 50%);
  }

  .selva-details-pages-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .selva-details-bottom-bar {
    flex-direction: column;
    gap: 20px;
  }

  .selva-bottom-bar-item {
    align-items: center;
  }

  /* Seção 5 (Cards de feature) */
  .selva-proposal-section {
    padding: 40px clamp(16px, calc((100% - 1200px) / 2), 50%);
  }

  .selva-proposal-container {
    padding: 0;
  }
  
  .selva-header-main-row {
    flex-direction: column;
    gap: 16px;
  }
  
  .selva-handwritten-badge {
    transform: rotate(0deg) translateY(0);
    margin-top: 8px;
  }

  /* Responsividade Seção 5 (Depoimentos) */
  .selva-testimonials-section {
    padding: 48px clamp(16px, calc((100% - 1200px) / 2), 50%);
  }

  .selva-testimonials-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Responsividade Seção 7 (Oferta) */
  .selva-offer-section {
    padding: 48px clamp(16px, calc((100% - 1200px) / 2), 50%);
  }

  .selva-offer-container {
    flex-direction: column;
    align-items: stretch;
    gap: 48px;
  }

  .selva-offer-info {
    align-items: center;
    text-align: center;
  }

  .selva-offer-info h2 {
    text-align: center;
  }

  .selva-offer-highlight-box {
    margin: 0 auto 24px auto;
  }

  .selva-offer-benefits-grid {
    max-width: 500px;
    margin: 0 auto 32px auto;
  }

  .selva-offer-guarantee-box {
    margin: 0 auto;
  }

  .selva-checkout-card {
    flex: none;
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
  }

  /* Responsividade Seção 8 (Garantia Selva) */
  .selva-guarantee-section {
    padding: 48px clamp(16px, calc((100% - 1200px) / 2), 50%);
  }

  .selva-guarantee-main-content {
    flex-direction: column;
    gap: 32px;
  }

  .selva-guarantee-image-wrapper {
    max-width: 240px;
  }

  .selva-guarantee-info {
    align-items: center;
    text-align: center;
  }

  .selva-guarantee-info h2 {
    text-align: center;
  }

  /* Responsividade Seção 9 (FAQ) */
  .selva-faq-section {
    padding: 48px clamp(16px, calc((100% - 1200px) / 2), 50%);
  }

  /* Responsividade Seção 10 (Chamada Final) */
  .selva-final-call-section {
    padding: 48px clamp(16px, calc((100% - 1200px) / 2), 50%);
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .selva-hero-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(230px, 34vw);
    align-items: stretch;
  }

  .selva-hero-banner {
    grid-column: 1;
    border-radius: 0 48px 140px 0;
    padding: 48px 74px 48px 32px;
    margin-right: -52px;
    min-width: 0;
  }

  .selva-hero-banner h1 {
    font-size: clamp(44px, 7vw, 68px);
  }

  .selva-hero-desc {
    max-width: 620px;
  }

  .selva-hero-mockup-container {
    grid-column: 2;
    grid-row: 1;
    padding: 32px 24px;
    align-items: center;
    min-width: 0;
    overflow: visible;
  }

  .selva-phone-mockup {
    width: min(290px, 100%);
  }
}

@media (max-width: 768px) {
  .selva-features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  /* Responsividade Seção 5 */
  .selva-testimonials-footer-bar {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    padding: 20px 16px;
  }

  .selva-tf-left {
    text-align: center;
    justify-content: center;
    align-items: center;
  }

  .selva-tf-right {
    width: 100%;
    justify-content: center;
  }

  /* Responsividade Seção 7 */
  .selva-offer-benefits-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  /* Responsividade Seção 8 (Garantia Selva) */
  .selva-guarantee-footer-bar {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px;
  }

  .selva-g-footer-item {
    justify-content: center;
  }

  .selva-g-footer-item:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid rgba(4, 41, 24, 0.08);
    padding-right: 0;
    padding-bottom: 16px;
  }
}

@media (max-width: 600px) {
  /* Seção 1 */
  .selva-hero-banner h1 {
    font-size: 38px;
  }

  .selva-hero-checklist {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .selva-hero-buttons {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .selva-btn {
    justify-content: center;
  }
}

@media (max-width: 500px) {
  /* Geral */
  body {
    padding: 0;
    gap: 0;
  }

  /* Seção 5 */
  .selva-proposal-section {
    padding: 32px clamp(16px, calc((100% - 1200px) / 2), 50%);
  }

  .selva-proposal-container {
    border-radius: 0;
    padding: 0;
  }

  .selva-proposal-header h2 {
    font-size: 32px;
  }

  .selva-subtitle {
    font-size: 16px;
  }

  .selva-handwritten-badge {
    display: none; /* Esconde o manuscrito decorativo em telas pequenas */
  }

  .selva-features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .selva-feature-card {
    min-height: auto;
    padding: 24px 20px;
  }

  /* Responsividade Seção 5 */
  .selva-testimonials-section {
    padding: 32px clamp(16px, calc((100% - 1200px) / 2), 50%);
    border-radius: 0;
  }

  .selva-testimonials-container h2 {
    font-size: 28px;
  }

  .selva-testimonials-subtitle {
    margin-bottom: 32px;
  }

  .selva-wa-body {
    min-height: 280px;
    padding: 12px 8px;
  }

  .selva-wa-bubble {
    font-size: 12.5px;
  }

  .selva-testimonial-achievement {
    padding: 12px 16px;
    gap: 12px;
  }

  .selva-achievement-icon-circle {
    width: 36px;
    height: 36px;
  }

  .selva-achievement-icon-circle svg {
    width: 15px;
    height: 15px;
  }

  .selva-achievement-text strong {
    font-size: 13.5px;
  }

  .selva-achievement-text span {
    font-size: 11.5px;
  }

  /* Responsividade Seção 7 */
  .selva-offer-section {
    padding: 32px clamp(16px, calc((100% - 1200px) / 2), 50%);
    border-radius: 0;
  }

  .selva-offer-info h2 {
    font-size: clamp(28px, 8vw, 36px);
    margin-bottom: 20px;
  }

  .selva-checkout-card {
    padding: 28px 18px;
    border-radius: 18px;
  }

  .selva-installments {
    font-size: 42px;
  }

  .selva-cash-price {
    font-size: 14px;
  }

  .selva-checkout-list li {
    font-size: 13px;
  }

  .selva-checkout-btn {
    padding: 12px 14px;
  }

  .selva-checkout-btn-text strong {
    font-size: 11.5px;
  }

  .selva-checkout-btn-text span {
    font-size: 8.5px;
  }

  /* Responsividade Seção 8 (Garantia Selva) */
  .selva-guarantee-section {
    padding: 32px clamp(16px, calc((100% - 1200px) / 2), 50%);
    border-radius: 0;
    margin: 0;
  }

  .selva-guarantee-info h2 {
    font-size: 26px;
  }

  .selva-guarantee-image-wrapper {
    max-width: 200px;
  }

  .selva-guarantee-description {
    font-size: 14.5px;
  }

  .selva-guarantee-underline-svg {
    bottom: -2px;
  }

  /* Responsividade Seção 9 (FAQ) */
  .selva-faq-section {
    padding: 32px clamp(16px, calc((100% - 1200px) / 2), 50%);
    border-radius: 0;
  }

  .selva-faq-container h2 {
    font-size: 28px;
    margin-bottom: 24px;
  }

  .selva-faq-question {
    padding: 14px 18px;
  }

  .selva-faq-answer {
    padding: 0 18px 16px 18px;
    font-size: 14px;
  }

  /* Responsividade Seção 10 (Chamada Final) */
  .selva-final-call-section {
    padding: 32px clamp(16px, calc((100% - 1200px) / 2), 50%);
    border-radius: 0;
  }

  .selva-final-call-container h2 {
    font-size: clamp(28px, 8vw, 36px);
  }

  .selva-final-call-container p {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .selva-final-btn {
    padding: 14px 28px;
    font-size: 15.5px;
    width: 100%;
  }

  /* Responsividade Popup de Avanço */
  .selva-modal-content {
    padding: 36px 24px 24px 24px;
    gap: 20px;
  }

  .selva-modal-header h2 {
    font-size: 20px;
  }

  .selva-modal-header p {
    font-size: 12.5px;
  }

  .selva-input-wrapper input {
    padding: 11px 12px 11px 38px;
    font-size: 13.5px;
  }

  .selva-modal-submit-btn {
    padding: 14px 16px;
    font-size: 13px;
  }
}

/* ==================== AJUSTES DE CONVERSÃO LOW TICKET ==================== */
html {
  scroll-behavior: smooth;
}

.selva-optional-depth-section,
.selva-guarantee-section[hidden] {
  display: none !important;
}

.selva-highlight-card,
.selva-leaf-decoration,
.selva-offer-light-effect,
.selva-offer-leaves-decor,
.selva-blob-bg,
.selva-handwritten-badge,
.selva-title-underline-svg,
.selva-details-underline-svg,
.selva-offer-underline-svg,
.selva-guarantee-underline-svg {
  display: none !important;
}

.selva-testimonials-grid {
  align-items: stretch;
}

.selva-testimonials-grid[hidden] {
  display: none !important;
}

.selva-wa-header-right,
.selva-wa-bubble:nth-child(n+4) {
  display: none;
}

.selva-wa-body {
  min-height: auto !important;
}

.selva-checkout-btn-text strong {
  letter-spacing: 0;
}

.selva-problem-section {
  padding-bottom: 48px;
}

.selva-problem-subtitle {
  max-width: 860px;
}

.selva-problem-grid {
  grid-template-columns: .95fr 1.05fr;
  align-items: center;
  margin-bottom: 24px;
}

.selva-problem-image-card {
  height: 320px;
}

.selva-reason-card {
  align-items: flex-start;
  min-width: 0;
}

.selva-reason-icon-circle {
  width: 46px;
  height: 46px;
}

.selva-reason-content {
  min-width: 0;
}

.selva-reason-card h3,
.selva-reason-card p,
.selva-solution-bar-text {
  overflow-wrap: anywhere;
}

.selva-problem-solution-bar {
  margin-top: 0;
}

@media (min-width: 769px) and (max-width: 1024px) {
  .selva-hero-section {
    grid-template-columns: minmax(0, 1fr) minmax(230px, 34vw);
    overflow: visible;
  }

  .selva-phone-mockup {
    width: min(290px, 100%);
  }
}

@media (max-width: 1024px) {
  .selva-proof-grid,
  .selva-steps-grid {
    grid-template-columns: 1fr;
  }

  .selva-step-card:not(:last-child)::after {
    top: auto;
    right: 50%;
    bottom: -27px;
    transform: translateX(50%) rotate(90deg);
  }

  .selva-audience-grid {
    grid-template-columns: 1fr;
  }

  .selva-device-stage {
    padding: 24px 20px;
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 768px) {
  img,
  svg {
    max-width: 100%;
  }

  .selva-hero-section {
    display: flex;
    flex-direction: column;
    overflow: visible;
    background: #fffdf5;
  }

  .selva-hero-banner {
    padding: 34px 20px 30px;
    border-radius: 0 0 34px 34px;
    margin-right: 0;
  }

  .selva-hero-banner h1 {
    font-size: clamp(36px, 11vw, 48px);
    line-height: .94;
  }

  .selva-hero-desc {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .selva-hero-buttons {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .selva-btn {
    width: 100%;
    min-height: 56px;
    justify-content: center;
    padding: 14px 16px;
  }

  .selva-hero-mockup-container {
    padding: 24px 20px 8px;
  }

  .selva-phone-mockup {
    width: min(245px, 78vw);
  }

  .selva-comparison-left h2,
  .selva-problem-container h2 {
    font-size: clamp(31px, 9vw, 40px);
    line-height: 1.04;
  }

  .selva-comparison-desc,
  .selva-problem-subtitle {
    font-size: 16px;
    line-height: 1.48;
  }

  .selva-comparison-left {
    padding: 40px 16px 44px;
  }

  .selva-device-stage {
    padding: 22px 16px;
    border-radius: 22px;
    grid-template-columns: 1fr;
  }

  .selva-device-side {
    width: 100%;
    gap: 12px;
  }

  .selva-device-asset {
    min-height: 0;
  }

  .selva-device-asset-phone img {
    max-width: min(100%, 280px);
    max-height: 420px;
  }

  .selva-device-asset-proposal-image {
    max-width: min(100%, 300px);
    max-height: 420px;
  }

  .selva-device-arrow {
    width: 52px;
    height: 52px;
    transform: rotate(90deg);
  }

  .selva-comparison-footer-badges {
    gap: 12px;
  }

  .selva-device-notes li {
    font-size: 14px;
  }

  .selva-device-label {
    width: 100%;
    font-size: 11px;
    padding: 10px 12px;
  }

  .selva-device-asset-phone img {
    max-width: 220px;
  }

  .selva-device-asset-proposal img {
    max-width: 320px;
  }

  .selva-problem-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .selva-reasons-list {
    gap: 12px;
  }

  .selva-reason-card {
    padding: 14px 16px;
    gap: 14px;
  }

  .selva-reason-card h3 {
    font-size: 18px;
    line-height: 1.16;
  }

  .selva-reason-card p {
    font-size: 14px;
    line-height: 1.35;
  }

  .selva-problem-image-card {
    height: 230px;
  }

  .selva-problem-solution-bar {
    padding: 18px;
    text-align: left;
  }

  .selva-solution-bar-left {
    align-items: flex-start;
  }

  .selva-doc-meta-grid {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .selva-doc-meta-item:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid rgba(0, 0, 0, .08);
    padding-bottom: 8px;
  }

  .selva-doc-author-block {
    flex-direction: column;
  }

  .selva-doc-section p {
    font-size: 12px;
  }

  .selva-features-grid {
    grid-template-columns: 1fr;
  }

  .selva-testimonials-grid {
    gap: 18px;
  }

  .selva-audio-testimonial-card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px 18px;
    border-radius: 18px;
  }

  .selva-audio-testimonial-copy h3 {
    font-size: clamp(26px, 8vw, 32px);
  }

  .selva-audio-player-box {
    padding: 16px;
  }

  .selva-audio-cta {
    min-height: 52px;
    text-align: center;
    padding: 0 14px;
  }

  .selva-wa-body {
    padding: 14px 12px;
  }

  .selva-testimonials-footer-bar {
    display: flex;
  }

  .selva-page-table,
  .selva-page-table tbody,
  .selva-page-table tr,
  .selva-page-table td {
    display: block;
    width: 100%;
  }

  .selva-page-table td.table-label {
    width: 100%;
    border-radius: 6px 6px 0 0;
  }

  .selva-page-table td.table-value {
    padding-top: 6px;
  }
}
