@charset "UTF-8";

/* ==========================================================================
   AL SOFT — ESTILOS ISOLADOS (Prefixo .al-)
   ========================================================================== */

/* ── Variáveis Globais ──────────────────────────────────────────────────── */
:root {
  /* Cores Principais AL Soft */
  --al-blue-primary: #0056FF; /* Azul principal dos botões e textos de destaque */
  --al-blue-light: #EBF2FF;   /* Azul muito claro para fundos e detalhes */
  --al-blue-gradient: linear-gradient(135deg, #0056FF 0%, #003BCC 100%);
  --al-dark-bg: #0B1120;      /* Fundo escuro do Footer e CTA */
  --al-dark-card: #111827;    /* Fundo escuro de cards no dark mode / form */
  
  /* Cores Neutras */
  --al-white: #FFFFFF;
  --al-gray-50: #F8FAFC;
  --al-gray-100: #F1F5F9;
  --al-gray-200: #E2E8F0;
  --al-gray-400: #94A3B8;
  --al-gray-600: #475569;
  --al-gray-800: #1E293B;     /* Textos principais escuros */
  
  /* Espaçamentos e Estrutura */
  --al-container: 1200px;
  --al-radius-sm: 8px;
  --al-radius-md: 12px;
  --al-radius-lg: 24px;
  --al-radius-pill: 999px;
  
  /* Sombras */
  --al-shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --al-shadow-md: 0 10px 15px -3px rgba(0, 86, 255, 0.08), 0 4px 6px -4px rgba(0, 86, 255, 0.04);
  --al-shadow-lg: 0 20px 25px -5px rgba(0, 86, 255, 0.1), 0 8px 10px -6px rgba(0, 86, 255, 0.05);
  
  /* Transições */
  --al-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --al-header-height: 80px;
}

/* ── Reset Local (.al-page) ──────────────────────────────────────────────── */
.al-page {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
  color: var(--al-gray-800);
  background-color: var(--al-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

.al-page *,
.al-page *::before,
.al-page *::after {
  box-sizing: inherit;
}

.al-page a {
  text-decoration: none;
  color: inherit;
  transition: var(--al-transition);
}

.al-page img {
  max-width: 100%;
  height: auto;
  display: block;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

/* ── Utilitários ───────────────────────────────────────────────────────── */
.al-container {
  width: 100%;
  max-width: var(--al-container);
  margin: 0 auto;
  padding: 0 24px;
}

.al-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--al-radius-pill);
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--al-transition);
  line-height: 1;
}

a.al-btn-primary, .al-btn-primary {
  background: var(--al-blue-primary);
  color: var(--al-white) !important;
  box-shadow: 0 4px 12px rgba(0, 86, 255, 0.2);
}

a.al-btn-primary:hover, .al-btn-primary:hover {
  background: #0044CC;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 86, 255, 0.3);
}

.al-btn-outline {
  background: transparent;
  color: var(--al-gray-600);
  border-color: var(--al-gray-200);
}

.al-btn-outline:hover {
  border-color: var(--al-blue-primary);
  color: var(--al-blue-primary);
  background: var(--al-blue-light);
}

.al-btn-icon-blue i {
  color: var(--al-blue-primary);
}

.al-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--al-blue-primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.al-badge::before {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background-color: var(--al-blue-primary);
}

/* ── Header ────────────────────────────────────────────────────────────── */
.al-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--al-header-height);
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  z-index: 1000;
  transition: var(--al-transition);
}

.al-header.scrolled {
  border-bottom-color: var(--al-gray-200);
  box-shadow: var(--al-shadow-sm);
  height: 70px;
}

.al-header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.al-logo img {
  height: 36px;
  transition: var(--al-transition);
}

.al-header.scrolled .al-logo img {
  height: 32px;
}

.al-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.al-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--al-gray-600);
  position: relative;
}

.al-nav a:hover,
.al-nav a.active {
  color: var(--al-blue-primary);
}

.al-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--al-blue-primary);
  border-radius: 2px;
}

.al-nav-divider {
  width: 1px;
  height: 24px;
  background-color: var(--al-gray-200);
}

.al-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--al-blue-primary) !important;
  font-weight: 600 !important;
}

.al-back-link:hover {
  opacity: 0.8;
}

