/* ============================================================
   LIVECRED - CSS Principal
   Sistema para Crédito Consignado | Software para CORBANs
   Versão: 4.0 | Design Moderno Fintech
   ============================================================ */

/* ============================================================
   1. VARIÁVEIS CSS (Design Tokens)
   ============================================================ */
:root {
  /* Paleta Principal */
  --primary: #457ee7;
  --primary-dark: #386fd4;
  --primary-light: #578ef3;
  --secondary: #457ee7;
  --accent: #06b6d4;

  /* Gradientes */
  --gradient-primary: #457ee7;
  --gradient-hero: #457ee7;
  --gradient-dark: #457ee7;
  --gradient-card: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);

  /* Neutros */
  --dark: #353535;
  --dark-2: #363636;
  --dark-3: #2e2e2e;
  --gray: #5d5d5d;
  --gray-light: #94a3b8;
  --border: #e2e8f0;
  --bg-light: #f8fafc;
  --white: #ffffff;

  /* Tipografia */
  --font-primary: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;

  /* Espaçamentos */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.2rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Bordas e Sombras */
  --radius-sm: 0.375rem;
  --radius: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-blue: 0 4px 6px rgba(26, 86, 219, 0.3);

  /* Transições */
  --transition-fast: 150ms ease;
  --transition: 300ms ease;
  --transition-slow: 500ms ease;
}

::placeholder {
  color:#C2C2C2 !important;
  opacity: 1;
  font-weight: 300;
}

/* ============================================================
   2. RESET E BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  color: var(--dark-3);
  line-height: 1.6;
  background-color: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul, ol {
  list-style: none;
}

/* ============================================================
   3. TIPOGRAFIA
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  color: var(--dark);
}



h1 { font-size: clamp(2rem, 5vw, var(--font-size-5xl)); }
h2 { font-size: clamp(1.5rem, 3vw, var(--font-size-4xl)); }
h3 { font-size: clamp(1.25rem, 2.5vw, var(--font-size-3xl)); }
h4 { font-size: var(--font-size-2xl); }
h5 { font-size: var(--font-size-xl); }
h6 { font-size: var(--font-size-lg); }

p {
  color: var(--gray);
  line-height: 1.7;
}

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: #5b8dea;
  color: var(--white);
  font-size: var(--font-size-sm);
  font-weight: 600;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
  border: 1px solid rgba(26, 86, 219, 0.2);
}

.section-title {
  font-size: clamp(1.6rem, 1.9vw, 2rem);
  font-weight: 600;
  color: var(--dark);
  margin-bottom: var(--space-4);
}

.section-subtitle {
  font-size: var(--font-size-lg);
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto var(--space-12);
  line-height: 1.7;
}

/* ============================================================
   4. BOTÕES
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: var(--font-size-base);
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: var(--shadow-blue);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 15px rgba(26, 86, 219, 0.4);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  background: var(--bg-light);
  color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border-color: var(--white);
}

. {
  padding: 1rem 2.5rem;
  font-size: var(--font-size-lg);
}

.btn-sm {
  padding: 0.4rem 1.2rem;
  font-size: var(--font-size-sm);
}

/* ============================================================
   5. NAVBAR
   ============================================================ */
.navbar-livecred {
  background: #FFF;
  transition: opacity 0.6s ease, transform 1s ease;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.7rem 0;
  position: relative;
  width:100%;
  top:0;
  left: 0;
  right: 0;
  z-index: 100;
}

.navbar-livecred.scrolled {
    background: #FFF;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
    position: fixed;
    animation: fadeInDown 0.5s ease; /* efeito extra de entrada */
  }

.navbar-brand-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.navbar-brand-logo .logo-text {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.5px;
}

.navbar-brand-logo .logo-text span {
  color: var(--primary);
}

.navbar-brand-logo .logo-icon {
  width: 38px;
  height: 38px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: white;
}

