/* Landing Page CSS - Especialmente para Neurodivergentes */

:root {
  /* Cores otimizadas para neurodivergentes */
  --primary-color: #4a90e2;          /* Azul suave e confiável */
  --primary-dark: #357abd;           /* Azul mais escuro */
  --secondary-color: #6c5ce7;        /* Roxo estimulante */
  --accent-color: #00b894;           /* Verde menta calmante */
  --success-color: #00b894;          /* Verde success */
  --warning-color: #fdcb6e;          /* Amarelo suave */
  --info-color: #74b9ff;             /* Azul claro informativo */
  --light-color: #f8f9fa;            /* Branco suave */
  --dark-color: #2d3436;             /* Cinza escuro suave */
  --text-color: #2d3436;             /* Texto principal */
  --text-light: #636e72;             /* Texto secundário */
  --bg-light: #f1f2f6;               /* Fundo claro */
  --border-color: #ddd;              /* Bordas suaves */
  --shadow-light: 0 2px 15px rgba(0,0,0,0.08);
  --shadow-medium: 0 6px 25px rgba(0,0,0,0.12);
  --border-radius: 16px;             /* Bordas mais arredondadas */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); /* Transição suave */
  
  /* Gradientes neurodivergente-friendly */
  --gradient-primary: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
  --gradient-secondary: linear-gradient(135deg, #a29bfe 0%, #6c5ce7 100%);
  --gradient-accent: linear-gradient(135deg, #55efc4 0%, #00b894 100%);
  --gradient-hero: linear-gradient(135deg, #74b9ff 0%, #0984e3 50%, #6c5ce7 100%);
}

/* Reset e base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.landing-page {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background: var(--gradient-hero);
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Topbar Landing */
.topbar-landing {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.2);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition);
  min-height: 70px;
}

.topbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  min-height: 50px;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  font-size: 2rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-text .brand-name {
  font-size: 1.5rem;
  font-weight: 700;
}

.logo-text .brand-tagline {
  font-size: 0.8rem;
  color: var(--text-light);
  display: block;
  line-height: 1;
}

.nav-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  height: 100%;
  flex-shrink: 0;
}

/* Força alinhamento perfeito dos botões */
.nav-actions a {
  align-self: center;
  margin: 0;
  vertical-align: baseline;
}

/* Botões do topbar */
.btn-primary, .btn-secondary, .btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0 1.5rem;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  border: 2px solid transparent;
  height: 44px;
  min-width: 130px;
  box-sizing: border-box;
  white-space: nowrap;
  vertical-align: middle;
  line-height: 1;
  flex-shrink: 0;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--shadow-light);
  border: 2px solid transparent;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
  filter: brightness(1.1);
}

.btn-secondary {
  background: transparent;
  color: var(--text-color);
  border-color: var(--border-color);
}

.btn-secondary:hover {
  background: var(--light-color);
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.btn-outline {
  background: transparent;
  color: var(--text-light);
  border-color: var(--text-light);
}

.btn-outline:hover {
  background: var(--text-light);
  color: white;
}

/* Main Landing */
.landing-main {
  margin-top: 90px;
}

/* Hero Section */
.hero-section {
  background: var(--gradient-hero);
  color: white;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.3;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.25);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255,255,255,0.3);
  box-shadow: var(--shadow-light);
}

.badge-icon {
  font-size: 1.2rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.title-highlight {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.title-brand {
  background: linear-gradient(135deg, #55efc4 0%, #00b894 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 900;
  color: #ffffff;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-cta, .btn-demo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition);
}

.btn-cta {
  background: var(--gradient-accent);
  color: white;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.btn-demo {
  background: rgba(255,255,255,0.2);
  color: white;
  border: 2px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(10px);
}

.btn-demo:hover {
  background: rgba(255,255,255,0.3);
  border-color: rgba(255,255,255,0.5);
}

/* Hero Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.dashboard-preview {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 1.5rem;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  max-width: 400px;
  width: 100%;
}

.preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.preview-dots {
  display: flex;
  gap: 0.5rem;
}

.preview-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
}

.preview-title {
  font-weight: 600;
  font-size: 0.9rem;
}

.preview-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.mini-card {
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  backdrop-filter: blur(10px);
}

.card-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.card-number {
  font-size: 1.5rem;
  font-weight: 700;
  display: block;
}

.card-label {
  font-size: 0.8rem;
  opacity: 0.8;
}

.preview-chart {
  height: 80px;
  display: flex;
  align-items: end;
  justify-content: center;
}

.chart-bars {
  display: flex;
  gap: 0.5rem;
  align-items: end;
  height: 100%;
}

.bar {
  width: 20px;
  background: linear-gradient(135deg, rgba(255,255,255,0.3), rgba(255,255,255,0.1));
  border-radius: 4px 4px 0 0;
  animation: growBar 2s ease-out;
}

@keyframes growBar {
  from { height: 0; }
  to { height: var(--bar-height, 50%); }
}

/* Benefits Section */
.benefits-section {
  background: white;
  padding: 6rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-light);
  color: var(--primary-color);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.benefit-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  border: 2px solid var(--border-color);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.benefit-card.highlight {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, rgba(108, 92, 231, 0.08), rgba(116, 185, 255, 0.08));
  box-shadow: 0 4px 20px rgba(108, 92, 231, 0.15);
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-secondary);
  opacity: 0;
  transition: var(--transition);
}

.benefit-card:hover::before {
  opacity: 1;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: white;
  font-size: 1.5rem;
  box-shadow: var(--shadow-light);
}

.benefit-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

.benefit-list {
  list-style: none;
}

.benefit-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: var(--text-color);
}

.benefit-list li i {
  color: var(--success-color);
  font-size: 0.9rem;
}

/* How It Works */
.how-it-works {
  background: var(--bg-light);
  padding: 6rem 0;
}

.steps-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.step-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  position: relative;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: var(--shadow-light);
}