/* Hamburguer */
.al-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.al-hamburger span {
  width: 100%;
  height: 2px;
  background-color: var(--al-gray-800);
  border-radius: 2px;
  transition: var(--al-transition);
}

/* Mobile Nav */
.al-mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--al-white);
  padding: 100px 24px 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
}

.al-mobile-nav.open {
  transform: translateX(0);
}

.al-mobile-nav a {
  font-size: 20px;
  font-weight: 600;
  color: var(--al-gray-800);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--al-gray-100);
}

/* ── Hero Section ──────────────────────────────────────────────────────── */
.al-hero {
  padding: 80px 0 80px;
  position: relative;
  background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
  overflow: hidden;
}

/* Decorações Hero (Linhas e Ícones Flutuantes) */
.al-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.6;
  background-image: 
    radial-gradient(circle at 100% 0%, rgba(0, 86, 255, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 0% 100%, rgba(0, 86, 255, 0.05) 0%, transparent 40%);
}

.al-hero-grid-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.4;
  background-size: 40px 40px;
  background-image: 
    linear-gradient(to right, rgba(0, 86, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 86, 255, 0.03) 1px, transparent 1px);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 80%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 80%);
}

.al-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.al-hero-content {
  max-width: 540px;
}

/* Decorações Hero (Linhas e Ícones Flutuantes) */
.al-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.6;
  background-image: 
    radial-gradient(circle at 100% 0%, rgba(0, 86, 255, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 0% 100%, rgba(0, 86, 255, 0.05) 0%, transparent 40%);
}

.al-hero-grid-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: 40px 40px;
  background-image: 
    linear-gradient(to right, rgba(0, 86, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 86, 255, 0.03) 1px, transparent 1px);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 80%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 80%);
}


.al-hero-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin: 20px 0 24px;
  color: var(--al-gray-800);
}

.al-hero-title span {
  color: var(--al-blue-primary);
}

.al-hero-desc {
  font-size: 18px;
  line-height: 1.6;
  color: var(--al-gray-600);
  margin-bottom: 32px;
}

.al-hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Área da Imagem */
.al-hero-image {
  position: relative;
}

.al-hero-mockup {
  position: relative;
  z-index: 2;
  border-radius: var(--al-radius-lg);
  box-shadow: 0 25px 50px -12px rgba(0, 86, 255, 0.15);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.5s ease;
}

.al-hero-mockup:hover {
  transform: perspective(1000px) rotateY(0deg);
}

/* Efeito de Reflexo no chão da Hero como no layout */
.al-hero-reflection {
  position: absolute;
  bottom: -40px;
  left: 5%;
  width: 90%;
  height: 60px;
  background: radial-gradient(ellipse at center, rgba(0, 86, 255, 0.4) 0%, transparent 70%);
  filter: blur(15px);
  z-index: 1;
  opacity: 0.6;
}

/* Ícones laterais da Hero (Esquerda e Direita) */
.al-hero-floating {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  background: var(--al-white);
  border-radius: 50%;
  box-shadow: 0 10px 25px -5px rgba(0, 86, 255, 0.15);
  color: var(--al-blue-primary);
  border: 1px solid rgba(0, 86, 255, 0.1);
  z-index: 3;
}

/* Ícones da Esquerda */
.al-float-l1 { top: 15%; left: -40px; animation: float 6s ease-in-out infinite; }
.al-float-l2 { top: 45%; left: -70px; animation: float 7s ease-in-out infinite 1s; }
.al-float-l3 { top: 75%; left: -40px; animation: float 6.5s ease-in-out infinite 0.5s; }

/* Ícones da Direita */
.al-float-r1 { top: 25%; right: -30px; animation: float 7.5s ease-in-out infinite 2s; }
.al-float-r2 { top: 55%; right: -60px; animation: float 6s ease-in-out infinite 1.5s; }
.al-float-r3 { top: 85%; right: -30px; animation: float 8s ease-in-out infinite 0.2s; }

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0px); }
}

/* ── Responsivo: Header e Hero ─────────────────────────────────────────── */
@media (max-width: 991px) {
  .al-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 60px;
  }
  
  .al-hero-content {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .al-hero-actions {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .al-hero-mockup {
    transform: none;
  }
  
  .al-nav {
    display: none;
  }
  
  .al-hamburger {
    display: flex;
  }
}

@media (max-width: 576px) {
  .al-hero {
    padding: 40px 0 40px;
  }
  
  .al-hero-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .al-btn {
    width: 100%;
  }
  
  .al-hero-floating {
    display: none; /* Oculta ícones flutuantes em telas muito pequenas */
  }
}

/* ── Section 2: Sobre / Benefícios ─────────────────────────────────────── */
.al-section {
  padding: 100px 0;
  position: relative;
}

.al-about-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: stretch;
}