.navbar-livecred .nav-link {
  color: var(--dark) !important;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.5rem 0.75rem !important;
  border-radius: var(--radius);
  transition: all var(--transition);
  position: relative;
}

.navbar-livecred .nav-link:hover,
.navbar-livecred .nav-link.active {
  color: var(--dark) !important;
  background: rgba(255, 255, 255, 0.08);
}

.navbar-livecred .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--secondary);
  border-radius: var(--radius-full);
  transition: width var(--transition);
}

.navbar-livecred .nav-link:hover::after,
.navbar-livecred .nav-link.active::after {
  width: 60%;
}

.navbar-top-bar {
  background: #FFF;
  padding: 0.4rem 0;
  font-size: 0.8rem;
  color: #587ec3;
  border-bottom: 1px solid #f3f3f3;
}

.navbar-top-bar a {
  color: rgba(255, 255, 255, 0.9);
  transition: color var(--transition);
}

.navbar-top-bar a:hover {
  color: var(--white);
}

.navbar-toggler {
  border: 1px solid rgba(0, 0, 0, 0.2) !important;
  background-color: #212529; /* fundo escuro */
  padding: 0.45rem 0.65rem;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.navbar-toggler:hover {
  background-color: #000;
  transform: scale(1.05);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(0,0,0,0.25);
}

.navbar-toggler-icon {
  filter: invert(1); /* deixa o ícone branco */
}

/* ============================================================
   6. HERO / BANNER PRINCIPAL
   ============================================================ */
.hero-section {
  background: var(--gradient-hero);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 40px;
  padding-bottom: 38px;
}


.hero-content {
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: var(--white);
  font-size: var(--font-size-sm);
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-6);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-badge .badge-dot {
  width: 8px;
  height: 8px;
  background: #63ff9c;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.2); }
}

.hero-title {
  font-size: clamp(1.9rem, 3vw, 3rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: var(--space-6);
  letter-spacing: -1px;
}

.hero-title .highlight {
  color: var(--secondary);
  position: relative;
}

.hero-description {
  font-size: var(--font-size-lg);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-8);
  max-width: 540px;
  line-height: 1.7;
  min-height: 95px;
}

.hero-cta-group {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-bottom: var(--space-6);
}

.hero-stats {
  display: flex;
  gap: var(--space-8);
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}

.hero-stat .stat-number {
  font-size: var(--font-size-2xl);
  font-weight: 800;
  color: var(--white);
  display: block;
}

.hero-stat .stat-label {
  font-size: var(--font-size-xs);
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-visual {
  position: relative;
  z-index: 2;
}

.hero-card-main {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  color: var(--white);
}

.hero-card-float {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  box-shadow: var(--shadow-xl);
  animation: float 3s ease-in-out infinite;
}

.hero-card-float:nth-child(2) { animation-delay: 1s; }
.hero-card-float:nth-child(3) { animation-delay: 2s; }

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* ============================================================
   7. SEÇÕES GERAIS
   ============================================================ */
.section-padding {
  padding: var(--space-12) 0;
}

.section-padding-sm {
  padding: var(--space-12) 0;
}

.section-center {
  text-align: center;
}

.section-header {
  margin-bottom: var(--space-12);
}

.bg-light-custom {
  background-color: var(--bg-light);
}

.bg-dark-custom {
  background: var(--gradient-dark);
  color: var(--white);
}

.bg-primary-custom {
  background: var(--gradient-primary);
  color: var(--white);
}

/* ============================================================
   8. CARDS
   ============================================================ */
.feature-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: all var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(26, 86, 219, 0.2);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: var(--space-4);
  background: rgba(26, 86, 219, 0.1);
  color: var(--primary);
  transition: all var(--transition);
}

.feature-card:hover .feature-icon {
  background: var(--gradient-primary);
  color: var(--white);
  transform: scale(1.1);
}

.feature-card h4, .feature-card h5 {
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: var(--space-3);
}

.feature-card p {
  font-size: var(--font-size-sm);
  color: var(--gray);
  margin: 0;
}

/* Card de Módulo */
.module-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
  text-align: center;
  height: 100%;
}

