/* =========================================
   ASSISTÊNCIA TÉCNICA — ESTILOS ESPECÍFICOS
   ========================================= */

/* Navbar sempre sólida nesta página */
.navbar.scrolled .nav-link { color: var(--gray); }
.navbar.scrolled .logo-text { color: var(--dark); }
.navbar.scrolled .hamburger span { background: var(--dark); }

.active-page {
  color: var(--primary) !important;
  font-weight: 700 !important;
}

/* Variáveis laranja */
:root {
  --orange: #f97316;
  --orange-dark: #ea580c;
  --orange-light: #fb923c;
}

/* =========================================
   HERO ASSISTÊNCIA
   ========================================= */
.at-hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #1c1917 0%, #292524 40%, #1c1917 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}

.at-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.at-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.25;
  animation: float 9s ease-in-out infinite;
}

.ab1 {
  width: 600px; height: 600px;
  background: var(--orange);
  top: -150px; left: -150px;
  animation-delay: 0s;
}

.ab2 {
  width: 400px; height: 400px;
  background: #7c2d12;
  bottom: -100px; right: -80px;
  animation-delay: 4s;
}

.at-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(249,115,22,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249,115,22,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
}

.at-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}

.at-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249,115,22,0.15);
  border: 1px solid rgba(249,115,22,0.3);
  color: var(--orange-light);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
  width: fit-content;
}

.at-hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(34px, 4.5vw, 60px);
  font-weight: 800;
  color: white;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.gradient-text-orange {
  background: linear-gradient(135deg, #fb923c, #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.at-hero-subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  line-height: 1.7;
  max-width: 480px;
}

.at-hero-subtitle strong { color: #fb923c; font-weight: 700; }

.at-hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.btn-orange {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark)) !important;
  box-shadow: 0 4px 20px rgba(249,115,22,0.4) !important;
}

.btn-orange:hover {
  box-shadow: 0 8px 30px rgba(249,115,22,0.5) !important;
}

.btn-secondary-dark {
  color: rgba(255,255,255,0.85) !important;
  border-color: rgba(255,255,255,0.25) !important;
}

.btn-secondary-dark:hover {
  background: rgba(255,255,255,0.1) !important;
  border-color: rgba(255,255,255,0.5) !important;
  color: white !important;
}

.at-trust-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.at-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  font-weight: 500;
}

/* --- Hero Visual --- */
.at-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 460px;
}

.at-cert-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(249,115,22,0.25);
  border-radius: 28px;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.08);
  position: relative;
  z-index: 2;
}

.cert-icon-wrap {
  width: 100px; height: 100px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  box-shadow: 0 12px 40px rgba(249,115,22,0.5);
  animation: icon-pulse 3s ease-in-out infinite;
}

@keyframes icon-pulse {
  0%, 100% { box-shadow: 0 12px 40px rgba(249,115,22,0.5); }
  50% { box-shadow: 0 16px 60px rgba(249,115,22,0.7); }
}

.cert-title {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: white;
}

.cert-sub {
  font-size: 15px;
  color: var(--orange-light);
  font-weight: 600;
}

.cert-detail {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  background: rgba(249,115,22,0.1);
  border: 1px solid rgba(249,115,22,0.2);
  padding: 5px 14px;
  border-radius: 50px;
}

.cert-divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 8px 0;
}

.cert-stats-row {
  display: flex;
  gap: 32px;
}

.cert-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.cs-num {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: white;
}

.cs-label {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  text-align: center;
}

/* Floating cards */
.at-float-card {
  position: absolute;
  background: rgba(255,255,255,0.95);
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  min-width: 180px;
  z-index: 3;
}

.afc1 { top: 20px; right: -20px; animation: float-card 4s ease-in-out infinite; animation-delay: 0.5s; }
.afc2 { bottom: 40px; left: -20px; animation: float-card 4s ease-in-out infinite; animation-delay: 2s; }

.afc-icon { font-size: 24px; }

.afc-text { display: flex; flex-direction: column; line-height: 1.3; }
.afc-text strong { font-size: 14px; font-weight: 700; color: var(--dark); }
.afc-text span { font-size: 11px; color: var(--gray); }

/* =========================================
   SECTION TAG VARIANTES
   ========================================= */
.section-tag-orange {
  background: rgba(249,115,22,0.1);
  color: var(--orange);
}

.section-tag-white {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
}

/* =========================================
   SERVIÇOS
   ========================================= */
.at-services {
  padding: 100px 0;
  background: var(--bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  background: white;
  border-radius: 20px;
  padding: 36px 32px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  border: 2px solid transparent;
  transition: border-color var(--transition);
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.1);
}

.service-card:hover::after {
  border-color: rgba(249,115,22,0.3);
}

