/* ============================================================
   Virtual 360 Zone — Business Plan Page (V3 standard)
   ============================================================ */

#vrl-bp,
#vrl-bp *,
#vrl-bp *::before,
#vrl-bp *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

#vrl-bp {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: #e4e4e7;
  background: transparent;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  --blue:           #3a7bd5;
  --blue-light:     #5a9bf6;
  --blue-dark:      #2558a8;
  --navy:           #080c1e;
  --surface:        #0e1330;
  --surface-alt:    #131940;
  --text-primary:   #eef0f8;
  --text-secondary: #a4adc4;
  --text-muted:     #5e6a84;
  --green:          #25d366;
  --danger:         #ef4444;
  --orange:         #FF7A3D;
  --radius:         12px;
  --radius-lg:      20px;
  --transition:     0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --max-width:      1200px;
}

#vrl-bp img { max-width: 100%; height: auto; display: block; }
#vrl-bp a   { text-decoration: none; color: inherit; }

/* UTILITIES */
#vrl-bp .vrl-container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
#vrl-bp .vrl-section { padding: 96px 0; position: relative; }

#vrl-bp .vrl-section + .vrl-section::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: min(70%, 800px); height: 1px;
  background: linear-gradient(90deg, transparent, rgba(58, 123, 213, 0.08), transparent);
  z-index: 1; pointer-events: none;
}
#vrl-bp .vrl-section:nth-child(odd)::after {
  content: ''; position: absolute;
  top: -40px; right: -10%;
  width: 400px; height: 350px;
  background: radial-gradient(ellipse, rgba(58,123,213,0.025) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}
#vrl-bp .vrl-section:nth-child(even)::after {
  content: ''; position: absolute;
  top: -30px; left: -8%;
  width: 350px; height: 300px;
  background: radial-gradient(ellipse, rgba(255,122,61,0.015) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}
#vrl-bp .vrl-section .vrl-container { position: relative; z-index: 2; }

#vrl-bp .vrl-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #FF9B5F;
  background: rgba(255, 122, 61, 0.06);
  border: 1px solid rgba(255, 122, 61, 0.12);
  padding: 7px 18px;
  border-radius: 100px;
  margin-bottom: 22px;
}
#vrl-bp .vrl-badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--orange);
  animation: vrlPulseBP 2.5s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes vrlPulseBP {
  0%,100% { opacity: 1; transform: scale(1); }
  50%     { opacity: 0.4; transform: scale(1.8); }
}

#vrl-bp .vrl-title {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
  letter-spacing: -0.5px;
  margin-bottom: 18px;
}
#vrl-bp .vrl-title span,
#vrl-bp .vrl-title em { font-style: normal; color: var(--blue-light); }
#vrl-bp .vrl-subtitle {
  font-size: clamp(16px, 2vw, 18px);
  color: var(--text-secondary);
  line-height: 1.80;
  max-width: 720px;
}
#vrl-bp .vrl-divider {
  width: 48px; height: 2px;
  background: linear-gradient(90deg, var(--blue), transparent);
  margin: 28px 0;
}
#vrl-bp .vrl-text-center                   { text-align: center; }
#vrl-bp .vrl-text-center .vrl-subtitle     { margin-left: auto; margin-right: auto; }
#vrl-bp .vrl-text-center .vrl-divider      { margin-left: auto; margin-right: auto; }

