/* Reset and Base Styles */
:root {
  /* Color Palette - Dark Tech Theme */
  --primary-black: #0a0a0a;
  --secondary-black: #151515;
  --tertiary-black: #1e1e1e;
  --accent-gray: #2a2a2a;
  --light-gray: #404040;
  --medium-gray: #666666;
  --text-gray: #b0b0b0;
  --white: #ffffff;
  --off-white: #f5f5f5;
  
  /* Brand Colors */
  --accent-blue: #00d4ff;
  --accent-purple: #6366f1;
  --accent-green: #10b981;
  --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-secondary: linear-gradient(135deg, #00d4ff 0%, #6366f1 100%);
  --gradient-tech: linear-gradient(135deg, #0a0a0a 0%, #1e1e1e 50%, #2a2a2a 100%);
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', Monaco, 'Cascadia Code', monospace;
  
  /* Spacing */
  --container-max-width: 1200px;
  --section-padding: 100px 0;
  
  /* Animations */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.4s ease;
  --transition-slow: 0.6s ease;
  
  /* Shadows */
  --shadow-small: 0 2px 10px rgba(0, 0, 0, 0.3);
  --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.4);
  --shadow-large: 0 20px 60px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 30px rgba(0, 212, 255, 0.3);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

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

/* Container */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Loading Screen */
#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--primary-black);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  opacity: 1;
  transition: opacity 0.5s ease;
}

#loading-screen.fade-out {
  opacity: 0;
  pointer-events: none;
}

.loader {
  width: 60px;
  height: 60px;
  position: relative;
}

.loader-inner {
  width: 100%;
  height: 100%;
  border: 3px solid transparent;
  border-top: 3px solid var(--accent-blue);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
  transition: var(--transition-medium);
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.98);
  box-shadow: var(--shadow-medium);
}

.nav-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  position: relative;
  width: 40px;
  height: 40px;
}

.logo-shape {
  position: absolute;
  background: var(--white);
  transition: var(--transition-medium);
}

.logo-shape-1 {
  width: 20px;
  height: 20px;
  top: 0;
  left: 0;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.logo-shape-2 {
  width: 15px;
  height: 15px;
  top: 5px;
  right: 0;
  background: var(--medium-gray);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.logo-shape-3 {
  width: 12px;
  height: 12px;
  bottom: 0;
  left: 8px;
  background: var(--light-gray);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.nav-logo:hover .logo-shape-1 {
  background: var(--accent-blue);
  transform: scale(1.1);
}

.logo-text {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 2px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-link {
  color: var(--text-gray);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-blue);
  transition: var(--transition-fast);
}

.nav-link:hover {
  color: var(--white);
}

.nav-link:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--white);
  transition: var(--transition-fast);
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-tech);
  z-index: -2;
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(0, 212, 255, 0.2) 1px, transparent 1px),
    radial-gradient(circle at 75% 75%, rgba(99, 102, 241, 0.2) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: float 20s infinite linear;
  z-index: -1;
}

.hero-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 100px 100px;
  z-index: -1;
}

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

.hero-content {
  max-width: 800px;
  padding: 0 20px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 20px;
  color: var(--accent-blue);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

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

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-gray);
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-medium);
  position: relative;
  overflow: hidden;
}

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

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(0, 212, 255, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-gray);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 30px;
  background: var(--accent-blue);
  animation: scroll-pulse 2s infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.5); }
}

/* Section Styles */
.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: 20px;
  color: var(--accent-purple);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-gray);
  max-width: 600px;
  margin: 0 auto;
}

/* Services Overview */
.services-overview {
  padding: var(--section-padding);
  background: var(--secondary-black);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.service-card {
  background: var(--tertiary-black);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-secondary);
  opacity: 0;
  transition: var(--transition-medium);
  z-index: -1;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 212, 255, 0.5);
  box-shadow: var(--shadow-large);
}

.service-card:hover::before {
  opacity: 0.05;
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 30px;
  background: var(--gradient-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--white);
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.service-card p {
  color: var(--text-gray);
  margin-bottom: 25px;
  line-height: 1.6;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-blue);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition-fast);
}

.service-link:hover {
  gap: 12px;
}

/* Feature Sections */
.feature-section {
  padding: var(--section-padding);
  background: var(--primary-black);
}

.feature-section-reverse {
  background: var(--secondary-black);
}

.feature-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.feature-section-reverse .feature-content {
  grid-template-columns: 1fr 1fr;
}

.feature-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 20px;
  color: var(--accent-blue);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
}

.feature-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.3;
}

.feature-text p {
  color: var(--text-gray);
  font-size: 1.125rem;
  margin-bottom: 40px;
  line-height: 1.6;
}

.feature-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  color: var(--text-gray);
  font-size: 0.9rem;
}

.feature-benefits {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-gray);
}

.benefit i {
  color: var(--accent-green);
}

/* Tech Visualization */
.tech-visualization {
  position: relative;
  width: 300px;
  height: 300px;
  margin: 0 auto;
}

.tech-node {
  position: absolute;
  width: 80px;
  height: 80px;
  background: var(--tertiary-black);
  border: 2px solid var(--accent-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--accent-blue);
  animation: pulse 2s infinite;
  animation-delay: var(--delay);
}

