/* ═══════════════════════════════════════════
   Agentes de IA - Scoped Styles
   Escopo: #vrl-agentes
   ═══════════════════════════════════════════ */

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

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

#vrl-agentes .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-agentes .vrl-section-sub {
  font-size: 16px;
  line-height: 1.7;
  color: #a4adc4;
  max-width: 680px;
  margin-bottom: 48px;
}

/* Badge */
#vrl-agentes .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-agentes .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-agentes .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-agentes .vrl-btn-blue {
  background: #3a7bd5;
  color: #ffffff;
  border: none;
}

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

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

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

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

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

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

#vrl-agentes .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-agentes .vrl-cta-box .vrl-section-title {
  margin-top: 16px;
}

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

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

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

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

/* Accent */
#vrl-agentes .vrl-accent {
  color: #FF7A3D;
}

/* Hero Centralizado */
#vrl-agentes .vrl-hero-center {
  padding: 140px 0 60px;
  text-align: center;
}

#vrl-agentes .vrl-hero-center-content {
  max-width: 780px;
  margin: 0 auto;
}

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

#vrl-agentes .vrl-hero-center .vrl-hero-desc {
  font-size: 17px;
  line-height: 1.7;
  color: #a4adc4;
  margin-bottom: 36px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

#vrl-agentes .vrl-hero-center .vrl-hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Stats Bar */
#vrl-agentes .vrl-stats-section {
  padding: 0 0 60px;
}

#vrl-agentes .vrl-stats-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 32px 48px;
}

#vrl-agentes .vrl-stat {
  flex: 1;
  text-align: center;
}

#vrl-agentes .vrl-stat-num {
  display: block;
  font-size: 36px;
  font-weight: 700;
  color: #FF7A3D;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

#vrl-agentes .vrl-stat-label {
  display: block;
  font-size: 13px;
  color: #a4adc4;
  margin-top: 4px;
}

#vrl-agentes .vrl-stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.06);
  margin: 0 8px;
}

/* Alternating Row */
#vrl-agentes .vrl-alternating-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

#vrl-agentes .vrl-alt-text .vrl-section-title {
  margin-top: 16px;
}

#vrl-agentes .vrl-alt-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #a4adc4;
  margin: 16px 0 24px;
}

#vrl-agentes .vrl-alt-highlights {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

#vrl-agentes .vrl-alt-tag {
  padding: 8px 18px;
  border: 1px solid rgba(255, 122, 61, 0.25);
  border-radius: 8px;
  font-size: 13px;
  color: #FF9B5F;
  font-weight: 500;
}

/* Chat Mockup */
#vrl-agentes .vrl-chat-mockup {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 24px;
  max-width: 400px;
  margin: 0 auto;
}

#vrl-agentes .vrl-chat-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 600;
  color: #eef0f8;
}

#vrl-agentes .vrl-chat-dot {
  width: 8px;
  height: 8px;
  background: #25d366;
  border-radius: 50%;
}

#vrl-agentes .vrl-chat-header small {
  font-weight: 400;
  color: #25d366;
  font-size: 12px;
  margin-left: auto;
}

#vrl-agentes .vrl-chat-msg {
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 10px;
  max-width: 85%;
}

#vrl-agentes .vrl-chat-user {
  background: rgba(58, 123, 213, 0.12);
  color: #eef0f8;
  margin-left: auto;
  border-bottom-right-radius: 4px;
}

#vrl-agentes .vrl-chat-agent {
  background: rgba(255, 255, 255, 0.04);
  color: #a4adc4;
  border-bottom-left-radius: 4px;
}

/* Engineering Cards */
#vrl-agentes .vrl-eng-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}

#vrl-agentes .vrl-eng-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 14px;
  padding: 28px;
  transition: all 0.3s ease;
}

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

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

#vrl-agentes .vrl-eng-bar-blue {
  background: #3a7bd5;
}

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

#vrl-agentes .vrl-eng-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #a4adc4;
}

/* Ecosystem */
#vrl-agentes .vrl-eco-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}

#vrl-agentes .vrl-eco-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s ease;
}

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

#vrl-agentes .vrl-eco-top {
  height: 4px;
}

#vrl-agentes .vrl-eco-top-orange {
  background: #FF7A3D;
}

#vrl-agentes .vrl-eco-top-blue {
  background: #3a7bd5;
}

#vrl-agentes .vrl-eco-card h3,
#vrl-agentes .vrl-eco-card p {
  padding: 0 28px;
}

#vrl-agentes .vrl-eco-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: #ffffff;
  margin: 24px 0 8px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

#vrl-agentes .vrl-eco-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #a4adc4;
}

#vrl-agentes .vrl-eco-checks {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 28px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  margin-top: 20px;
}

#vrl-agentes .vrl-eco-checks span {
  font-size: 13px;
  color: #a4adc4;
}