/* HERO — Layout 2 colunas: texto + imagem */
#vrl-bp .vrl-hero {
  padding: 140px 0 80px;
  position: relative;
  background: transparent;
  overflow: hidden;
}
#vrl-bp .vrl-hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
#vrl-bp .vrl-hero-content {
  position: relative;
  z-index: 2;
}
#vrl-bp .vrl-hero h1 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.12;
  color: #FFFFFF;
  letter-spacing: -1px;
  margin-bottom: 22px;
}
#vrl-bp .vrl-hero h1 em {
  font-style: normal;
  color: #FF7A3D;
}
#vrl-bp .vrl-hero-desc {
  font-size: 17px;
  color: #a4adc4;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 560px;
}
#vrl-bp .vrl-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
#vrl-bp .vrl-hero-image {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.04);
}
#vrl-bp .vrl-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
#vrl-bp .vrl-hero-image:hover img {
  transform: scale(1.03);
}
#vrl-bp .vrl-btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--blue); color: #ffffff;
  font-family: inherit; font-size: 14.5px; font-weight: 700;
  padding: 15px 32px; border-radius: 100px; border: none;
  cursor: pointer; transition: var(--transition);
  letter-spacing: 0.3px; text-decoration: none;
}
#vrl-bp .vrl-btn-primary:hover {
  background: var(--blue-light); transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(58, 123, 213, 0.35);
}
#vrl-bp .vrl-btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--text-primary);
  font-family: inherit; font-size: 14.5px; font-weight: 500;
  padding: 15px 32px; border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer; transition: var(--transition); text-decoration: none;
}
#vrl-bp .vrl-btn-ghost:hover { border-color: var(--blue); color: var(--blue-light); }

/* STATS BAR */
#vrl-bp .vrl-stats-bar {
  background: transparent;
  border-top: 1px solid rgba(58, 123, 213, 0.07);
  border-bottom: 1px solid rgba(58, 123, 213, 0.07);
  padding: 44px 0;
}
#vrl-bp .vrl-stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; text-align: center;
}
#vrl-bp .vrl-stat-item { position: relative; }
#vrl-bp .vrl-stat-item:not(:last-child)::after {
  content: ""; position: absolute;
  right: 0; top: 15%; height: 70%; width: 1px;
  background: rgba(58, 123, 213, 0.10);
}
#vrl-bp .vrl-stat-number {
  font-size: clamp(30px, 4vw, 44px); font-weight: 800;
  color: var(--blue-light); line-height: 1.1; margin-bottom: 6px;
}
#vrl-bp .vrl-stat-label {
  font-size: 12px; font-weight: 500; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 1.5px;
}

/* DOR */
#vrl-bp .vrl-pain { background: transparent; }
#vrl-bp .vrl-pain-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
#vrl-bp .vrl-pain-image {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 0 60px rgba(58, 123, 213, 0.08);
}
#vrl-bp .vrl-pain-list { list-style: none; margin-top: 28px; }
#vrl-bp .vrl-pain-list li {
  position: relative;
  padding: 14px 0 14px 32px;
  font-size: 15px; color: var(--text-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  line-height: 1.65;
}
#vrl-bp .vrl-pain-list li::before {
  content: "\2715";
  position: absolute; left: 0; top: 16px;
  color: var(--danger); font-size: 12px; font-weight: 700;
}

/* METODOLOGIA */
#vrl-bp .vrl-method { background: transparent; }
#vrl-bp .vrl-method-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 56px;
}
#vrl-bp .vrl-method-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(58, 123, 213, 0.08);
  border-radius: var(--radius-lg); padding: 40px 28px;
  transition: var(--transition); position: relative; overflow: hidden;
}
#vrl-bp .vrl-method-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  opacity: 0; transition: var(--transition);
}
#vrl-bp .vrl-method-card:hover {
  border-color: rgba(58, 123, 213, 0.20); transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}
#vrl-bp .vrl-method-card:hover::before { opacity: 1; }
#vrl-bp .vrl-method-number {
  font-size: 52px; font-weight: 800;
  color: rgba(58, 123, 213, 0.25); line-height: 1; margin-bottom: 18px;
}
#vrl-bp .vrl-method-card h3 {
  font-size: 19px; font-weight: 700; color: var(--text-primary);
  margin-bottom: 14px; line-height: 1.30;
}
#vrl-bp .vrl-method-card p {
  font-size: 14.5px; color: var(--text-secondary); line-height: 1.78;
}

/* SERVIÇOS */
#vrl-bp .vrl-services { background: transparent; }
#vrl-bp .vrl-services-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center; margin-top: 56px;
}
#vrl-bp .vrl-service-item {
  padding: 24px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