.al-about-image {
  height: 100%;
}

.al-about-image img {
  border-radius: var(--al-radius-lg);
  box-shadow: var(--al-shadow-lg);
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.al-section-title {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--al-gray-800);
  margin-bottom: 24px;
}

.al-section-title span {
  color: var(--al-blue-primary);
}

.al-about-desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--al-gray-600);
  margin-bottom: 24px;
}

.al-about-quote {
  font-size: 15px;
  line-height: 1.6;
  font-style: italic;
  color: var(--al-gray-600);
  margin: 0 0 32px 0;
  padding: 12px 0 12px 20px;
  border-left: 3px solid var(--al-blue-primary);
  background: linear-gradient(to right, rgba(0, 86, 255, 0.03), transparent);
  border-radius: 0 var(--al-radius-sm) var(--al-radius-sm) 0;
}

.al-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.al-feature-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--al-white);
  padding: 24px;
  border-radius: var(--al-radius-md);
  border: 1px solid var(--al-gray-100);
  box-shadow: var(--al-shadow-sm);
  transition: var(--al-transition);
}

.al-feature-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--al-shadow-md);
  border-color: var(--al-blue-light);
}

.al-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background-color: var(--al-blue-light);
  color: var(--al-blue-primary);
  border-radius: 50%;
}

.al-feature-text h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--al-gray-800);
  margin: 0 0 6px 0;
  line-height: 1.3;
}

.al-feature-text p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--al-gray-600);
  margin: 0;
}

@media (max-width: 991px) {
  .al-about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 576px) {
  .al-features-grid {
    grid-template-columns: 1fr;
  }
}


/* ── Section 3: Processo Estratégico ───────────────────────────────────── */
.al-process {
  padding: 100px 0;
  background-color: var(--al-gray-50);
  position: relative;
  overflow: hidden;
}

.al-process-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 50% 50%, rgba(0, 86, 255, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

.al-process-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.al-process-header h2 {
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--al-gray-800);
  margin-bottom: 24px;
}

.al-process-header h2 span {
  color: var(--al-blue-primary);
}

.al-process-header p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--al-gray-600);
}

.al-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}

.al-process-card {
  background: var(--al-white);
  padding: 40px 24px;
  border-radius: var(--al-radius-lg);
  border: 1px solid var(--al-gray-100);
  box-shadow: var(--al-shadow-sm);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: var(--al-transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.al-process-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--al-shadow-md);
  border-color: var(--al-blue-light);
}

.al-process-icon {
  width: 64px;
  height: 64px;
  background: var(--al-white);
  border: 2px solid var(--al-blue-light);
  color: var(--al-blue-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: var(--al-transition);
}

.al-process-card:hover .al-process-icon {
  background: var(--al-blue-primary);
  color: var(--al-white);
  border-color: var(--al-blue-primary);
}

.al-process-line {
  width: 24px;
  height: 2px;
  background-color: var(--al-gray-200);
  margin-bottom: 20px;
}

.al-process-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--al-gray-800);
  margin-bottom: 12px;
}

.al-process-card p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--al-gray-600);
  margin: 0;
}

.al-process-card-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: var(--al-blue-gradient);
  opacity: 0;
  transition: var(--al-transition);
}

.al-process-card:hover .al-process-card-wave {
  opacity: 1;
}

@media (max-width: 991px) {
  .al-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .al-process-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Section 4: FAQ ────────────────────────────────────────────────────── */
.al-faq {
  padding: 100px 0;
  background-color: #f7f9fc;
  position: relative;
  overflow: hidden;
}

.al-faq-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.5;
  background-image: 
    radial-gradient(circle at -10% 50%, rgba(0, 86, 255, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 110% 80%, rgba(0, 86, 255, 0.05) 0%, transparent 40%);
}

.al-faq-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}