.sc-main {
  border: 2px solid rgba(249,115,22,0.25);
  background: linear-gradient(135deg, #fff 80%, #fff7ed);
}

.service-icon-wrap {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--sc1), var(--sc2));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.service-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--dark2);
  font-weight: 500;
}

.service-list li::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}

.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 700;
  transition: all var(--transition);
}

.service-cta:hover {
  gap: 12px;
  color: var(--orange-dark);
}

/* =========================================
   AUTORIZADA
   ========================================= */
.at-autorizada {
  padding: 100px 0;
  background: linear-gradient(135deg, #1c1917 0%, #292524 100%);
  position: relative;
  overflow: hidden;
}

.at-autorizada::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(249,115,22,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249,115,22,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.aut-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.aut-badge-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.aut-shield {
  width: 180px; height: 180px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 20px 60px rgba(249,115,22,0.5);
  animation: icon-pulse 3s ease-in-out infinite;
}

.aut-check {
  position: absolute;
  bottom: -12px; right: -12px;
  width: 48px; height: 48px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(34,197,94,0.5);
  border: 3px solid #1c1917;
}

.aut-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 800;
  color: white;
  line-height: 1.2;
  margin: 12px 0 20px;
}

.aut-content p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}

.aut-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.aut-feat {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.aut-feat-icon {
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.aut-feat strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: white;
  margin-bottom: 2px;
}

.aut-feat span {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}

/* =========================================
   PROCESSO
   ========================================= */
.at-process {
  padding: 100px 0;
  background: linear-gradient(180deg, #fff7ed 0%, #ffedd5 100%);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  padding-top: 20px;
}

.process-line {
  position: absolute;
  top: 44px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  z-index: 0;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-num {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px; height: 24px;
  background: var(--orange);
  color: white;
  font-size: 11px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.step-icon {
  width: 72px; height: 72px;
  background: white;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-bottom: 20px;
  margin-top: 8px;
  box-shadow: 0 8px 32px rgba(249,115,22,0.15);
  border: 2px solid rgba(249,115,22,0.15);
  transition: all var(--transition);
}

.step-item:hover .step-icon {
  background: var(--orange);
  color: white;
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(249,115,22,0.35);
}

.step-item h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.step-item p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
}

/* =========================================
   PROBLEMAS COMUNS
   ========================================= */
.at-problems {
  padding: 100px 0;
  background: var(--bg);
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.problem-card {
  background: white;
  border-radius: 16px;
  padding: 28px 24px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: all var(--transition);
  position: relative;
}

.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
  border-color: rgba(249,115,22,0.2);
}

.problem-icon {
  font-size: 36px;
  margin-bottom: 14px;
  display: block;
}

.problem-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.problem-card p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 16px;
}

.problem-urgency {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.problem-urgency.urgent {
  background: rgba(239,68,68,0.1);
  color: #dc2626;
}

.problem-urgency.medium {
  background: rgba(249,115,22,0.1);
  color: var(--orange-dark);
}

.problem-urgency.low {
  background: rgba(34,197,94,0.1);
  color: #15803d;
}

.problems-cta {
  text-align: center;
}

.problems-cta p {
  font-size: 16px;
  color: var(--gray);
  margin-bottom: 16px;
  font-weight: 500;
}

/* =========================================
   CTA BANNER VARIANTE LARANJA
   ========================================= */
.at-cta-banner {
  background: linear-gradient(135deg, #c2410c 0%, #ea580c 60%, #f97316 100%) !important;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .at-hero-container { grid-template-columns: 1fr; text-align: center; }
  .at-badge { margin: 0 auto 24px; }
  .at-hero-subtitle { max-width: 100%; }
  .at-hero-ctas { justify-content: center; }
  .at-trust-row { justify-content: center; }
  .at-hero-visual { min-height: 360px; }

  .services-grid { grid-template-columns: 1fr; }
  .problems-grid { grid-template-columns: repeat(2, 1fr); }

  .aut-container { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .aut-badge-wrap { justify-content: center; }
  .aut-content p { max-width: 100%; }
  .aut-features { align-items: flex-start; text-align: left; }

  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-line { display: none; }
}

@media (max-width: 768px) {
  .at-hero-container { padding: 60px 24px 80px; }
  .problems-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 24px; }

  .at-float-card { display: none; }

  .at-services,
  .at-autorizada,
  .at-process,
  .at-problems { padding: 72px 0; }
}

@media (max-width: 480px) {
  .at-hero-ctas { flex-direction: column; width: 100%; }
  .at-hero-ctas .btn-primary,
  .at-hero-ctas .btn-secondary { width: 100%; justify-content: center; }
  .process-steps { grid-template-columns: 1fr; }
  .cert-stats-row { gap: 20px; }
}