#vrl-bp .vrl-service-item h4 {
  font-size: 17px; font-weight: 700; color: var(--blue-light);
  margin-bottom: 10px; display: flex; align-items: center; gap: 10px;
}
#vrl-bp .vrl-svc-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue); flex-shrink: 0;
}
#vrl-bp .vrl-service-item p {
  font-size: 14.5px; color: var(--text-secondary);
  line-height: 1.78; padding-left: 16px;
}
#vrl-bp .vrl-service-image {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 0 60px rgba(58, 123, 213, 0.08);
}

/* DIFERENCIAIS */
#vrl-bp .vrl-diff { background: transparent; }
#vrl-bp .vrl-diff-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 20px; margin-top: 56px;
}
#vrl-bp .vrl-diff-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius); padding: 32px; transition: var(--transition);
}
#vrl-bp .vrl-diff-card:hover {
  border-color: rgba(58, 123, 213, 0.14);
  background: rgba(58, 123, 213, 0.025);
}
#vrl-bp .vrl-diff-card h4 {
  font-size: 16px; font-weight: 700; color: var(--text-primary);
  margin-bottom: 10px; display: flex; align-items: center; gap: 12px;
}
#vrl-bp .vrl-diff-icon {
  width: 22px; height: 22px; flex-shrink: 0;
  color: var(--blue-light);
  stroke: currentColor; fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
#vrl-bp .vrl-diff-card p { font-size: 14.5px; color: var(--text-secondary); line-height: 1.75; }

/* PARCERIA */
#vrl-bp .vrl-partner { background: transparent; }
#vrl-bp .vrl-partner-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
#vrl-bp .vrl-partner-image {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 0 60px rgba(58, 123, 213, 0.08);
}
#vrl-bp .vrl-partner-benefits { list-style: none; margin-top: 28px; }
#vrl-bp .vrl-partner-benefits li {
  position: relative; padding: 13px 0 13px 32px;
  font-size: 15px; color: var(--text-secondary); line-height: 1.65;
}
#vrl-bp .vrl-partner-benefits li::before {
  content: ""; position: absolute; left: 0; top: 18px;
  width: 16px; height: 16px; border-radius: 50%;
  background: rgba(58, 123, 213, 0.12); border: 1.5px solid var(--blue-dark);
}
#vrl-bp .vrl-partner-benefits li::after {
  content: "\2713";
  position: absolute; left: 3px; top: 18px;
  font-size: 10px; font-weight: 700; color: var(--blue); line-height: 16px;
}

/* PROCESSO */
#vrl-bp .vrl-process { background: transparent; }
#vrl-bp .vrl-process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; margin-top: 56px; position: relative;
}
#vrl-bp .vrl-process-steps::before {
  content: ""; position: absolute;
  top: 44px; left: 12.5%; right: 12.5%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue-dark), var(--blue-dark), transparent);
  opacity: 0.25;
}
#vrl-bp .vrl-step { text-align: center; position: relative; }
#vrl-bp .vrl-step-number {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--surface-alt); border: 2px solid var(--blue-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 800; color: var(--blue-light);
  margin: 0 auto 20px; position: relative; z-index: 2;
}
#vrl-bp .vrl-step h4 { font-size: 15px; font-weight: 700; color: var(--text-primary); margin-bottom: 10px; }
#vrl-bp .vrl-step p  { font-size: 13.5px; color: var(--text-muted); line-height: 1.68; }

/* BANDEIRAS */
#vrl-bp .vrl-flags { background: transparent; text-align: center; }
#vrl-bp .vrl-flags-image {
  max-width: 480px; margin: 36px auto 0;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 0 60px rgba(58, 123, 213, 0.08);
}

/* EQUIPE */
#vrl-bp .vrl-team { background: transparent; }

/* INVESTIMENTO */
#vrl-bp .vrl-pricing { background: transparent; }
#vrl-bp .vrl-pricing-main {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 28px; margin-top: 56px; align-items: start;
}
#vrl-bp .vrl-pricing-card {
  background: rgba(58, 123, 213, 0.03);
  border: 1px solid rgba(58, 123, 213, 0.12);
  border-radius: var(--radius-lg); padding: 44px 36px;
  text-align: center; position: relative; overflow: hidden;
}
#vrl-bp .vrl-pricing-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--blue-dark), var(--blue), var(--blue-dark));
}
#vrl-bp .vrl-pricing-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(58, 123, 213, 0.09); border: 1px solid rgba(58, 123, 213, 0.18);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
}
#vrl-bp .vrl-pricing-icon svg {
  width: 24px; height: 24px; stroke: var(--blue-light);
  fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