.tech-node:nth-child(1) { top: 0; left: 50%; transform: translateX(-50%); }
.tech-node:nth-child(2) { bottom: 0; left: 0; }
.tech-node:nth-child(3) { bottom: 0; right: 0; }

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.7); }
  50% { box-shadow: 0 0 0 20px rgba(0, 212, 255, 0); }
}

/* AI Visualization */
.ai-visualization {
  position: relative;
  width: 300px;
  height: 300px;
  margin: 0 auto;
}

.ai-brain {
  width: 100%;
  height: 100%;
  background: var(--gradient-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.neural-network {
  position: relative;
  width: 200px;
  height: 200px;
}

.neuron {
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--white);
  border-radius: 50%;
  animation: neural-pulse 3s infinite;
}

.neuron:nth-child(1) { top: 20px; left: 50%; animation-delay: 0s; }
.neuron:nth-child(2) { top: 80px; left: 20px; animation-delay: 0.6s; }
.neuron:nth-child(3) { top: 80px; right: 20px; animation-delay: 1.2s; }
.neuron:nth-child(4) { bottom: 40px; left: 30%; animation-delay: 1.8s; }
.neuron:nth-child(5) { bottom: 40px; right: 30%; animation-delay: 2.4s; }

@keyframes neural-pulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.5); }
}

/* AI Capabilities */
.ai-capabilities {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.capability {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.capability-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-secondary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--white);
  flex-shrink: 0;
}

.capability-content h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.capability-content p {
  color: var(--text-gray);
  margin: 0;
}



/* Training Modules */
.training-modules {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.module {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.module-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-secondary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--white);
  flex-shrink: 0;
}

.module-content h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.module-content p {
  color: var(--text-gray);
  margin: 0;
}

/* Training Visualization */
.training-visualization {
  display: flex;
  justify-content: center;
  align-items: center;
}

.progress-rings {
  position: relative;
  width: 200px;
  height: 200px;
}

.progress-ring {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: conic-gradient(var(--accent-blue) 95%, var(--accent-gray) 95%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.progress-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
}

.progress-label {
  color: var(--text-gray);
  font-size: 0.9rem;
}

/* Contact Section */
.contact-section {
  padding: var(--section-padding);
  background: var(--primary-black);
}

.contact-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.contact-header {
  margin-bottom: 60px;
}

.contact-header h2 {
  margin-bottom: 20px;
}

.contact-header p {
  font-size: 1.125rem;
  color: var(--text-gray);
  max-width: 600px;
  margin: 0 auto;
}

.whatsapp-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.whatsapp-card {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(37, 211, 102, 0.2);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.whatsapp-card::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="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
  pointer-events: none;
}

.whatsapp-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(37, 211, 102, 0.3);
}

.whatsapp-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 40px;
  color: white;
}

.whatsapp-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: white;
}

.whatsapp-content p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 25px;
  font-size: 1.1rem;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition-fast);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-whatsapp:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-whatsapp i {
  font-size: 1.3rem;
}



/* Footer */
.footer {
  background: var(--secondary-black);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 60px 0 30px;
}

.footer-content {
  text-align: center;
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-description {
  color: var(--text-gray);
  max-width: 400px;
  margin: 0 auto 30px;
}

.footer-info {
  margin-top: 30px;
}

.company-details {
  background: var(--tertiary-black);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 25px;
  max-width: 500px;
  margin: 0 auto;
}

.company-details h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

.company-details .cnpj {
  font-family: var(--font-mono);
  font-size: 1rem;
  color: var(--accent-blue);
  margin-bottom: 10px;
  font-weight: 500;
}

.company-details .location {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text-gray);
  font-size: 1rem;
  margin: 0;
}

.company-details .location i {
  color: var(--accent-blue);
  font-size: 0.9rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-gray);
  font-size: 0.9rem;
}

/* Ripple Animation */
@keyframes ripple {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 30px;
    padding-top: 50px;
    transition: var(--transition-medium);
  }

  .nav-menu.active {
    left: 0;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .feature-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .feature-section-reverse .feature-content {
    grid-template-columns: 1fr;
  }

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

  .contact-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .nav-container {
    padding: 0 15px;
  }

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

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

  .feature-stats {
    flex-direction: column;
    gap: 20px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 30px 20px;
  }

  /* Contact Section Mobile */
  .contact-header {
    margin-bottom: 40px;
    padding: 0 20px;
  }

  .contact-header h2 {
    font-size: 1.8rem;
  }

  .whatsapp-contact {
    padding: 0 20px;
  }

  .whatsapp-card {
    padding: 30px 20px;
    margin: 0 auto;
    max-width: 100%;
  }

  .whatsapp-icon {
    width: 60px;
    height: 60px;
    font-size: 30px;
  }

  .whatsapp-content h3 {
    font-size: 1.25rem;
  }

  .whatsapp-content p {
    font-size: 1rem;
  }

  .btn-whatsapp {
    padding: 12px 24px;
    font-size: 1rem;
  }

  /* Footer Mobile */
  .footer {
    padding: 40px 0 20px;
  }

  .footer-content {
    margin-bottom: 30px;
    padding: 0 20px;
  }

  .footer-description {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .company-details {
    padding: 20px;
    max-width: 100%;
  }

  .company-details h4 {
    font-size: 1rem;
    margin-bottom: 12px;
  }

  .company-details .cnpj {
    font-size: 0.9rem;
  }

  .company-details .location {
    font-size: 0.9rem;
  }

  .footer-bottom {
    padding: 20px;
    font-size: 0.8rem;
  }
}