.module-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.module-card .module-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin: 0 auto var(--space-3);
  background: var(--gradient-primary);
  color: var(--white);
}

.module-card h5 {
  font-size: var(--font-size-base);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: var(--space-2);
}

.module-card p {
  font-size: var(--font-size-xs);
  color: var(--gray);
  margin: 0;
}

/* Card de Atualização */
.update-card {
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  color: var(--white);
  height: 100%;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.update-card::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.update-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.update-card-blue { background: linear-gradient(135deg, #1a56db, #3b82f6); }
.update-card-teal { background: linear-gradient(135deg, #0891b2, #06b6d4); }
.update-card-green { background: linear-gradient(135deg, #059669, #10b981); }
.update-card-pink { background: linear-gradient(135deg, #db2777, #ec4899); }
.update-card-purple { background: linear-gradient(135deg, #7c3aed, #8b5cf6); }
.update-card-orange { background: linear-gradient(135deg, #d97706, #f59e0b); }
.update-card-indigo { background: linear-gradient(135deg, #4338ca, #6366f1); }
.update-card-rose { background: linear-gradient(135deg, #be123c, #f43f5e); }

.update-card h5 {
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-2);
}

.update-card p {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-4);
}

.update-card .card-icon {
  font-size: 2rem;
  opacity: 0.9;
}

/* ============================================================
   9. SEÇÃO DE APRESENTAÇÃO
   ============================================================ */
.about-section {
  background: var(--white);
}

.about-image-wrapper {
  position: relative;
}

.about-image-wrapper img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.about-badge-float {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  border: 1px solid #e4e4e4;
}

.about-badge-float.top-left {
  top: -20px;
  left: -20px;
}

.about-badge-float.bottom-right {
  bottom: -20px;
  right: -20px;
}

.about-badge-float .badge-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.about-badge-float .badge-info strong {
  display: block;
  font-size: var(--font-size-lg);
  font-weight: 800;
  color: var(--dark);
}

.about-badge-float .badge-info span {
  font-size: var(--font-size-xs);
  color: var(--gray);
}

.about-list {
  margin: var(--space-6) 0;
}

.about-list-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.about-list-item .check-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(26, 86, 219, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.about-list-item p {
  margin: 0;
  font-size: var(--font-size-base);
  color: var(--dark-3);
}

/* ============================================================
   10. ESTATÍSTICAS / CONTADORES
   ============================================================ */
.stats-section {
  background: #5b606a;
  padding: var(--space-16) 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.stats-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.stat-item {
  text-align: center;
  position: relative;
  z-index: 2;
}

.stat-item .stat-number {
  font-size: clamp(1.5rem, 2.5vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  display: block;
  line-height: 1;
  margin-bottom: var(--space-2);
}

.stat-item .stat-label {
  font-size: var(--font-size-base);
  color: rgba(255, 255, 255, 0.8);
}

.stat-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.2);
  height: 60px;
  margin: auto;
}

/* ============================================================
   11. CALL CENTER SECTION
   ============================================================ */

.step-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: var(--white);
  font-weight: 600;
  font-size: var(--font-size-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-blue);
}

.step-content h5 {
  color: var(--dark-3);
  font-weight: 500;
  margin-bottom: var(--space-1);
}

.step-content p {
  color: var(--gray);
  font-size: var(--font-size-sm);
  margin: 0;
}

/* ============================================================
   12. ESTEIRA DE PROPOSTAS
   ============================================================ */
.pipeline-section {
  background: var(--bg-light);
}

.pipeline-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--primary);
  transition: all var(--transition);
  height: 100%;
}

.pipeline-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.pipeline-card.pending { border-left-color: #22c55e; }
.pipeline-card.with-pending { border-left-color: #f59e0b; }
.pipeline-card.rejected { border-left-color: #ef4444; }

.pipeline-card h5 {
  font-weight: 700;
  color: var(--dark);
  margin-bottom: var(--space-3);
}

.pipeline-card p {
  font-size: var(--font-size-sm);
  color: var(--gray);
  margin: 0;
}

/* ============================================================
   13. FINANCEIRO / CONTROLE
   ============================================================ */
.finance-section {
  background: var(--white);
}

.finance-feature {
  padding: var(--space-6) 0;
  border-bottom: 1px solid var(--border);
}

.finance-feature:last-child {
  border-bottom: none;
}

.finance-feature h4 {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: var(--space-3);
}

.finance-feature p {
  color: var(--gray);
  margin: 0;
}

.blockquote-custom {
  background: rgba(26, 86, 219, 0.05);
  border-left: 4px solid var(--primary);
  padding: var(--space-4) var(--space-6);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  margin: var(--space-6) 0;
}

.blockquote-custom p {
  color: var(--dark-3);
  font-style: italic;
  margin: 0;
}

/* ============================================================
   14. CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--gradient-primary);
  padding: var(--space-10) 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.cta-section h2 {
  color: var(--white);
  font-size: clamp(1.5rem, 2.3vw, 2.3rem);
  font-weight: 600;
  margin-bottom: var(--space-4);
  position: relative;
  z-index: 2;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-8);
  position: relative;
  z-index: 2;
}

.cta-section .cta-buttons {
  position: relative;
  z-index: 2;
}

/* ============================================================
   15. OUTROS PRODUTOS
   ============================================================ */
.products-section {
  background: var(--bg-light);
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: all var(--transition);
  height: 100%;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(26, 86, 219, 0.2);
}

.product-card .product-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: var(--space-4);
}

.product-card h4 {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: var(--space-3);
}

.product-card p {
  font-size: var(--font-size-sm);
  color: var(--gray);
  margin: 0;
}

/* ============================================================
   16. RODAPÉ
   ============================================================ */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.8);
  padding: var(--space-16) 0 0;
}

.footer-brand .logo-text {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
}

.footer-brand .logo-text span {
  color: var(--secondary);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--font-size-sm);
  margin-top: var(--space-3);
  line-height: 1.7;
}

.footer-title {
  font-size: var(--font-size-base);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: var(--space-2);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--font-size-sm);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.footer-links a:hover {
  color: var(--secondary);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}

.footer-contact-item .contact-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  background: rgba(26, 86, 219, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.footer-contact-item .contact-info {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact-item .contact-info strong {
  display: block;
  color: var(--white);
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.footer-social {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  transition: all var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social a:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: var(--space-6) 0;
  margin-top: var(--space-12);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--font-size-sm);
  margin: 0;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
}

.footer-bottom a:hover {
  color: var(--secondary);
}

.footer-disclaimer {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: var(--space-3) var(--space-4);
  margin-top: var(--space-4);
}

.footer-disclaimer p {
  font-size: var(--font-size-xs);
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* ============================================================
   17. PAGE HERO (páginas internas)
   ============================================================ */
.page-hero {
  background: #4674c9;
  padding: 50px 0 50px;
  position: relative;
  overflow: hidden;
}



.page-hero h1 {
  color: var(--white);
  font-size: clamp(1.2rem, 2vw, 2rem);
  font-weight: 600;
  margin-bottom: var(--space-4);
}

.page-hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-6);
}

.page-hero .breadcrumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  padding: 0.4rem 1rem;
  display: inline-flex;
}

.page-hero .breadcrumb-item {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--font-size-sm);
}

.page-hero .breadcrumb-item.active {
  color: var(--white);
}



/* ============================================================
   18. FAQ
   ============================================================ */
.faq-section {
  background: var(--white);
}

.accordion-livecred .accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg) !important;
  margin-bottom: var(--space-3);
  overflow: hidden;
}

.accordion-livecred .accordion-button {
  font-weight: 600;
  color: var(--dark);
  background: var(--white);
  font-size: var(--font-size-base);
  padding: var(--space-4) var(--space-6);
  border-radius: var(--radius-lg) !important;
}

.accordion-livecred .accordion-button:not(.collapsed) {
  background: rgba(26, 86, 219, 0.05);
  color: var(--primary);
  box-shadow: none;
}

.accordion-livecred .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231a56db'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-livecred .accordion-body {
  color: var(--dark-3);
  font-size: var(--font-size-base);
  line-height: 1.8;
  padding: var(--space-5) var(--space-6);
  background: #FFF;
}

/* ============================================================
   19. FORMULÁRIO DE CONTATO
   ============================================================ */
.contact-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-10);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
}

.form-control-livecred {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  font-size: var(--font-size-base);
  transition: all var(--transition);
  background: var(--bg-light);
}

.form-control-livecred:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.1);
  background: var(--white);
  outline: none;
}

.form-label-livecred {
  font-weight: 600;
  font-size: var(--font-size-sm);
  color: var(--dark-3);
  margin-bottom: var(--space-2);
}

.contact-info-card {
  background: #f5f5f5;
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  color: var(--dark);
  height: 100%;
}

.contact-info-card h3 {
  color: var(--dark);
  margin-bottom: var(--space-4);
}

.contact-phone-item {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4);
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-1);
  transition: all var(--transition);
}

.contact-phone-item:hover {
  background: rgba(255, 255, 255, 0.12);
}

.contact-phone-item .phone-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--white);
  flex-shrink: 0;
}