#vrl-bp .vrl-pricing-card h3 { font-size: 17px; font-weight: 700; color: var(--text-primary); margin-bottom: 6px; }
#vrl-bp .vrl-pricing-value {
  font-size: clamp(38px, 5vw, 52px); font-weight: 800; color: var(--blue-light);
  line-height: 1.1; margin: 14px 0 4px; letter-spacing: -1px;
}
#vrl-bp .vrl-pricing-value small { font-size: 18px; font-weight: 600; color: var(--text-secondary); letter-spacing: 0; }
#vrl-bp .vrl-pricing-detail { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; }
#vrl-bp .vrl-pricing-features {
  list-style: none; text-align: left;
  margin-top: 24px; border-top: 1px solid rgba(255, 255, 255, 0.05); padding-top: 20px;
}
#vrl-bp .vrl-pricing-features li {
  position: relative; padding: 9px 0 9px 28px;
  font-size: 13.5px; color: var(--text-secondary); line-height: 1.58;
}
#vrl-bp .vrl-pricing-features li::before {
  content: ""; position: absolute; left: 0; top: 14px;
  width: 16px; height: 16px; border-radius: 50%; background: rgba(58, 123, 213, 0.10);
}
#vrl-bp .vrl-pricing-features li::after {
  content: "\2713";
  position: absolute; left: 3.5px; top: 14px;
  font-size: 10px; font-weight: 700; color: var(--blue); line-height: 16px;
}
#vrl-bp .vrl-flex-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 40px;
}
#vrl-bp .vrl-flex-card {
  background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius); padding: 28px 22px; text-align: center; transition: var(--transition);
}
#vrl-bp .vrl-flex-card:hover { border-color: rgba(58, 123, 213, 0.16); background: rgba(58, 123, 213, 0.03); }
#vrl-bp .vrl-flex-icon {
  width: 44px; height: 44px; border-radius: 10px; background: rgba(58, 123, 213, 0.08);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 14px;
}
#vrl-bp .vrl-flex-icon svg {
  width: 22px; height: 22px; stroke: var(--blue-light); fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
#vrl-bp .vrl-flex-card h4 { font-size: 14px; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
#vrl-bp .vrl-flex-card p  { font-size: 12.5px; color: var(--text-muted); line-height: 1.65; }

/* CTA FINAL */
#vrl-bp .vrl-cta-final {
  background: transparent;
  text-align: center; padding: 110px 0;
}
#vrl-bp .vrl-cta-final h2 {
  font-size: clamp(26px, 4vw, 42px); font-weight: 800; color: #ffffff;
  line-height: 1.15; margin-bottom: 18px; letter-spacing: -0.5px;
}
#vrl-bp .vrl-cta-final h2 em { font-style: normal; color: var(--blue-light); }
#vrl-bp .vrl-cta-final p {
  font-size: 17px; color: var(--text-secondary); margin-bottom: 44px;
  max-width: 580px; margin-left: auto; margin-right: auto; line-height: 1.75;
}
#vrl-bp .vrl-btn-whatsapp {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--green); color: #ffffff;
  font-family: inherit; font-size: 16px; font-weight: 700;
  padding: 17px 40px; border-radius: 100px; border: none;
  cursor: pointer; transition: var(--transition); text-decoration: none; letter-spacing: 0.3px;
}
#vrl-bp .vrl-btn-whatsapp:hover {
  background: #1eba59; transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.28);
}
#vrl-bp .vrl-btn-whatsapp svg { width: 20px; height: 20px; fill: #ffffff; }