.al-faq-image {
  width: 100%;
  height: 100%;
  min-height: 500px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.al-faq-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.al-faq-title {
  margin-bottom: 16px;
  font-size: clamp(32px, 4vw, 48px);
}

.al-faq-desc {
  font-size: 16px;
  color: var(--al-gray-600);
  line-height: 1.6;
  margin-bottom: 40px;
}

.al-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.al-accordion-item {
  background: var(--al-white);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
  transition: var(--al-transition);
  overflow: hidden;
  border: 1px solid var(--al-gray-200);
}

.al-accordion-item.active {
  box-shadow: 0 8px 24px rgba(0, 86, 255, 0.08);
  border-color: transparent;
}

.al-accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 20px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: var(--al-transition);
}

.al-accordion-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 86, 255, 0.08);
  color: var(--al-blue-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--al-transition);
}

.al-accordion-item.active .al-accordion-icon {
  background: var(--al-blue-primary);
  color: var(--al-white);
}

.al-accordion-title {
  flex-grow: 1;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--al-gray-800);
  margin: 0 16px;
  transition: var(--al-transition);
}

.al-accordion-item.active .al-accordion-title {
  color: var(--al-blue-primary);
}

.al-accordion-caret {
  color: var(--al-blue-primary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.al-accordion-item.active .al-accordion-caret {
  transform: rotate(180deg);
}

.al-accordion-body {
  display: none;
  padding: 0 24px 24px 84px;
}

.al-accordion-body p {
  font-size: 15px;
  color: var(--al-gray-600);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 991px) {
  .al-faq-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .al-faq-image {
    min-height: 400px;
  }
}

@media (max-width: 576px) {
  .al-accordion-body {
    padding: 0 20px 20px 20px;
  }
  .al-accordion-header {
    padding: 16px;
  }
  .al-accordion-title {
    font-size: 14px;
  }
}

/* ── Section 5: CTA e Formulário ───────────────────────────────────────── */
.al-cta-form {
  padding: 100px 0;
  background-color: var(--al-dark-bg);
  position: relative;
  overflow: hidden;
  color: var(--al-white);
}

.al-cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at top left, rgba(0, 86, 255, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.al-cta-grid-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  background-size: 40px 40px;
  background-image: 
    linear-gradient(to right, rgba(255,255,255,0.2) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.2) 1px, transparent 1px);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
  pointer-events: none;
}

.al-cta-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.al-cta-title {
  font-size: clamp(32px, 4vw, 42px);
  margin-bottom: 24px;
  line-height: 1.2;
}

.al-cta-title span {
  color: #3b82f6; /* Azul Claro/Vivo para o dark mode */
}

.al-cta-desc {
  font-size: 16px;
  color: var(--al-gray-400);
  line-height: 1.6;
  margin-bottom: 32px;
}

.al-cta-highlight {
  margin-bottom: 40px;
  padding-left: 20px;
  border-left: 4px solid var(--al-blue-primary);
}

.al-cta-highlight strong {
  display: block;
  font-size: 18px;
  color: var(--al-white);
  margin-bottom: 8px;
}

.al-cta-highlight span {
  font-size: 16px;
  color: #3b82f6;
  font-weight: 500;
}

.al-cta-laptop-wrapper {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 40px auto 0;
}

.al-cta-laptop {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 2;
}

.al-cta-floating {
  position: absolute;
  background: var(--al-white);
  color: var(--al-gray-800);
  padding: 12px 20px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  z-index: 3;
  font-weight: 600;
  font-size: 13px;
}

.al-cta-floating i {
  color: var(--al-blue-primary);
}

.al-cta-float-top { top: -20px; left: 50%; transform: translateX(-50%); }
.al-cta-float-left { top: 40%; left: -40px; }
.al-cta-float-right-top { top: 20%; right: -20px; }
.al-cta-float-right-bottom { bottom: 20%; right: -30px; }

/* Form Card */
.al-form-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 40px;
  backdrop-filter: blur(10px);
}

.al-form-title {
  font-size: 28px;
  margin-bottom: 8px;
}

.al-form-underline {
  width: 40px;
  height: 4px;
  background: var(--al-blue-primary);
  border-radius: 2px;
  margin-bottom: 24px;
}

.al-form-desc {
  font-size: 15px;
  color: var(--al-gray-400);
  margin-bottom: 32px;
  line-height: 1.6;
}

.al-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.al-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.al-form-group input,
.al-form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 16px;
  color: var(--al-white);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  transition: var(--al-transition);
}

