/* ═══════════════════════════════════════════
   Branding - Scoped Styles
   Escopo: #vrl-branding
   ═══════════════════════════════════════════ */

/* Sections */
#vrl-branding .vrl-section {
  padding: 80px 0;
}

#vrl-branding .vrl-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

#vrl-branding .vrl-section-title {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin: 16px 0 12px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

#vrl-branding .vrl-section-sub {
  font-size: 16px;
  line-height: 1.7;
  color: #a4adc4;
  max-width: 680px;
  margin-bottom: 48px;
}

/* Badge */
#vrl-branding .vrl-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 122, 61, 0.08);
  border: 1px solid rgba(255, 122, 61, 0.2);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #FF7A3D;
}

#vrl-branding .vrl-badge-dot {
  width: 6px;
  height: 6px;
  background: #FF7A3D;
  border-radius: 50%;
  display: inline-block;
  animation: vrlPulse 2s ease-in-out infinite;
}

@keyframes vrlPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Buttons */
#vrl-branding .vrl-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

#vrl-branding .vrl-btn-blue {
  background: #3a7bd5;
  color: #ffffff;
  border: none;
}

#vrl-branding .vrl-btn-blue:hover {
  background: #5a9bf6;
  transform: translateY(-2px);
}

#vrl-branding .vrl-btn-outline {
  background: transparent;
  color: #eef0f8;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

#vrl-branding .vrl-btn-outline:hover {
  border-color: #FF7A3D;
  color: #FF7A3D;
}

#vrl-branding .vrl-btn-whatsapp {
  background: #25d366;
  color: #ffffff;
  border: none;
}

#vrl-branding .vrl-btn-whatsapp:hover {
  background: #22c55e;
  transform: translateY(-2px);
}

/* CTA Section */
#vrl-branding .vrl-cta-section {
  padding: 60px 0 80px;
}

#vrl-branding .vrl-cta-box {
  text-align: center;
  padding: 56px 40px;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 16px;
}

#vrl-branding .vrl-cta-box .vrl-section-title {
  margin-top: 16px;
}

#vrl-branding .vrl-cta-box .vrl-section-sub {
  max-width: 520px;
  margin: 12px auto 32px;
}

#vrl-branding .vrl-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Reveal animation */
#vrl-branding .vrl-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

#vrl-branding .vrl-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════
   EXCLUSIVOS Branding
   ═══════════════════════════════════════════ */

#vrl-branding .vrl-accent { color: #FF7A3D; }

/* ── Hero Tipográfico ── */
#vrl-branding .vrl-hero-typo {
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

#vrl-branding .vrl-hero-typo-content {
  max-width: 780px;
  position: relative;
  z-index: 1;
}

#vrl-branding .vrl-hero-big-word {
  font-size: 120px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.02);
  line-height: 1;
  position: absolute;
  top: 60px;
  right: -40px;
  z-index: 0;
  pointer-events: none;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

#vrl-branding .vrl-hero-typo h1 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.15;
  color: #ffffff;
  margin: 20px 0 24px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

#vrl-branding .vrl-hero-desc {
  font-size: 17px;
  line-height: 1.7;
  color: #a4adc4;
  margin-bottom: 36px;
}

#vrl-branding .vrl-hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── Definition Layout (split com termos) ── */
#vrl-branding .vrl-definition-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: flex-start;
}

#vrl-branding .vrl-definition-left .vrl-section-title {
  margin-top: 16px;
}

#vrl-branding .vrl-definition-left p {
  font-size: 16px;
  line-height: 1.7;
  color: #a4adc4;
  margin-top: 16px;
}

#vrl-branding .vrl-def-term {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

#vrl-branding .vrl-def-term:last-child { border-bottom: none; }

#vrl-branding .vrl-def-term-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #FF7A3D;
  flex-shrink: 0;
  margin-top: 6px;
}

#vrl-branding .vrl-def-dot-blue { background: #3a7bd5; }

#vrl-branding .vrl-def-term strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 4px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

#vrl-branding .vrl-def-term span {
  font-size: 14px;
  line-height: 1.6;
  color: #a4adc4;
}

/* ── Pain Rows (linhas numeradas) ── */
#vrl-branding .vrl-pain-rows {
  margin-top: 40px;
}

#vrl-branding .vrl-pain-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

#vrl-branding .vrl-pain-row:hover {
  border-color: rgba(58, 123, 213, 0.1);
}

#vrl-branding .vrl-pain-row-num {
  font-size: 24px;
  font-weight: 700;
  color: #FF7A3D;
  flex-shrink: 0;
  min-width: 36px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