/* FORMULÁRIO */
#vrl-bp .vrl-form-section { background: transparent; }
#vrl-bp .vrl-form-wrapper { max-width: 640px; margin: 44px auto 0; text-align: left; }
#vrl-bp .vrl-form-wrapper * { text-align: left; }
#vrl-bp .vrl-form-wrapper .vrl-form-submit { text-align: center; }
#vrl-bp .vrl-form-group   { margin-bottom: 18px; }
#vrl-bp .vrl-form-label {
  display: block; font-size: 13px; font-weight: 500;
  color: #FFFFFF; margin-bottom: 6px; letter-spacing: 0.3px;
  text-align: left;
}
#vrl-bp .vrl-form-input,
#vrl-bp .vrl-form-textarea {
  width: 100%; padding: 13px 17px;
  font-family: inherit; font-size: 15px; color: var(--text-primary);
  background: rgba(8, 12, 30, 0.55); border: 1px solid rgba(58, 123, 213, 0.12);
  border-radius: 10px; outline: none; transition: var(--transition); -webkit-appearance: none;
}
#vrl-bp .vrl-form-input::placeholder,
#vrl-bp .vrl-form-textarea::placeholder { color: var(--text-muted); }
#vrl-bp .vrl-form-input:focus,
#vrl-bp .vrl-form-textarea:focus {
  border-color: var(--blue); box-shadow: 0 0 0 3px rgba(58, 123, 213, 0.10);
}
#vrl-bp .vrl-form-textarea { min-height: 120px; resize: vertical; }
#vrl-bp .vrl-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
#vrl-bp .vrl-form-submit {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; background: var(--blue); color: #ffffff;
  font-family: inherit; font-size: 15.5px; font-weight: 700;
  padding: 16px 36px; border-radius: 100px; border: none;
  cursor: pointer; transition: var(--transition); margin-top: 8px;
}
#vrl-bp .vrl-form-submit:hover {
  background: var(--blue-light); transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(58, 123, 213, 0.35);
}
#vrl-bp .vrl-form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; box-shadow: none; }
#vrl-bp .vrl-hp-field {
  position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden;
}
#vrl-bp .vrl-form-msg {
  text-align: center; padding: 14px 18px; border-radius: 10px;
  font-size: 14px; font-weight: 600; margin-top: 18px; display: none;
}
#vrl-bp .vrl-form-msg.vrl-msg-success {
  display: block; background: rgba(37, 211, 102, 0.09);
  border: 1px solid rgba(37, 211, 102, 0.22); color: var(--green);
}
#vrl-bp .vrl-form-msg.vrl-msg-error {
  display: block; background: rgba(239, 68, 68, 0.09);
  border: 1px solid rgba(239, 68, 68, 0.22); color: var(--danger);
}

/* ANIMAÇÕES (V3 reveal) */
#vrl-bp .vrl-reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.25,0.46,0.45,0.94),
              transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
}
#vrl-bp .vrl-reveal.is-visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVO */
@media (max-width: 1024px) {
  #vrl-bp .vrl-hero            { padding: 110px 0 60px; }
  #vrl-bp .vrl-hero-split      { grid-template-columns: 1fr; gap: 32px; }
  #vrl-bp .vrl-hero h1         { font-size: 34px; }
  #vrl-bp .vrl-pain-grid,
  #vrl-bp .vrl-services-layout,
  #vrl-bp .vrl-partner-grid    { grid-template-columns: 1fr; gap: 44px; }
  #vrl-bp .vrl-method-grid     { grid-template-columns: 1fr; gap: 18px; }
  #vrl-bp .vrl-diff-grid       { grid-template-columns: 1fr; gap: 16px; }
  #vrl-bp .vrl-process-steps   { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  #vrl-bp .vrl-process-steps::before { display: none; }
  #vrl-bp .vrl-stats-grid      { grid-template-columns: repeat(2, 1fr); }
  #vrl-bp .vrl-stat-item:not(:last-child)::after { display: none; }
  #vrl-bp .vrl-pricing-main    { grid-template-columns: 1fr; gap: 20px; }
  #vrl-bp .vrl-flex-grid       { grid-template-columns: 1fr; gap: 14px; }
}
@media (max-width: 768px) {
  #vrl-bp .vrl-hero            { padding: 100px 0 40px; }
  #vrl-bp .vrl-hero h1         { font-size: 28px; }
  #vrl-bp .vrl-hero-actions    { flex-direction: column; }
  #vrl-bp .vrl-btn-primary,
  #vrl-bp .vrl-btn-ghost       { width: 100%; justify-content: center; }
}
@media (max-width: 640px) {
  #vrl-bp .vrl-section         { padding: 64px 0; }
  #vrl-bp .vrl-stats-grid      { grid-template-columns: 1fr 1fr; }
  #vrl-bp .vrl-process-steps   { grid-template-columns: 1fr; gap: 32px; }
  #vrl-bp .vrl-btn-whatsapp    { width: 100%; justify-content: center; }
  #vrl-bp .vrl-pricing-card    { padding: 32px 20px; }
  #vrl-bp .vrl-cta-final       { padding: 72px 0; }
  #vrl-bp .vrl-form-row        { grid-template-columns: 1fr; }
}