.contact-phone-item .phone-info strong {
  display: block;
  color: var(--dark);
  font-weight: 600;
}

.contact-phone-item .phone-info span {
  font-size: var(--font-size-xs);
  color: var(--dark);
}

/* ============================================================
   20. COMO FUNCIONA
   ============================================================ */
.how-it-works-section {
  background: var(--bg-light);
}

.how-step-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  text-align: center;
  position: relative;
  transition: all var(--transition);
  height: 100%;
}

.how-step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.how-step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-4);
  box-shadow: var(--shadow-blue);
}

.how-step-card h4 {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: var(--space-3);
}

.how-step-card p {
  color: var(--gray);
  font-size: var(--font-size-base);
  margin: 0;
}

/* ============================================================
   21. BENEFÍCIOS
   ============================================================ */
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-5);
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all var(--transition);
  height: 100%;
}

.benefit-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(26, 86, 219, 0.2);
}

.benefit-item .benefit-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background: rgba(26, 86, 219, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--primary);
  flex-shrink: 0;
  transition: all var(--transition);
}

.benefit-item:hover .benefit-icon {
  background: var(--gradient-primary);
  color: var(--white);
}

.benefit-item h5 {
  font-size: var(--font-size-base);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: var(--space-1);
}

.benefit-item p {
  font-size: var(--font-size-sm);
  color: var(--gray);
  margin: 0;
}