.al-form-group input::placeholder,
.al-form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.al-form-group input:focus,
.al-form-group textarea:focus {
  outline: none;
  border-color: var(--al-blue-primary);
  background: rgba(255, 255, 255, 0.1);
}

.al-btn-submit {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

.al-form-note {
  font-size: 13px;
  color: var(--al-gray-400);
  text-align: center;
  margin-top: 16px;
  line-height: 1.5;
}

.al-form-feedback {
  font-size: 14px;
  text-align: center;
  margin: 12px 0 0;
  padding: 12px;
  border-radius: 8px;
  display: none;
}

.al-form-feedback.success {
  display: block;
  background: rgba(16, 185, 129, 0.1);
  color: #10B981;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.al-form-feedback.error {
  display: block;
  background: rgba(239, 68, 68, 0.1);
  color: #EF4444;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

/* ── Footer ────────────────────────────────────────────────────────────── */
.al-footer {
  background-color: var(--al-gray-50);
  padding: 80px 0 24px;
  border-top: 1px solid var(--al-gray-200);
  position: relative;
}

.al-footer::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background-image: radial-gradient(var(--al-gray-400) 1px, transparent 1px);
  background-size: 16px 16px;
  opacity: 0.15;
  pointer-events: none;
}

.al-footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.al-footer-brand p {
  font-size: 15px;
  color: var(--al-gray-600);
  line-height: 1.6;
  margin-top: 24px;
  max-width: 400px;
}

.al-footer-col h4 {
  font-size: 18px;
  color: var(--al-blue-primary);
  margin-bottom: 24px;
  font-weight: 600;
}

.al-footer-nav ul,
.al-footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.al-footer-nav li,
.al-footer-contact li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--al-gray-600);
  font-size: 15px;
}

.al-footer-nav a {
  color: var(--al-gray-600);
  text-decoration: none;
  transition: var(--al-transition);
}

.al-footer-nav a:hover {
  color: var(--al-blue-primary);
}

.al-footer-nav i,
.al-footer-contact i {
  color: var(--al-blue-primary);
}

.al-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--al-gray-200);
  font-size: 14px;
  color: var(--al-gray-600);
}

.al-footer-sttec a {
  color: var(--al-blue-primary);
  text-decoration: none;
}

/* Responsividade CTA e Footer */
@media (max-width: 991px) {
  .al-cta-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .al-cta-laptop-wrapper {
    margin-bottom: 40px;
  }
  .al-cta-float-top,
  .al-cta-float-left,
  .al-cta-float-right-top,
  .al-cta-float-right-bottom {
    position: static;
    transform: none;
    display: inline-flex;
    margin: 8px;
  }
  .al-cta-laptop-wrapper {
    text-align: center;
  }
  .al-footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .al-footer-inner {
    grid-template-columns: 1fr;
  }
  .al-footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .al-form-card {
    padding: 24px;
  }
  .al-form-grid {
    grid-template-columns: 1fr;
  }
}


/* --- GLOBAL RESPONSIVE FIXES --- */
html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

/* Touch targets */
.btn, .tr-part-btn, .al-part-btn, .mobile-nav a {
  min-height: 44px;
}

/* ── Bottom Nav (Mobile) ───────────────────────── */
.al-bottom-nav {
  display: none;
}
.footer-legal {
  margin-top: 8px;
  font-size: 13px;
}
.footer-legal a {
  color: #94A3B8;
  text-decoration: none;
}

@media (max-width: 967px) {
  .al-hamburger, .al-mobile-nav, .nav, .al-nav {
    display: none !important;
  }
  
  body {
    padding-bottom: 64px;
  }

  .al-bottom-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(0,0,0,.06);
    box-shadow: 0 -4px 20px rgba(0,0,0,.06);
    z-index: 1000;
    padding-bottom: env(safe-area-inset-bottom, 0);
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 12px, #000 calc(100% - 12px), transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, #000 12px, #000 calc(100% - 12px), transparent 100%);
  }

  .al-bottom-nav-track {
    display: flex;
    height: 100%;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .al-bottom-nav-track::-webkit-scrollbar {
    display: none;
  }

  .al-bottom-nav-item {
    flex: 0 0 auto;
    scroll-snap-align: start;
    min-width: 72px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    text-decoration: none;
    color: #94A3B8;
    font-size: 11px;
    font-weight: 500;
    padding: 0 4px;
    transition: color .2s ease, transform .2s ease;
  }

  .al-bottom-nav-item svg {
    width: 22px;
    height: 22px;
    stroke-width: 2px;
  }

  .al-bottom-nav-item.is-active {
    color: var(--al-blue);
  }

  .al-bottom-nav-item.is-active svg {
    transform: translateY(-1px) scale(1.05);
  }

  .al-bottom-nav-item:active {
    transform: scale(0.92);
  }
}