.step-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--primary-color);
  font-size: 1.5rem;
}

.step-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--dark-color);
}

.step-card p {
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.step-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.feature-tag {
  background: var(--bg-light);
  color: var(--text-color);
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.step-arrow {
  color: var(--primary-color);
  font-size: 1.5rem;
}

/* Features Showcase */
.features-showcase {
  background: white;
  padding: 6rem 0;
}

.features-container {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

.feature-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.feature-showcase.reverse {
  direction: rtl;
}

.feature-showcase.reverse > * {
  direction: ltr;
}

.feature-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-info h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

.feature-info p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.feature-points {
  list-style: none;
}

.feature-points li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: var(--text-color);
  font-weight: 500;
}

/* Demo Components */
.pomodoro-demo {
  background: var(--gradient-primary);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  color: white;
  max-width: 300px;
  box-shadow: var(--shadow-medium);
}

.timer-circle {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  position: relative;
  border: 3px solid rgba(255,255,255,0.2);
}

.timer-progress {
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: var(--accent-color);
  animation: rotate 25s linear infinite;
}

@keyframes rotate {
  to { transform: rotate(360deg); }
}

.timer-time {
  font-size: 2rem;
  font-weight: 700;
}

.timer-label {
  font-size: 0.9rem;
  opacity: 0.8;
}

.timer-controls {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.control-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.2);
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
}

.control-btn:hover, .control-btn.active {
  background: rgba(255,255,255,0.3);
  transform: scale(1.1);
}

.tasks-demo {
  background: white;
  border-radius: var(--border-radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-light);
  max-width: 350px;
}

.task-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 0.75rem;
  transition: var(--transition);
}

.task-item.completed {
  background: rgba(39, 174, 96, 0.1);
  opacity: 0.7;
}

.task-item.active {
  background: rgba(52, 152, 219, 0.1);
  border-left: 4px solid var(--primary-color);
}

.task-item:last-child {
  margin-bottom: 0;
}

.task-check {
  font-size: 1.2rem;
}

.task-title {
  font-weight: 600;
  color: var(--dark-color);
  display: block;
}

.task-meta {
  font-size: 0.85rem;
  color: var(--text-light);
}

.stats-demo {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 350px;
}

.stat-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

.stat-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  display: block;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--dark-color), #34495e);
  color: white;
  padding: 6rem 0;
  text-align: center;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-text p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}

.cta-feature i {
  color: var(--success-color);
  font-size: 1.1rem;
}

.btn-cta-large {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: var(--gradient-accent);
  color: white;
  padding: 1.25rem 3rem;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  transition: var(--transition);
  margin-bottom: 1rem;
}

.btn-cta-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.cta-note {
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Footer */
.landing-footer {
  background: var(--dark-color);
  color: white;
  padding: 2rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
  align-items: start;
}

.footer-links-compact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  grid-column: 2 / -1;
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-brand .logo-icon {
  font-size: 2rem;
  color: white
}

.footer-brand .brand-name {
  font-size: 1.5rem;
  font-weight: 700;
}

.footer-brand .brand-tagline {
  font-size: 0.8rem;
  opacity: 0.7;
  display: block;
  line-height: 1;
  color: white;
}

.footer-description {
  opacity: 0.8;
  line-height: 1.6;
}

.footer-section h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: white;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: var(--transition);
}

.footer-section ul li a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  opacity: 0.7;
  margin-bottom: 0.5rem;
}

.footer-love {
  color: var(--accent-color);
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  
  .topbar-content {
    flex-direction: row;
    gap: 1rem;
    padding: 1rem 0;
    min-height: 60px;
  }
  
  .nav-actions {
    flex-shrink: 0;
  }
  
  .btn-primary, .btn-secondary, .btn-outline {
    font-size: 0.85rem;
    min-width: 110px;
    height: 40px;
  }
  
  .landing-main {
    margin-top: 100px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .steps-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .step-arrow {
    transform: rotate(90deg);
  }
  
  .feature-showcase {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .footer-links-compact {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    grid-column: 1;
  }
  
  .cta-features {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-cta, .btn-demo {
    width: 100%;
    justify-content: center;
    max-width: 280px;
  }
  
  .dashboard-preview {
    max-width: 300px;
  }
  
  .preview-stats {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

/* Animações especiais para neurodivergentes */
@media (prefers-reduced-motion: no-preference) {
  .benefit-card:hover {
    animation: gentleBounce 0.6s ease-out;
  }
  
  @keyframes gentleBounce {
    0%, 100% { transform: translateY(-5px); }
    50% { transform: translateY(-8px); }
  }
  
  .step-card:hover .step-icon {
    animation: pulse 2s infinite;
  }
  
  @keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
  }
}

/* Modo escuro opcional */
@media (prefers-color-scheme: dark) {
  :root {
    --text-color: #ecf0f1;
    --text-light: #bdc3c7;
    --bg-light: #34495e;
    --border-color: #5d6d7e;
  }
}