/* ============================================================
   22. PREÇOS
   ============================================================ */
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow);
  border: 2px solid var(--border);
  transition: all var(--transition);
  position: relative;
}

.pricing-card.featured {
  border-color: var(--primary);
  transform: scale(1.05);
  box-shadow: var(--shadow-xl);
}

.pricing-card.featured::before {
  content: 'Mais Popular';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: var(--white);
  font-size: var(--font-size-xs);
  font-weight: 700;
  padding: 0.3rem 1rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-6px);
}

.pricing-price {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  display: inline-block;
}



.pricing-period {
  font-size: 1rem;
  font-weight: 400;
  color: var(--gray);
  display: inline-block;
}

.pricing-desc {
	text-align: center;
	color: var(--dark);
	font-weight: 600;
	
	
}

.pricing-features {
  list-style: none;
  padding: 20px 0 20px 0;
  margin: 0;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  margin-bottom: 10px;
  border-radius: 10px;
  background: #f8f9fa;
  transition: all 0.3s ease;
  font-size: 15px;
  color: #495057;
}

.module-card-horizontal {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.module-card-horizontal:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.module-icon {
  min-width: 42px;
  height: 42px;
  color: #457ee7;
  background: rgba(82, 105, 196, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.module-card-horizontal h5 {
  font-size: 15px;
  margin: 0;
  font-weight: 600;
}

.module-card-horizontal p {
  font-size: 13px;
  margin: 0;
  color: #6c757d;
}

.module-card-horizontal.reverse {
  flex-direction: row-reverse;
  text-align: right;
}

.module-card-horizontal.reverse .module-icon {
  margin-left: 10px;
  margin-right: 0;
}

/* Ícone */
.pricing-features li i {
  font-size: 18px;
  color: #457ee7;
  background: rgba(82, 105, 196, 0.1);
  padding: 6px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hover elegante */
.pricing-features li:hover {
  background: #ffffff;
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Último item sem margem */
.pricing-features li:last-child {
  margin-bottom: 0;
}

/* ============================================================
   23. ANIMAÇÕES
   ============================================================ */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Delay classes */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ============================================================
   24. UTILITÁRIOS
   ============================================================ */
.text-primary-custom { color: var(--primary) !important; }
.text-secondary-custom { color: var(--secondary) !important; }
.text-gray { color: var(--gray) !important; }
.text-white-70 { color: rgba(255, 255, 255, 0.7) !important; }

.bg-primary-subtle { background: rgba(26, 86, 219, 0.08) !important; }
.bg-success-subtle { background: rgba(34, 197, 94, 0.08) !important; }
.bg-warning-subtle { background: rgba(245, 158, 11, 0.08) !important; }

.rounded-xl { border-radius: var(--radius-xl) !important; }
.rounded-full { border-radius: var(--radius-full) !important; }

.shadow-blue { box-shadow: var(--shadow-blue) !important; }

.divider {
  height: 1px;
  background: var(--border);
  margin: var(--space-8) 0;
}

/* ============================================================
   25. SCROLL TO TOP
   ============================================================ */


.auth-card {
		min-width:480px;
		
	}

/* ============================================================
   26. RESPONSIVIDADE
   ============================================================ */
@media (max-width: 991.98px) {
	
	
	
  .navbar-livecred .navbar-collapse {
    background: #f9f9f9;
    padding: var(--space-4);
    border-radius: var(--radius-lg);
    margin-top: var(--space-3);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .hero-section {
    padding-top: 120px;
    padding-bottom: 80px;
    min-height: auto;
  }

  .hero-visual {
    margin-top: var(--space-8);
  }

  .hero-stats {
    gap: var(--space-4);
  }

  .stat-divider {
    display: none;
  }

  .pricing-card.featured {
    transform: scale(1);
  }
}

@media (max-width: 767.98px) {
	
	.auth-card {
		width:100%;
		
	}
	
  .section-padding {
    padding: var(--space-12) 0;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-cta-group {
    flex-direction: column;
  }

  .hero-cta-group .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .about-badge-float {
    display: none;
  }

  .contact-form-wrapper {
    padding: var(--space-6);
  }

  
}

@media (max-width: 575.98px) {
  .navbar-top-bar {
    display: none;
  }

  .hero-title {
    font-size: 1.9rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .stats-section .row > div:not(:last-child) {
    margin-bottom: var(--space-6);
  }
}

/* ============================================================
   27. PRINT
   ============================================================ */
@media print {
  .navbar-livecred,
  .hero-section::after {
    display: none !important;
  }
}

/* ============================================================
   28. PAGE HERO SMALL (páginas legais)
   ============================================================ */
.page-hero-sm {
  padding: 130px 0 60px;
}

.page-hero-sm h1 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}

/* ============================================================
   29. LEGAL CONTENT (Política de Privacidade / Termos)
   ============================================================ */
.legal-content h2 {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--dark);
  margin-top: var(--space-10);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-3);
  border-bottom: 2px solid var(--border);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  color: var(--dark-3);
  line-height: 1.8;
  margin-bottom: var(--space-4);
}

.legal-content ul {
  list-style: disc;
  padding-left: var(--space-6);
  margin-bottom: var(--space-4);
}

.legal-content ul li {
  color: var(--dark-3);
  line-height: 1.8;
  margin-bottom: var(--space-2);
}

.legal-content a {
  color: var(--primary);
  text-decoration: underline;
}

.legal-content a:hover {
  color: var(--primary-dark);
}

/* ============================================================
   30. ALERT INFO CUSTOM (Preços)
   ============================================================ */
.alert-info-custom {
  background: rgba(26, 86, 219, 0.06);
  border: 1px solid rgba(26, 86, 219, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-6);
  color: var(--dark-3);
}

.alert-info-custom strong {
  color: var(--primary);
}

/* ============================================================
   31. PRICING FEATURED (destaque)
   ============================================================ */
.pricing-featured {
  border-color: var(--primary) !important;
  position: relative;
}


/* ============================================================
   carosel
   ============================================================ */

/* Carrossel principal com altura elegante */
        .premium-carousel {
            background: linear-gradient(135deg, #3582E6 0%, #025483 100%);
          
        }

        .carousel-item {
            transition: transform 0.7s cubic-bezier(0.2, 0.9, 0.4, 1.1), opacity 0.5s ease;
            padding: 2rem 0;
        }

        /* overlay sutil para destacar texto */
        .carousel-item .container {
            position: relative;
            z-index: 2;
        }

        /* Indicators personalizados: cards com preview */
        .carousel-indicators-custom {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
            position: relative;
            z-index: 5;
			padding-top: 15px;
			padding-bottom: 30px;
        }

        .indicator-card {
            background: rgba(255,255,255,0.08);
            backdrop-filter: blur(12px);
            border-radius: 0.8rem;
            padding: 0.7rem 1.1rem;
            min-width: 266px;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
            border: 1px solid rgba(255,255,255,0.2);
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            text-align: center;
        }

        .indicator-card h5 {
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 0.25rem;
            color: white;
        }

        .indicator-card p {
            font-size: 0.8rem;
            color: rgba(255,255,255,0.7);
            margin-bottom: 0;
        }

        .indicator-card.active {
            background: linear-gradient(105deg, #FFFFFF 0%, #F0F4FF 100%);
            border-color: #fff;
            transform: translateY(-3px);
            box-shadow: 0 20px 30px -12px rgba(0,0,0,0.3);
        }

        .indicator-card.active h5,
        .indicator-card.active p {
            color: #0A2540;
        }

        .indicator-card.active p {
            color: #2c5a7a;
        }

        /* hero elements modernos */
        .slide-hero-badge {
            display: inline-flex;
            align-items: center;
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(8px);
            padding: 0.4rem 1rem;
            border-radius: 60px;
            margin-bottom: 1.5rem;
            font-size: 0.85rem;
            font-weight: 500;
            color: #d0f2ff;
            border: 0.5px solid rgba(255,255,255,0.2);
        }

        .slide-badge-dot {
            width: 8px;
            height: 8px;
            background: #4cffb0;
            border-radius: 10px;
            display: inline-block;
            margin-right: 10px;
            box-shadow: 0 0 6px #4cffb0;
        }

        .slide-hero-title {
            font-size: 2.2rem;
            font-weight: 600;
            line-height: 1.2;
            background: linear-gradient(120deg, #FFFFFF, #E0F2FE);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 1.2rem;
        }

        .slide-hero-description {
            font-size: 1.1rem;
            color: #FFF;
            margin-bottom: 2rem;
            line-height: 1.5;
			min-height:80px;
        }

        .slide-typewriter-text {
            font-weight: 700;
            background: linear-gradient(135deg, #FFE6B0, #FFC085);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            border-right: 2px solid #FFC085;
            padding-right: 5px;
            animation: blink 0.8s infinite;
        }

        @keyframes blink {
            0%,100% { border-color: transparent; }
            50% { border-color: #FFC085; }
        }

        .slide-btn-white, .slide-btn-outline-white {
            border-radius: 60px;
            padding: 0.7rem 1.8rem;
            font-weight: 600;
            transition: all 0.2s ease;
        }

        .slide-btn-white {
            background: white;
            color: #0A2540;
            border: none;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }

        .slide-btn-white:hover {
            transform: translateY(-3px);
            background: #F8FAFF;
            box-shadow: 0 12px 20px -8px rgba(0,0,0,0.2);
            color: #0A2F44;
        }

        .slide-btn-outline-white {
            background: transparent;
            border: 1.5px solid rgba(255,255,255,0.6);
            color: white;
        }

        .slide-btn-outline-white:hover {
            background: rgba(255,255,255,0.1);
            border-color: white;
            transform: translateY(-3px);
        }

        .slide-hero-stats {
            display: flex;
            gap: 2rem;
            margin-top: 2rem;
            flex-wrap: wrap;
        }

        .slide-hero-stat {
            text-align: left;
        }

        .slide-stat-number {
            font-size: 1.6rem;
            font-weight: 800;
            color: white;
            display: block;
            line-height: 1.2;
        }

        .slide-stat-label {
            font-size: 0.8rem;
            color: rgba(255,255,255,0.7);
        }

        .slide-hero-visual img {
            transition: transform 0.4s ease;
        }

        .slide-hero-visual img:hover {
            transform: scale(1.02);
        }

        .slide-fade-in-right {
            animation: fadeInRight 0.8s ease-out;
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(40px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
		
		.card-novidades h3 {
	font-size: clamp(0.95rem, 1.4vw, 1.5rem);
}

        /* cards de funcionalidades nos slides custom */
        .feature-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .feature-chip {
            background: rgba(255,255,255,0.08);
            border-radius: 40px;
            padding: 0.5rem 1.2rem;
            font-size: 0.85rem;
            font-weight: 500;
            color: white;
            backdrop-filter: blur(4px);
        }

        .feature-chip i {
            margin-right: 8px;
            color: #6ee7ff;
        }

        .premium-badge {
            background: linear-gradient(95deg, #3b82f6, #a855f7);
            display: inline-block;
            padding: 0.3rem 1rem;
            border-radius: 60px;
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.5px;
            color: white;
            margin-bottom: 1rem;
        }

        @media (max-width: 768px) {
            .slide-hero-title {
                font-size: 2rem;
            }
            .carousel-item {
                min-height: auto;
                padding: 2rem 1rem;
            }
            .indicator-card {
                min-width: 140px;
                padding: 0.5rem 0.8rem;
            }
            .indicator-card h5 {
                font-size: 0.85rem;
            }
		}
		
		.auth-form {
  margin-bottom: var(--space-3);
}

.auth-form .form-control-livecred {
  padding: 0.875rem 1.125rem;
  font-size: var(--font-size-base);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

.auth-form .form-control-livecred:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.1);
  background: var(--white);
}

.auth-form .form-label-livecred {
  font-weight: 600;
  font-size: var(--font-size-sm);
  color: var(--dark-3);
  margin-bottom: var(--space-2);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.auth-form .form-check-label {
  font-size: var(--font-size-sm);
  color: var(--dark-3);
  margin-bottom: 0;
}

.auth-form .form-check-input {
  width: 1.25rem;
  height: 1.25rem;
  border: 1.5px solid var(--border);
  border-radius: 0.25rem;
  cursor: pointer;
}

.auth-form .form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin: var(--space-6) 0;
  color: var(--gray);
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.auth-divider span {
  font-size: var(--font-size-sm);
  font-weight: 500;
}

.auth-footer {
  text-align: center;
  font-size: var(--font-size-sm);
  color: var(--gray);
}

.auth-footer p {
  margin-bottom: 0;
}

.auth-footer a {
  color: var(--primary);
  text-decoration: none;
  transition: all var(--transition);
}

.auth-footer a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}