/* COMPONENTE DE CONTATO RAPIDO */
.al-quick-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 480px;
}

.al-quick-contact-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  background: #0B1220;
  border: 1px solid rgba(96, 165, 250, 0.25);
  border-radius: 10px;
  padding: 0.85rem 1.1rem;
  text-decoration: none;
  transition: border-color .2s ease, transform .2s ease;
}

.al-quick-contact-item:hover {
  border-color: rgba(96, 165, 250, 0.55);
  transform: translateY(-1px);
}

.al-quick-contact-item--whatsapp {
  border-color: rgba(74, 222, 128, 0.3);
}

.al-quick-contact-item--whatsapp:hover {
  border-color: rgba(74, 222, 128, 0.6);
}

.al-quick-contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.al-icon-blue {
  background: #2563EB;
  color: #fff;
}

.al-icon-whatsapp {
  background: #22C55E;
  color: #fff;
}

.al-quick-contact-label {
  color: #E5E7EB;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.al-quick-contact-divider {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,.15);
  flex-shrink: 0;
}

.al-quick-contact-value {
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .02em;
}

.al-quick-contact-value--whatsapp {
  color: #4ADE80;
}

@media (max-width: 480px) {
  .al-quick-contact-item {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .al-quick-contact-divider {
    display: none;
  }
  .al-quick-contact-label {
    font-size: 13px;
    width: 100%;
  }
  .al-quick-contact-value {
    font-size: 14px;
    width: 100%;
  }
}

/* ===== Área do Suporte (Modal) ===== */
.al-support-wrap {
  text-align: center;
  padding: 0 0 1.5rem;
  position: relative;
  z-index: 1;
}
@keyframes alsoft-support-pulse {
  0% { box-shadow: 0 0 0 0 rgba(15, 23, 42, 0.2); }
  70% { box-shadow: 0 0 0 10px rgba(15, 23, 42, 0); }
  100% { box-shadow: 0 0 0 0 rgba(15, 23, 42, 0); }
}

.al-support-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(15, 23, 42, 0.05);
  border: 1px solid rgba(15, 23, 42, 0.3);
  color: #0f172a;
  font-size: 13px;
  font-weight: 600;
  padding: 0.55rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: alsoft-support-pulse 2s infinite;
}
.al-support-trigger svg { flex-shrink: 0; }
.al-support-trigger:hover {
  background: rgba(15, 23, 42, 0.1);
  border-color: rgba(15, 23, 42, 0.5);
  animation: none;
  transform: translateY(-2px);
}
.al-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  padding: 1rem;
}
.al-modal-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}
.al-modal {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  max-width: 420px;
  width: 100%;
  text-align: center;
  position: relative;
  transform: translateY(12px);
  transition: transform 0.25s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.al-modal-overlay.is-open .al-modal { transform: translateY(0); }
.al-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #6B7280;
  padding: 4px;
  line-height: 0;
}
.al-modal-close:hover { color: #111827; }
.al-modal-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #ECFDF3;
  color: #16A34A;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.al-modal-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #111827;
}
.al-modal-text {
  font-size: 14px;
  line-height: 1.6;
  color: #4B5563;
  margin-bottom: 1.25rem;
}
.al-modal-text--muted {
  font-size: 13px;
  color: #9CA3AF;
  margin-top: 1.25rem;
  margin-bottom: 0;
}
.al-modal-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #16A34A;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-size: 14px;
  transition: transform 0.15s ease, background 0.2s ease;
}
.al-modal-download-btn:hover {
  transform: translateY(-1px);
  background: #15803D;
}
@media (max-width: 480px) {
  .al-modal { padding: 1.5rem; }
  .al-modal-title { font-size: 16px; }
  .al-modal-download-btn { width: 100%; justify-content: center; }
}