/* ============================================================
   SEÇÃO INDIVIDUAL (candidatos pessoa física)
   Layout 2 colunas: visual à esquerda, texto à direita
   ============================================================ */
#vrl-bp .vrl-individual { background: transparent; }
#vrl-bp .vrl-individual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
#vrl-bp .vrl-individual-visual {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 56px 44px;
  background:
    radial-gradient(ellipse 80% 60% at 20% 0%, rgba(58, 123, 213, 0.10) 0%, transparent 60%),
    radial-gradient(ellipse 70% 50% at 100% 100%, rgba(255, 122, 61, 0.06) 0%, transparent 55%),
    linear-gradient(135deg, rgba(20, 28, 60, 0.45) 0%, rgba(10, 16, 40, 0.55) 100%);
  border: 1px solid rgba(58, 123, 213, 0.14);
  overflow: hidden;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 0 60px rgba(58, 123, 213, 0.08);
}
#vrl-bp .vrl-individual-visual::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), var(--orange), transparent);
  opacity: 0.55;
}
#vrl-bp .vrl-individual-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(58, 123, 213, 0.12);
  border: 1px solid rgba(58, 123, 213, 0.20);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}
#vrl-bp .vrl-individual-icon svg {
  width: 34px;
  height: 34px;
  stroke: var(--blue-light);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
#vrl-bp .vrl-individual-quote {
  font-size: 19px;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.55;
  margin-bottom: 24px;
  position: relative;
  padding-left: 22px;
}
#vrl-bp .vrl-individual-quote::before {
  content: "\201C";
  position: absolute;
  left: -8px;
  top: -18px;
  font-size: 64px;
  color: var(--orange);
  opacity: 0.35;
  font-family: Georgia, serif;
  line-height: 1;
}
#vrl-bp .vrl-individual-author {
  font-size: 12.5px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}
#vrl-bp .vrl-individual-benefits { list-style: none; margin-top: 28px; }
#vrl-bp .vrl-individual-benefits li {
  position: relative;
  padding: 13px 0 13px 32px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
}
#vrl-bp .vrl-individual-benefits li::before {
  content: "";
  position: absolute;
  left: 0; top: 18px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: rgba(255, 122, 61, 0.12);
  border: 1.5px solid var(--orange);
}
#vrl-bp .vrl-individual-benefits li::after {
  content: "\2713";
  position: absolute;
  left: 3px; top: 18px;
  font-size: 10px;
  font-weight: 700;
  color: var(--orange);
  line-height: 16px;
}

/* ============================================================
   DEPOIMENTOS, carrossel auto-play com loop infinito
   ============================================================ */
#vrl-bp .vrl-testimonials { background: transparent; }

#vrl-bp .vrl-test-carousel {
  position: relative;
  margin-top: 56px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: max(40px, calc(50vw - 600px + 24px));
  padding-right: 40px;
  overflow: hidden;
}
#vrl-bp .vrl-test-carousel::before,
#vrl-bp .vrl-test-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  pointer-events: none;
  z-index: 3;
}
#vrl-bp .vrl-test-carousel::before {
  left: 0;
  background: linear-gradient(90deg, rgba(8, 12, 30, 0.85) 0%, rgba(8, 12, 30, 0) 100%);
}
#vrl-bp .vrl-test-carousel::after {
  right: 0;
  background: linear-gradient(270deg, rgba(8, 12, 30, 0.85) 0%, rgba(8, 12, 30, 0) 100%);
}
#vrl-bp .vrl-test-track {
  display: flex;
  align-items: stretch;
  gap: 22px;
  padding: 14px 0 24px;
  will-change: transform;
  transform: translateX(0);
}