#vrl-branding .vrl-pain-row p {
  font-size: 15px;
  line-height: 1.6;
  color: #a4adc4;
}

/* ── Deliverables Columns (com barra superior) ── */
#vrl-branding .vrl-deliv-cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}

#vrl-branding .vrl-deliv-col {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 14px;
  padding: 28px;
  transition: all 0.3s ease;
}

#vrl-branding .vrl-deliv-col:hover {
  transform: translateY(-3px);
  border-color: rgba(58, 123, 213, 0.12);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

#vrl-branding .vrl-deliv-col-bar {
  width: 40px;
  height: 3px;
  background: #FF7A3D;
  border-radius: 2px;
  margin-bottom: 16px;
}

#vrl-branding .vrl-deliv-bar-blue { background: #3a7bd5; }

#vrl-branding .vrl-deliv-col h3 {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

#vrl-branding .vrl-deliv-col p {
  font-size: 14px;
  line-height: 1.7;
  color: #a4adc4;
}

/* ── CRO Callout (destaque especial) ── */
#vrl-branding .vrl-cro-callout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  background: rgba(255, 122, 61, 0.03);
  border: 1px solid rgba(255, 122, 61, 0.1);
  border-radius: 16px;
  padding: 48px;
  align-items: flex-start;
}

#vrl-branding .vrl-cro-left .vrl-section-title {
  margin-top: 16px;
}

#vrl-branding .vrl-cro-left p {
  font-size: 15px;
  line-height: 1.7;
  color: #a4adc4;
  margin-top: 16px;
}

#vrl-branding .vrl-cro-right {
  padding-top: 20px;
}

#vrl-branding .vrl-cro-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 122, 61, 0.06);
}

#vrl-branding .vrl-cro-item:last-child { border-bottom: none; }

#vrl-branding .vrl-cro-check {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}

#vrl-branding .vrl-cro-check svg {
  width: 100%;
  height: 100%;
  stroke: #FF7A3D;
}

#vrl-branding .vrl-cro-item span {
  font-size: 15px;
  line-height: 1.5;
  color: #eef0f8;
}

/* ── Angle Steps (processo com tags de fase) ── */
#vrl-branding .vrl-angle-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

#vrl-branding .vrl-angle-step {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 14px;
  padding: 32px;
  transition: all 0.3s ease;
}

#vrl-branding .vrl-angle-step:hover {
  border-color: rgba(58, 123, 213, 0.12);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

#vrl-branding .vrl-angle-step-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #FF7A3D;
  padding: 4px 14px;
  border: 1px solid rgba(255, 122, 61, 0.25);
  border-radius: 6px;
  margin-bottom: 16px;
}

#vrl-branding .vrl-angle-tag-blue {
  color: #5a9bf6;
  border-color: rgba(90, 155, 246, 0.25);
}

#vrl-branding .vrl-angle-step h3 {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

#vrl-branding .vrl-angle-step p {
  font-size: 14px;
  line-height: 1.7;
  color: #a4adc4;
}

/* ══════════════════════════════════════
   MOBILE / TABLET (até 1024px)
   ══════════════════════════════════════ */
@media (max-width: 1024px) {
  #vrl-branding .vrl-section { padding: 60px 0; }
  #vrl-branding .vrl-section-title { font-size: 26px; }
  #vrl-branding .vrl-hero-typo { padding: 100px 0 60px; }
  #vrl-branding .vrl-hero-typo h1 { font-size: 32px; }
  #vrl-branding .vrl-hero-big-word { font-size: 80px; top: 40px; right: -20px; }
  #vrl-branding .vrl-definition-layout { grid-template-columns: 1fr; gap: 32px; }
  #vrl-branding .vrl-deliv-cols { grid-template-columns: 1fr 1fr; }
  #vrl-branding .vrl-cro-callout { grid-template-columns: 1fr; padding: 32px; }
  #vrl-branding .vrl-angle-steps { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  #vrl-branding .vrl-hero-typo { padding: 80px 0 40px; }
  #vrl-branding .vrl-hero-typo h1 { font-size: 26px; }
  #vrl-branding .vrl-hero-desc { font-size: 15px; }
  #vrl-branding .vrl-hero-big-word { font-size: 60px; }
  #vrl-branding .vrl-btn { width: 100%; justify-content: center; }
  #vrl-branding .vrl-deliv-cols { grid-template-columns: 1fr; }
  #vrl-branding .vrl-cro-callout { padding: 24px; }
  #vrl-branding .vrl-cta-box { padding: 40px 24px; }
}
