/* ═══════════════════════════════════════════
   Manutencao - Scoped Styles
   Escopo: #vrl-manutencao
   ═══════════════════════════════════════════ */

#vrl-manutencao .vrl-section {
  padding: 80px 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Hero com ciclo visual */
#vrl-manutencao .vrl-hero-cycle {
  padding: 140px 0 60px;
}

#vrl-manutencao .vrl-hero-cycle > .vrl-container {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 56px;
  align-items: center;
}

#vrl-manutencao .vrl-hero-cycle-content {
  max-width: 640px;
}

#vrl-manutencao .vrl-hero-cycle 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-manutencao .vrl-hero-desc {
  font-size: 17px;
  line-height: 1.7;
  color: #a4adc4;
  margin-bottom: 36px;
}

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

#vrl-manutencao .vrl-cycle-visual {
  width: 220px;
  height: 220px;
  position: relative;
  flex-shrink: 0;
}

#vrl-manutencao .vrl-cycle-ring {
  width: 100%;
  height: 100%;
  border: 2px solid rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  position: relative;
  animation: vrlSlowSpin 20s linear infinite;
}

@keyframes vrlSlowSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

#vrl-manutencao .vrl-cycle-item {
  position: absolute;
  background: #080c1e;
  padding: 6px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 122, 61, 0.2);
  font-size: 12px;
  font-weight: 600;
  color: #FF9B5F;
  letter-spacing: 0.5px;
  white-space: nowrap;
  animation: vrlCounterSpin 20s linear infinite;
}

@keyframes vrlCounterSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}

#vrl-manutencao .vrl-cycle-item-1 { top: -14px; left: 50%; margin-left: -32px; }
#vrl-manutencao .vrl-cycle-item-2 { right: -20px; top: 50%; margin-top: -14px; }
#vrl-manutencao .vrl-cycle-item-3 { bottom: -14px; left: 50%; margin-left: -36px; }
#vrl-manutencao .vrl-cycle-item-4 { left: -16px; top: 50%; margin-top: -14px; }

/* Certification Callout */
#vrl-manutencao .vrl-cert-callout {
  display: flex;
  align-items: center;
  gap: 32px;
  background: rgba(255, 122, 61, 0.03);
  border: 1px solid rgba(255, 122, 61, 0.12);
  border-radius: 16px;
  padding: 36px 40px;
}

#vrl-manutencao .vrl-cert-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

#vrl-manutencao .vrl-cert-shield svg {
  width: 48px;
  height: 48px;
  stroke: #FF7A3D;
}

#vrl-manutencao .vrl-cert-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #FF7A3D;
  margin-bottom: 4px;
}

#vrl-manutencao .vrl-cert-label h3 {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  white-space: nowrap;
}

#vrl-manutencao .vrl-cert-callout > p {
  font-size: 15px;
  line-height: 1.7;
  color: #a4adc4;
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  padding-left: 32px;
}

/* Areas Grid */
#vrl-manutencao .vrl-areas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

#vrl-manutencao .vrl-area-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 14px;
  padding: 28px;
  border-left: 4px solid;
  transition: all 0.3s ease;
}

#vrl-manutencao .vrl-area-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

#vrl-manutencao .vrl-area-orange { border-left-color: #FF7A3D; }
#vrl-manutencao .vrl-area-blue { border-left-color: #3a7bd5; }

#vrl-manutencao .vrl-area-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  margin-top: 2px;
}

#vrl-manutencao .vrl-area-icon svg {
  width: 100%;
  height: 100%;
  stroke: #5a9bf6;
}

#vrl-manutencao .vrl-area-orange .vrl-area-icon svg { stroke: #FF7A3D; }

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

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

/* Impact Strip */
#vrl-manutencao .vrl-impact-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}

#vrl-manutencao .vrl-impact-item {
  text-align: center;
  padding: 36px 24px;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 14px;
  transition: all 0.3s ease;
}