#vrl-bp .vrl-test-card {
  flex: 0 0 360px;
  max-width: 360px;
  background: rgba(255, 255, 255, 0.022);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  padding: 32px 28px 26px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition), background var(--transition);
}
#vrl-bp .vrl-test-card:hover {
  border-color: rgba(58, 123, 213, 0.22);
  background: rgba(58, 123, 213, 0.03);
}
#vrl-bp .vrl-test-quote-mark {
  position: absolute;
  top: 14px;
  left: 18px;
  font-size: 68px;
  color: rgba(255, 122, 61, 0.18);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}
#vrl-bp .vrl-test-text {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.72;
  margin-top: 30px;
  margin-bottom: 22px;
  position: relative;
  z-index: 2;
  flex: 1 1 auto;
}
#vrl-bp .vrl-test-author {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: auto;
}
#vrl-bp .vrl-test-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 6px;
  background: rgba(58, 123, 213, 0.10);
  border: 1px solid rgba(58, 123, 213, 0.20);
  color: var(--blue-light);
}
#vrl-bp .vrl-test-tag[data-type="individual"] {
  background: rgba(255, 122, 61, 0.10);
  border-color: rgba(255, 122, 61, 0.22);
  color: #FF9B5F;
}
#vrl-bp .vrl-test-tag[data-type="case"] {
  background: rgba(90, 155, 246, 0.10);
  border-color: rgba(90, 155, 246, 0.22);
  color: #8ab8f7;
}
#vrl-bp .vrl-test-tag[data-type="paralegal"] {
  background: rgba(120, 160, 230, 0.10);
  border-color: rgba(120, 160, 230, 0.22);
  color: #a5c0ec;
}
#vrl-bp .vrl-test-tag[data-type="firm"] {
  background: rgba(37, 88, 168, 0.14);
  border-color: rgba(37, 88, 168, 0.28);
  color: #6a92d4;
}
#vrl-bp .vrl-test-name {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.1px;
}
#vrl-bp .vrl-test-role {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.45;
}

/* Acessibilidade: respeitar prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  #vrl-bp .vrl-test-track { transition: none !important; }
}

/* RESPONSIVO secoes novas, individual + carrossel auto-play */
@media (max-width: 1024px) {
  #vrl-bp .vrl-individual-grid { grid-template-columns: 1fr; gap: 44px; }
  #vrl-bp .vrl-individual-visual { min-height: 320px; padding: 44px 32px; }

  #vrl-bp .vrl-test-carousel {
    padding-left: 24px;
    padding-right: 24px;
  }
  #vrl-bp .vrl-test-track { gap: 16px; }
  #vrl-bp .vrl-test-card {
    flex: 0 0 min(85vw, 340px);
    max-width: min(85vw, 340px);
    padding: 28px 24px 22px;
  }
  #vrl-bp .vrl-test-carousel::before,
  #vrl-bp .vrl-test-carousel::after { width: 40px; }
}
@media (max-width: 640px) {
  #vrl-bp .vrl-individual-visual { min-height: 280px; padding: 36px 26px; }
  #vrl-bp .vrl-individual-quote { font-size: 17px; padding-left: 16px; }

  #vrl-bp .vrl-test-carousel { padding-left: 16px; padding-right: 16px; }
  #vrl-bp .vrl-test-track { gap: 14px; }
  #vrl-bp .vrl-test-card {
    flex: 0 0 88vw;
    max-width: 88vw;
  }
}

/* DRAG/SWIPE manual no carrossel auto-play */
#vrl-bp .vrl-test-track { cursor: grab; touch-action: pan-y; }
#vrl-bp .vrl-test-track.is-dragging {
  cursor: grabbing;
  transition: none !important;
}
#vrl-bp .vrl-test-track.is-dragging .vrl-test-card,
#vrl-bp .vrl-test-track.is-dragging .vrl-test-card * {
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}