#vrl-agentes .vrl-eco-checks span::before {
  content: '\2713';
  color: #FF7A3D;
  margin-right: 8px;
  font-weight: 700;
}

/* Tech List */
#vrl-agentes .vrl-tech-list {
  max-width: 680px;
  margin: 0 auto;
}

#vrl-agentes .vrl-tech-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

#vrl-agentes .vrl-tech-row:hover {
  border-color: rgba(58, 123, 213, 0.12);
}

#vrl-agentes .vrl-tech-name {
  font-size: 15px;
  color: #eef0f8;
  font-weight: 500;
}

#vrl-agentes .vrl-tech-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 14px;
  border-radius: 6px;
  border: 1px solid;
}

#vrl-agentes .vrl-tech-badge-orange {
  color: #FF7A3D;
  border-color: rgba(255, 122, 61, 0.3);
}

#vrl-agentes .vrl-tech-badge-blue {
  color: #5a9bf6;
  border-color: rgba(90, 155, 246, 0.3);
}

/* Process Steps (horizontal) */
#vrl-agentes .vrl-process-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-top: 48px;
}

#vrl-agentes .vrl-process-step {
  text-align: center;
  max-width: 160px;
}

#vrl-agentes .vrl-process-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #FF7A3D;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: #FF7A3D;
  margin: 0 auto 12px;
  background: #080c1e;
}

#vrl-agentes .vrl-process-circle-check {
  border-color: #3a7bd5;
  color: #3a7bd5;
}

#vrl-agentes .vrl-process-circle-check svg {
  width: 20px;
  height: 20px;
}

#vrl-agentes .vrl-process-connector {
  width: 40px;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  margin-top: 24px;
  flex-shrink: 0;
}

#vrl-agentes .vrl-process-step h3 {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 6px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

#vrl-agentes .vrl-process-step p {
  font-size: 13px;
  line-height: 1.5;
  color: #a4adc4;
}

/* Audience Wide (stacked horizontal) */
#vrl-agentes .vrl-audience-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}

#vrl-agentes .vrl-audience-wide {
  display: flex;
  align-items: center;
  gap: 24px;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 14px;
  padding: 28px 32px;
  transition: all 0.3s ease;
}

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

#vrl-agentes .vrl-audience-wide-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

#vrl-agentes .vrl-audience-wide-icon svg {
  width: 100%;
  height: 100%;
  stroke: #FF7A3D;
}

#vrl-agentes .vrl-audience-wide-text h3 {
  font-size: 17px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 4px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

#vrl-agentes .vrl-audience-wide-text p {
  font-size: 14px;
  line-height: 1.6;
  color: #a4adc4;
}

/* ══════════════════════════════════════
   MOBILE / TABLET (até 1024px)
   ══════════════════════════════════════ */
@media (max-width: 1024px) {
  #vrl-agentes .vrl-section {
    padding: 60px 0;
  }
  #vrl-agentes .vrl-section-title {
    font-size: 26px;
  }
  #vrl-agentes .vrl-hero-center {
    padding: 100px 0 40px;
  }
  #vrl-agentes .vrl-hero-center h1 {
    font-size: 32px;
  }
  #vrl-agentes .vrl-stats-bar {
    flex-wrap: wrap;
    gap: 24px;
    padding: 24px;
  }
  #vrl-agentes .vrl-stat-divider {
    display: none;
  }
  #vrl-agentes .vrl-stat {
    flex: 0 0 45%;
  }
  #vrl-agentes .vrl-alternating-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  #vrl-agentes .vrl-eng-grid {
    grid-template-columns: 1fr 1fr;
  }
  #vrl-agentes .vrl-eco-grid {
    grid-template-columns: 1fr;
  }
  #vrl-agentes .vrl-process-row {
    flex-wrap: wrap;
    gap: 16px;
  }
  #vrl-agentes .vrl-process-connector {
    display: none;
  }
  #vrl-agentes .vrl-process-step {
    flex: 0 0 30%;
  }
}

@media (max-width: 480px) {
  #vrl-agentes .vrl-hero-center {
    padding: 80px 0 32px;
  }
  #vrl-agentes .vrl-hero-center h1 {
    font-size: 26px;
  }
  #vrl-agentes .vrl-stat {
    flex: 0 0 100%;
  }
  #vrl-agentes .vrl-btn {
    width: 100%;
    justify-content: center;
  }
  #vrl-agentes .vrl-eng-grid {
    grid-template-columns: 1fr;
  }
  #vrl-agentes .vrl-process-step {
    flex: 0 0 100%;
    max-width: 100%;
  }
  #vrl-agentes .vrl-audience-wide {
    flex-direction: column;
    text-align: center;
  }
  #vrl-agentes .vrl-cta-box {
    padding: 40px 24px;
  }
}