#vrl-manutencao .vrl-impact-item:hover {
  transform: translateY(-3px);
  border-color: rgba(58, 123, 213, 0.12);
}

#vrl-manutencao .vrl-impact-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 16px;
}

#vrl-manutencao .vrl-impact-icon svg {
  width: 100%;
  height: 100%;
  stroke: #FF7A3D;
}

#vrl-manutencao .vrl-impact-item h3 {
  font-size: 17px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

#vrl-manutencao .vrl-impact-item p {
  font-size: 13px;
  line-height: 1.6;
  color: #a4adc4;
}

/* Stagger Steps */
#vrl-manutencao .vrl-stagger-steps {
  max-width: 680px;
  margin: 40px auto 0;
}

#vrl-manutencao .vrl-stagger-step {
  display: flex;
  gap: 24px;
}

#vrl-manutencao .vrl-stagger-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

#vrl-manutencao .vrl-stagger-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #FF7A3D;
  border: 3px solid #080c1e;
  box-shadow: 0 0 0 2px rgba(255, 122, 61, 0.3);
  flex-shrink: 0;
}

#vrl-manutencao .vrl-stagger-dot-blue {
  background: #3a7bd5;
  box-shadow: 0 0 0 2px rgba(58, 123, 213, 0.3);
}

#vrl-manutencao .vrl-stagger-line {
  width: 2px;
  flex: 1;
  min-height: 40px;
  background: linear-gradient(180deg, rgba(255, 122, 61, 0.2) 0%, rgba(58, 123, 213, 0.2) 100%);
}

#vrl-manutencao .vrl-stagger-step-last .vrl-stagger-marker {
  align-items: center;
}

#vrl-manutencao .vrl-stagger-content {
  padding-bottom: 40px;
}

#vrl-manutencao .vrl-stagger-step-last .vrl-stagger-content {
  padding-bottom: 0;
}

#vrl-manutencao .vrl-stagger-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #FF7A3D;
  margin-bottom: 8px;
}

#vrl-manutencao .vrl-stagger-tag-blue { color: #5a9bf6; }

#vrl-manutencao .vrl-stagger-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 6px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

#vrl-manutencao .vrl-stagger-content p {
  font-size: 14px;
  line-height: 1.7;
  color: #a4adc4;
}

/* ══════════════════════════════════════
   MOBILE / TABLET
   ══════════════════════════════════════ */
@media (max-width: 1024px) {
  #vrl-manutencao .vrl-section { padding: 60px 0; }
  #vrl-manutencao .vrl-section-title { font-size: 26px; }
  #vrl-manutencao .vrl-hero-cycle { padding: 100px 0 40px; }
  #vrl-manutencao .vrl-hero-cycle > .vrl-container { grid-template-columns: 1fr; }
  #vrl-manutencao .vrl-hero-cycle h1 { font-size: 32px; }
  #vrl-manutencao .vrl-cycle-visual { display: none; }
  #vrl-manutencao .vrl-cert-callout { flex-direction: column; align-items: flex-start; }
  #vrl-manutencao .vrl-cert-callout > p { border-left: none; padding-left: 0; border-top: 1px solid rgba(255,255,255,0.06); padding-top: 20px; }
  #vrl-manutencao .vrl-areas-grid { grid-template-columns: 1fr; }
  #vrl-manutencao .vrl-impact-strip { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  #vrl-manutencao .vrl-hero-cycle { padding: 80px 0 32px; }
  #vrl-manutencao .vrl-hero-cycle h1 { font-size: 26px; }
  #vrl-manutencao .vrl-hero-desc { font-size: 15px; }
  #vrl-manutencao .vrl-btn { width: 100%; justify-content: center; }
  #vrl-manutencao .vrl-cert-callout { padding: 24px; }
  #vrl-manutencao .vrl-area-card { flex-direction: column; }
  #vrl-manutencao .vrl-cta-box { padding: 40px 24px; }
}
