
/*--------------------------------------------------------------
# General - Modern Cuberto Style
--------------------------------------------------------------*/
:root {
  --primary-color: #000000;
  --secondary-color: #6366f1;
  --accent-color: #f59e0b;
  --text-primary: #0a0a0a;
  --text-secondary: #6b7280;
  --text-light: #9ca3af;
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
  --gradient-secondary: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
  --border-radius: 24px;
  --border-radius-sm: 12px;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
}

*::selection {
  background: var(--secondary-color);
  color: white;
}

a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-color);
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Space Grotesk", -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Modern gradient text */
.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-alt {
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Section titles */
.section-title {
  text-align: center;
  margin-bottom: 80px;
}

.section-title h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.section-title p {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Section padding */
section {
  padding: 100px 0;
}

/* Cursor effects */
.btn-primary-modern,
.btn-secondary-modern,
.navbar a,
.services .icon-box,
.clients .col-lg-2 {
  cursor: pointer;
}

/* Improved transitions */
* {
  transition: color 0.3s ease, background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

/* Loading animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-primary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-color);
}

@media (max-width: 768px) {
  section {
    padding: 80px 0;
  }
  
  .section-title {
    margin-bottom: 60px;
  }
}

/*--------------------------------------------------------------
# Back to top button - Modern Style
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 20px;
  bottom: 20px;
  z-index: 996;
  background: var(--gradient-primary);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: var(--shadow-xl);
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header - Modern Style
--------------------------------------------------------------*/
#header {
  z-index: 997;
  transition: all 0.3s ease;
  padding: 20px 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#header.header-scrolled {
  box-shadow: var(--shadow-md);
  padding: 16px 0;
  background: rgba(255, 255, 255, 0.98);
}

#header .logo h1 {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.02em;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: var(--text-primary);
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 44px;
  transition: all 0.3s ease;
}

#header.header-scrolled .logo img {
  max-height: 36px;
}

/*--------------------------------------------------------------
# Modern Logo Design
--------------------------------------------------------------*/
.logo-link {
  text-decoration: none;
  display: block;
}

.modern-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
}

.logo-geometric {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.geo-square {
  position: absolute;
  border: 2px solid;
  border-radius: 4px;
  transition: all 0.4s ease;
}

.geo-1 {
  width: 16px;
  height: 16px;
  border-color: #8b5cf6;
  top: 2px;
  left: 2px;
  animation: pulse-geo1 3s ease-in-out infinite;
}

.geo-2 {
  width: 20px;
  height: 20px;
  border-color: #a855f7;
  top: 6px;
  left: 14px;
  animation: pulse-geo2 3s ease-in-out infinite 0.5s;
}

.geo-3 {
  width: 24px;
  height: 24px;
  border-color: #c084fc;
  top: 8px;
  left: 8px;
  animation: pulse-geo3 3s ease-in-out infinite 1s;
}

.geo-4 {
  width: 14px;
  height: 14px;
  border-color: #7c3aed;
  top: 12px;
  left: 22px;
  animation: pulse-geo4 3s ease-in-out infinite 1.5s;
}

.geo-5 {
  width: 18px;
  height: 18px;
  border-color: #6366f1;
  top: 20px;
  left: 6px;
  animation: pulse-geo5 3s ease-in-out infinite 2s;
}

@keyframes pulse-geo1 {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
  50% { transform: scale(1.1) rotate(5deg); opacity: 0.8; }
}

@keyframes pulse-geo2 {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
  50% { transform: scale(1.15) rotate(-3deg); opacity: 0.9; }
}

@keyframes pulse-geo3 {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
  50% { transform: scale(1.08) rotate(3deg); opacity: 0.85; }
}

@keyframes pulse-geo4 {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
  50% { transform: scale(1.12) rotate(-4deg); opacity: 0.9; }
}

@keyframes pulse-geo5 {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
  50% { transform: scale(1.1) rotate(2deg); opacity: 0.8; }
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-main {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.5px;
  font-family: "Space Grotesk", sans-serif;
  transition: color 0.3s ease;
}

.logo-sub {
  font-size: 12px;
  font-weight: 600;
  color: #8b5cf6;
  letter-spacing: 1.5px;
  margin-top: -2px;
  font-family: "Space Grotesk", sans-serif;
  transition: color 0.3s ease;
}

/* Hover Effects */
.logo-link:hover .modern-logo {
  transform: translateY(-2px);
}

.logo-link:hover .geo-square {
  border-width: 3px;
  filter: drop-shadow(0 4px 8px rgba(139, 92, 246, 0.3));
}

.logo-link:hover .logo-main {
  color: #1f2937;
}

.logo-link:hover .logo-sub {
  color: #7c3aed;
}

/* Header Scrolled State */
#header.header-scrolled .modern-logo {
  transform: scale(0.9);
}

#header.header-scrolled .logo-geometric {
  width: 36px;
  height: 36px;
}

#header.header-scrolled .geo-1 { width: 14px; height: 14px; }
#header.header-scrolled .geo-2 { width: 18px; height: 18px; }
#header.header-scrolled .geo-3 { width: 22px; height: 22px; }
#header.header-scrolled .geo-4 { width: 12px; height: 12px; }
#header.header-scrolled .geo-5 { width: 16px; height: 16px; }

#header.header-scrolled .logo-main {
  font-size: 20px;
}

#header.header-scrolled .logo-sub {
  font-size: 11px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .modern-logo {
    gap: 10px;
  }
  
  .logo-geometric {
    width: 36px;
    height: 36px;
  }
  
  .logo-main {
    font-size: 20px;
  }
  
  .logo-sub {
    font-size: 11px;
  }
  
  .geo-1 { width: 14px; height: 14px; }
  .geo-2 { width: 18px; height: 18px; }
  .geo-3 { width: 22px; height: 22px; }
  .geo-4 { width: 12px; height: 12px; }
  .geo-5 { width: 16px; height: 16px; }
}

/*--------------------------------------------------------------
# Navigation Menu - Modern Style
--------------------------------------------------------------*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
  gap: 8px;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  white-space: nowrap;
  transition: all 0.3s ease;
  border-radius: var(--border-radius-sm);
  text-decoration: none;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: var(--text-primary);
  background: var(--bg-secondary);
}

.navbar .getstarted,
.navbar .getstarted:focus {
  background: var(--gradient-primary);
  padding: 12px 24px;
  margin-left: 16px;
  border-radius: var(--border-radius);
  color: white;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% + 8px);
  margin: 0;
  padding: 8px;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: white;
  box-shadow: var(--shadow-xl);
  transition: all 0.3s ease;
  border-radius: var(--border-radius);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 12px 16px;
  font-size: 14px;
  border-radius: var(--border-radius-sm);
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #4FC891;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #222222;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(9, 9, 9, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 8px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #222222;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #4FC891;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #4FC891;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section - Modern Cuberto Style
--------------------------------------------------------------*/
#home {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 30%, #6366f1 60%, #4f46e5 100%);
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

#home::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  padding: 8px 20px;
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}

.hero-title {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  color: white;
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, #f472b6 0%, #ec4899 50%, #be185d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
}

.hero-title .gradient-text-alt {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
}

.hero-subtitle {
  font-size: 20px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  font-weight: 400;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-primary-modern {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  padding: 16px 32px;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.btn-primary-modern:hover {
  color: white;
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.btn-secondary-modern {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  padding: 16px 32px;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary-modern:hover {
  color: white;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 991px) {
  #home {
    padding: 100px 0 60px;
  }
  
  .hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .hero-buttons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  #home {
    padding: 80px 0 40px;
    text-align: center;
  }
  
  .hero-badge {
    margin-bottom: 16px;
  }
  
  .hero-title {
    margin-bottom: 16px;
  }
  
  .hero-subtitle {
    font-size: 16px;
    margin-bottom: 32px;
  }
  
  .btn-primary-modern,
  .btn-secondary-modern {
    padding: 14px 24px;
    font-size: 15px;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f7fbfe;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  position: relative;
  color: #222222;
}

.section-title h2::before,
.section-title h2::after {
  content: "";
  width: 50px;
  height: 2px;
  background: #4FC891;
  display: inline-block;
}

.section-title h2::before {
  margin: 0 15px 10px 0;
}

.section-title h2::after {
  margin: 0 0 10px 15px;
}

.section-title p {
  margin: 15px 0 0 0;
}

/*--------------------------------------------------------------
# Clients - Modern Features Grid
--------------------------------------------------------------*/
.clients {
  background: var(--bg-primary);
  padding: 100px 0;
  text-align: center;
}

.clients .col-lg-2 {
  margin-bottom: 60px;
  position: relative;
}

.clients .col-lg-2:hover {
  transform: translateY(-10px);
  transition: all 0.4s ease;
}

.clients .feature-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-secondary);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.clients .feature-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.clients .col-lg-2:hover .feature-icon {
  box-shadow: var(--shadow-lg);
  transform: scale(1.05);
}

.clients .col-lg-2:hover .feature-icon::before {
  opacity: 1;
}

.clients .feature-icon i {
  font-size: 40px;
  color: var(--secondary-color);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.clients .col-lg-2:hover .feature-icon i {
  color: white;
  transform: scale(1.1);
}

.clients .description {
  text-align: center;
  margin-top: 20px;
  padding: 0 10px;
}

.clients .description strong {
  display: block;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
  font-family: "Space Grotesk", sans-serif;
}

.clients .description p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-secondary);
  margin: 0;
  font-weight: 400;
}

/* Feature hover effect */
.clients .col-lg-2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  opacity: 0;
  border-radius: var(--border-radius);
  transition: opacity 0.3s ease;
  z-index: -1;
}

@media (max-width: 992px) {
  .clients {
    padding: 80px 0;
  }
  
  .clients .col-lg-2 {
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .clients {
    padding: 60px 0;
  }
  
  .clients img {
    width: 70px;
    height: 70px;
  }
  
  .clients .description strong {
    font-size: 16px;
  }
  
  .clients .description p {
    font-size: 13px;
  }
}

/*--------------------------------------------------------------
# About Us - Modern Style
--------------------------------------------------------------*/
.about {
  padding: 100px 0;
  background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.about .section-title {
  text-align: center;
  margin-bottom: 80px;
}

.about .section-title h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 16px;
  color: white;
}

.about .content h3 {
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 24px;
  color: white;
}

.about .content p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
}

.about .content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 32px;
}

.about .content ul li {
  padding: 16px 0;
  padding-left: 40px;
  position: relative;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.about .content ul li:last-child {
  border-bottom: none;
}

.about .content ul i {
  position: absolute;
  left: 0;
  top: 20px;
  font-size: 20px;
  color: var(--secondary-color);
  line-height: 1;
}

.about .content .btn-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--secondary-color);
  padding: 14px 28px;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid var(--secondary-color);
}

.about .content .btn-learn-more:hover {
  background: var(--secondary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Novos Estilos Modernos da Seção About */
.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(134, 66, 202, 0.2);
  color: #a855f7;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(134, 66, 202, 0.3);
}

.about .section-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
  max-width: 600px;
  margin: 0 auto;
}

.about-content-box {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  height: 100%;
}

.about-intro-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
}

.about-intro-title i {
  color: #a855f7;
  font-size: 28px;
}

.about-description {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
}

.benefits-grid {
  display: grid;
  gap: 20px;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(134, 66, 202, 0.3);
  border-color: rgba(134, 66, 202, 0.5);
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #8642ca, #4fc891);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.benefit-card:hover::before {
  opacity: 1;
}

.benefit-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 24px;
}

.benefit-icon.purple {
  background: rgba(168, 85, 247, 0.2);
  color: #a855f7;
}

.benefit-icon.green {
  background: rgba(79, 200, 145, 0.2);
  color: #4fc891;
}

.benefit-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: white;
  margin-bottom: 8px;
}

.benefit-card p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.about-stats-box {
  background: linear-gradient(135deg, #8642ca 0%, #4fc891 100%);
  border-radius: 20px;
  padding: 40px;
  color: white;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.about-stats-box::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(30px, -30px);
}

.stats-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}

.stats-title i {
  font-size: 26px;
}

.stats-description {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 32px;
  opacity: 0.9;
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.mini-stat {
  text-align: center;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 20px 12px;
  backdrop-filter: blur(10px);
}

.mini-stat-number {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 4px;
}

.mini-stat-label {
  font-size: 12px;
  opacity: 0.8;
  font-weight: 500;
}

.btn-about-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: #8642ca;
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  width: 100%;
  justify-content: center;
}

.btn-about-cta:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  color: #8642ca;
}

@media (max-width: 768px) {
  .about {
    padding: 80px 0;
  }
  
  .about .section-title {
    margin-bottom: 60px;
  }
  
  .about-content-box,
  .about-stats-box {
    padding: 30px 20px;
    margin-bottom: 30px;
  }
  
  .about-intro-title {
    font-size: 20px;
  }
  
  .mini-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  
  .mini-stat {
    padding: 16px 8px;
  }
  
  .mini-stat-number {
    font-size: 20px;
  }
  
  .benefit-card {
    padding: 20px;
  }
}

/*--------------------------------------------------------------
# Counts - Modern Stats Section
--------------------------------------------------------------*/
.counts {
  padding: 120px 0;
  background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
  position: relative;
  overflow: hidden;
}

.counts::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(134, 66, 202, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(79, 200, 145, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.counts .section-title {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.counts .section-title h2 {
  color: white;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.counts .section-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 auto;
  max-width: 600px;
}

.stats-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(134, 66, 202, 0.2);
  color: #a855f7;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(134, 66, 202, 0.3);
}

/* Container da Imagem */
.stats-image-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}

.stats-image-bg {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(134, 66, 202, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
}

.stats-image {
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.floating-stat {
  position: absolute;
  top: 20%;
  right: -10%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
  animation: float 3s ease-in-out infinite;
}

.floating-stat-icon {
  font-size: 24px;
}

.floating-stat-text {
  color: white;
  font-weight: 600;
  font-size: 14px;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
}

/* Container das Estatísticas */
.stats-container {
  position: relative;
  z-index: 2;
}

.stat-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(20px);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.2);
}

.stat-card.happy { --accent-color: #22c55e; }
.stat-card.projects { --accent-color: #3b82f6; }
.stat-card.support { --accent-color: #8b5cf6; }
.stat-card.users { --accent-color: #f59e0b; }

.stat-icon-container {
  position: relative;
  margin-bottom: 20px;
}

.stat-icon {
  font-size: 48px;
  display: block;
  margin-bottom: 4px;
}

.stat-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--accent-color);
  opacity: 0.1;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.1; }
  50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.05; }
}

.stat-number {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 12px;
}

.stat-number .purecounter {
  font-size: 48px;
  font-weight: 800;
  color: white;
  line-height: 1;
}

.stat-plus,
.stat-suffix {
  font-size: 24px;
  font-weight: 600;
  color: var(--accent-color);
}

.stat-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}

.stat-card p {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* CTA Section */
.stats-cta {
  margin-top: 50px;
  text-align: center;
}

.btn-stats-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #8642ca 0%, #4fc891 100%);
  color: white;
  padding: 16px 32px;
  border-radius: 16px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(134, 66, 202, 0.3);
}

.btn-stats-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 45px rgba(134, 66, 202, 0.4);
  color: white;
}

.btn-stats-cta i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.btn-stats-cta:hover i {
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 1024px) {
  .stats-image-container {
    margin-bottom: 60px;
  }
  
  .floating-stat {
    position: static;
    margin: 20px auto 0;
    width: fit-content;
  }
}

@media (max-width: 768px) {
  .counts {
    padding: 80px 0;
  }
  
  .counts .section-title {
    margin-bottom: 60px;
  }
  
  .stat-card {
    padding: 24px;
    margin-bottom: 20px;
  }
  
  .stat-number .purecounter {
    font-size: 36px;
  }
  
  .stat-plus,
  .stat-suffix {
    font-size: 20px;
  }
  
  .stats-image-bg {
    width: 250px;
    height: 250px;
  }
}

/*--------------------------------------------------------------
# Services - Modern Product Cards
--------------------------------------------------------------*/
.services {
  padding: 100px 0;
  background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 20%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.services .section-title h2 {
  color: white;
}

.services .section-title p {
  color: rgba(255, 255, 255, 0.8);
}

.services .icon-box {
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
  background: var(--bg-primary);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s ease;
  border-radius: var(--border-radius);
  z-index: 1;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.services .icon-box:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.services .icon-box::before {
  content: "";
  position: absolute;
  background: var(--gradient-primary);
  right: -100px;
  top: -100px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  transition: all 0.5s ease;
  z-index: -1;
  opacity: 0;
}

.services .icon-box:hover::before {
  opacity: 1;
  right: -50px;
  top: -50px;
  width: 800px;
  height: 700px;
}

.services .icon {
  margin: 0 auto 24px auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: var(--bg-secondary);
  border-radius: var(--border-radius-sm);
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}

.services .icon-box:hover .icon {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.services .icon i {
  font-size: 32px;
  line-height: 1;
  color: var(--secondary-color);
  transition: all 0.4s ease;
}

.services .icon-box:hover .icon i {
  color: white;
  transform: scale(1.1);
}

.services .title {
  font-weight: 700;
  margin-bottom: 16px;
  font-size: 20px;
  font-family: "Space Grotesk", sans-serif;
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}

.services .title a {
  color: var(--text-primary);
  text-decoration: none;
  transition: all 0.4s ease;
}

.services .description {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 0;
  color: var(--text-secondary);
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}

.services .icon-box:hover .title a,
.services .icon-box:hover .description {
  color: rgba(255, 255, 255, 0.95);
}

/* Grid responsiveness */
@media (max-width: 992px) {
  .services {
    padding: 80px 0;
  }
  
  .services .icon-box {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .services .icon-box {
    padding: 30px 20px;
  }
  
  .services .icon {
    width: 70px;
    height: 70px;
  }
  
  .services .icon i {
    font-size: 28px;
  }
}

.services .icon-box:hover .icon {
  background: #fff;
}

.services .icon-box:hover .icon i {
  color: #111;
}

@media (min-width: 992px) {
  .mb-lg-0 {
    margin-bottom: 20px !important;
  }
}

/*--------------------------------------------------------------
# More Services
--------------------------------------------------------------*/
.more-services {
  padding-top: 20px;
}

.more-services .card {
  border: 0;
  padding: 160px 20px 20px 20px;
  position: relative;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.more-services .card-body {
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  transition: ease-in-out 0.4s;
  border-radius: 5px;
}

.more-services .card-title {
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
}

.more-services .card-title a {
  color: #222222;
}

.more-services .card-text {
  color: #5e5e5e;
}

.more-services .read-more a {
  color: #777777;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  transition: 0.4s;
}

.more-services .read-more a:hover {
  text-decoration: underline;
}

.more-services .card:hover .card-body {
  background: #4FC891;
}

.more-services .card:hover .read-more a,
.more-services .card:hover .card-title,
.more-services .card:hover .card-title a,
.more-services .card:hover .card-text {
  color: #fff;
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .icon-box {
  display: flex;
  align-items: center;
  padding: 20px;
  background: #f6f6f6;
  transition: ease-in-out 0.3s;
}

.features .icon-box i {
  font-size: 32px;
  padding-right: 10px;
  line-height: 1;
}

.features .icon-box h3 {
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 16px;
}

.features .icon-box h3 a {
  color: #222222;
  transition: ease-in-out 0.3s;
}

.features .icon-box h3 a:hover {
  color: #4FC891;
}

.features .icon-box:hover {
  background: #eef7fc;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-wrap {
  padding-left: 50px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px 30px 30px 60px;
  margin: 30px 15px;
  min-height: 200px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  position: relative;
  background: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 10px;
  border: 6px solid #fff;
  position: absolute;
  left: -45px;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #e1f0fa;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px auto 15px auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #4FC891;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #4FC891;
}

@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }

  .testimonials .testimonials-carousel,
  .testimonials .testimonials-slider {
    overflow: hidden;
  }

  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
  }

  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 15px 10px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #222222;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  border-radius: 3px;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #fff;
  background: #4FC891;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(34, 34, 34, 0.6);
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(34, 34, 34, 0.6);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap img {
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 20px;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  font-style: italic;
}

.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: #fff;
  margin: 0 5px 0 0;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: #4FC891;
}

.portfolio .portfolio-wrap:hover::before {
  opacity: 1;
}

.portfolio .portfolio-wrap:hover img {
  transform: scale(1.2);
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #4FC891;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #4FC891;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(34, 34, 34, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  margin-bottom: 20px;
  overflow: hidden;
  text-align: center;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.team .member .member-img {
  position: relative;
  overflow: hidden;
}

.team .member .social {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 40px;
  opacity: 0;
  transition: ease-in-out 0.3s;
  background: rgba(255, 255, 255, 0.85);
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.team .member .social a {
  transition: color 0.3s;
  color: #222222;
  margin: 0 10px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.team .member .social a i {
  line-height: 0;
}

.team .member .social a:hover {
  color: #4FC891;
}

.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.team .member .member-info {
  padding: 25px 15px;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: #222222;
}

.team .member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #aaaaaa;
}

.team .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #777777;
}

.team .member:hover .social {
  opacity: 1;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
  padding: 20px;
  background: #f9f9f9;
  text-align: center;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  border: 2px solid #f9f9f9;
}

.pricing .box h3 {
  font-weight: 400;
  padding: 15px;
  margin-top: 15px;
  font-size: 18px;
  font-weight: 600;
  color: #222222;
}

.pricing .box h4 {
  font-size: 42px;
  color: #4FC891;
  font-weight: 500;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 20px;
}

.pricing .box h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing .box h4 span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}

.pricing .box ul {
  padding: 0;
  list-style: none;
  color: #222222;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing .box ul li {
  padding-bottom: 16px;
}

.pricing .box ul i {
  color: #4FC891;
  font-size: 18px;
  padding-right: 4px;
}

.pricing .box ul .na {
  color: #ccc;
  text-decoration: line-through;
}

.pricing .box .btn-wrap {
  padding: 15px;
  text-align: center;
}

.pricing .box .btn-buy {
  display: inline-block;
  padding: 10px 40px 12px 40px;
  border-radius: 50px;
  border: 2px solid #4FC891;
  color: #4FC891;
  font-size: 14px;
  font-weight: 400;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  transition: 0.3s;
}

.pricing .box .btn-buy:hover {
  background: #4FC891;
  color: #fff;
}

.pricing .recommended {
  border-color: #4FC891;
}

.pricing .recommended .btn-buy {
  background: #4FC891;
  color: #fff;
}

.pricing .recommended .btn-buy:hover {
  background: #0c693f;
  border-color: #0c693f;
}


.pricing h3 {
  font-weight: 400;
  margin: -20px -20px 20px -20px;
  padding: 20px 15px;
  font-size: 16px;
  font-weight: 600;
  color: #2c4964;
  background: #f8f8f8;
}

.pricing h4 {
  font-size: 36px;
  color: #1AA37A;
  font-weight: 600;
  font-family: "Roboto", sans-serif;
  margin-bottom: 20px;
}

.pricing h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing h4 span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: #444444;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing ul li {
  padding-bottom: 16px;
}

.pricing ul i {
  color: #1AA37A;
  font-size: 18px;
  padding-right: 4px;
}

.pricing ul .na {
  color: #ccc;
  text-decoration: line-through;
}

.pricing .btn-wrap {
  margin: 20px -20px -20px -20px;
  padding: 20px 15px;
  background: #f8f8f8;
  text-align: center;
}

.pricing .btn-buy {
  background: linear-gradient(42deg, #1AA37A 0%, #7b27d8 100%);
  display: inline-block;
  padding: 10px 35px;
  border-radius: 4px;
  color: #fff;
  transition: none;
  font-size: 15px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  transition: 0.3s;
}

.pricing .btn-buy:hover {
  background: linear-gradient(180deg, #1AA37A 0%, #7b27d8 100%);
}

.pricing .featured h3 {
  color: #fff;
  background: #1AA37A;
}

.pricing .advanced {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  background: #1AA37A;
  color: #fff;
}

.bg-cta-02{
    background: linear-gradient(89deg, #202020 13.01%, #272727 65.19%, #353535 90.1%);
    color: #fff;
  }

  
/* area table */
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  border: 1px solid #dddddd;
  text-align: left;
  padding: 8px;
}
th {
  color: #111412;
  background-color: #f2f2f2;
}

.img-security {
  width: 20rem;
}
/*--------------------------------------------------------------
# FAQ - Modern Interactive Section
--------------------------------------------------------------*/
.faq {
  padding: 120px 0;
  background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
  position: relative;
  overflow: hidden;
}

.faq::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(134, 66, 202, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(79, 200, 145, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.faq .section-title {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.faq .section-title h2 {
  color: white;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.faq .section-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 auto;
  max-width: 600px;
}

.faq-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(134, 66, 202, 0.2);
  color: #a855f7;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(134, 66, 202, 0.3);
}

/* FAQ Accordion */
.faq-accordion {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  margin-bottom: 20px;
  overflow: hidden;
  backdrop-filter: blur(20px);
  transition: all 0.3s ease;
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(134, 66, 202, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.faq-item.active {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(134, 66, 202, 0.4);
}

.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex: 1;
}

.faq-icon {
  width: 48px;
  height: 48px;
  background: rgba(134, 66, 202, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #a855f7;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.faq-item:hover .faq-icon {
  background: rgba(134, 66, 202, 0.3);
  transform: scale(1.05);
}

.faq-question h3 {
  font-size: 18px;
  font-weight: 600;
  color: white;
  margin: 0;
  line-height: 1.4;
}

.highlight {
  padding: 4px 8px;
  border-radius: 6px;
  color: white;
  font-weight: 700;
}

.highlight.purple {
  background: #8642ca;
}

.highlight.green {
  background: #4fc891;
}

.faq-toggle {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-toggle {
  background: #8642ca;
  transform: rotate(45deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}

.faq-item.active .faq-content {
  max-height: 800px;
}

.faq-answer {
  padding: 0 30px 30px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

.faq-answer p {
  font-size: 16px;
  margin-bottom: 20px;
}

.faq-answer ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.faq-answer ul li {
  padding: 8px 0;
  font-size: 15px;
}

/* Benefits List */
.benefits-list {
  margin: 20px 0;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  padding: 12px 16px;
  background: rgba(79, 200, 145, 0.1);
  border-radius: 8px;
  border-left: 3px solid #4fc891;
}

.benefit-item i {
  color: #4fc891;
  font-size: 20px;
}

/* Support Channels */
.support-channels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 20px 0;
}

.channel {
  text-align: center;
  padding: 20px;
  background: rgba(134, 66, 202, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(134, 66, 202, 0.2);
}

.channel i {
  font-size: 32px;
  color: #a855f7;
  margin-bottom: 12px;
}

.channel h4 {
  font-size: 16px;
  font-weight: 600;
  color: white;
  margin-bottom: 8px;
}

.channel p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* Payment Options */
.payment-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 20px 0;
}

.payment-option {
  text-align: center;
  padding: 20px;
  background: rgba(79, 200, 145, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(79, 200, 145, 0.2);
}

.payment-option i {
  font-size: 32px;
  color: #4fc891;
  margin-bottom: 12px;
}

.payment-option h4 {
  font-size: 16px;
  font-weight: 600;
  color: white;
  margin-bottom: 8px;
}

.payment-option p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* Security Features */
.security-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 20px 0;
}

.security-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: rgba(134, 66, 202, 0.1);
  border-radius: 12px;
  border-left: 4px solid #8642ca;
}

.security-item i {
  font-size: 28px;
  color: #a855f7;
  flex-shrink: 0;
}

.security-item h5 {
  font-size: 16px;
  font-weight: 600;
  color: white;
  margin: 0 0 4px 0;
}

.security-item p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* FAQ CTA */
.faq-cta {
  margin-top: 60px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-content {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(20px);
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h3 {
  font-size: 28px;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
}

.cta-content p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
}

.btn-faq-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #8642ca 0%, #4fc891 100%);
  color: white;
  padding: 16px 32px;
  border-radius: 16px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(134, 66, 202, 0.3);
}

.btn-faq-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 45px rgba(134, 66, 202, 0.4);
  color: white;
}

.btn-faq-cta i {
  font-size: 18px;
}

/* Responsive */
@media (max-width: 768px) {
  .faq {
    padding: 80px 0;
  }
  
  .faq-header {
    padding: 20px;
  }
  
  .faq-question {
    gap: 12px;
  }
  
  .faq-question h3 {
    font-size: 16px;
  }
  
  .faq-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  
  .faq-answer {
    padding: 0 20px 20px;
  }
  
  .support-channels,
  .payment-options {
    grid-template-columns: 1fr;
  }
  
  .cta-content {
    padding: 30px 20px;
  }
  
  .cta-content h3 {
    font-size: 24px;
  }
}

/*--------------------------------------------------------------
/*--------------------------------------------------------------
# Contact - Modern Style
--------------------------------------------------------------*/
.contact {
  padding: 100px 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.contact .section-title {
  text-align: center;
  margin-bottom: 80px;
}

.contact .section-title h2 {
  color: white;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.contact .section-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
  max-width: 600px;
  margin: 0 auto;
}

.contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(134, 66, 202, 0.2);
  color: #8642ca;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(134, 66, 202, 0.3);
}

/* Coluna de Informações de Contato */
.contact-info-box {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 100%;
}

.contact-info-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 700;
  color: white;
  margin-bottom: 32px;
}

.contact-info-title i {
  color: #8642ca;
  font-size: 28px;
}

.contact-items {
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  margin-bottom: 16px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(8px);
  border-color: rgba(134, 66, 202, 0.3);
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.contact-icon.support {
  background: rgba(134, 66, 202, 0.2);
  color: #8642ca;
}

.contact-icon.commercial {
  background: rgba(79, 200, 145, 0.2);
  color: #4fc891;
}

.contact-icon.financial {
  background: rgba(59, 130, 246, 0.2);
  color: #3b82f6;
}

.contact-icon.whatsapp {
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
}

.contact-details h4 {
  font-size: 16px;
  font-weight: 600;
  color: white;
  margin: 0 0 4px 0;
}

.contact-details p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.5;
}

.contact-details a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-details a:hover {
  color: white;
}

/* Seção de Redes Sociais */
.social-section {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 32px;
}

.social-section h4 {
  font-size: 18px;
  font-weight: 600;
  color: white;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-link {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link.linkedin {
  background: rgba(14, 165, 233, 0.15);
  color: #0ea5e9;
}

.social-link.linkedin:hover {
  background: #0ea5e9;
  color: white;
}

.social-link.instagram {
  background: rgba(236, 72, 153, 0.15);
  color: #ec4899;
}

.social-link.instagram:hover {
  background: #ec4899;
  color: white;
}

.social-link.facebook {
  background: rgba(37, 99, 235, 0.15);
  color: #2563eb;
}

.social-link.facebook:hover {
  background: #2563eb;
  color: white;
}

/* Coluna do Formulário */
.contact-form-box {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.form-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 32px;
}

.form-title i {
  color: #8642ca;
  font-size: 28px;
}

.modern-form .form-row {
  margin-bottom: 24px;
}

.modern-form .form-group {
  position: relative;
}

.modern-form .form-control {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  font-size: 15px;
  font-family: "Inter", sans-serif;
  transition: all 0.3s ease;
  background: #fafafa;
  color: var(--text-primary);
}

.modern-form .form-control:focus {
  outline: none;
  border-color: #8642ca;
  box-shadow: 0 0 0 3px rgba(134, 66, 202, 0.1);
  background: white;
}

.modern-form .form-control::placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.modern-form textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.btn-send-modern {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #8642ca 0%, #4fc891 100%);
  border: none;
  padding: 16px 32px;
  color: white;
  font-weight: 600;
  font-size: 16px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  text-decoration: none;
}

.btn-send-modern:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(134, 66, 202, 0.3);
  color: white;
}

.btn-send-modern i {
  font-size: 18px;
}

/* Mensagens do Formulário */
.form-messages {
  margin-bottom: 24px;
}

.form-messages .error-message {
  display: none;
  background: #ef4444;
  color: white;
  padding: 16px 20px;
  border-radius: 12px;
  font-weight: 500;
}

.form-messages .sent-message {
  display: none;
  background: #10b981;
  color: white;
  padding: 16px 20px;
  border-radius: 12px;
  font-weight: 500;
}

.form-messages .loading {
  display: none;
  text-align: center;
  padding: 20px;
  color: #8642ca;
}

.form-messages .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  border: 3px solid #8642ca;
  border-top-color: transparent;
  animation: animate-loading 1s linear infinite;
  margin-right: 8px;
}

@keyframes animate-loading {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 768px) {
  .contact {
    padding: 80px 0;
  }
  
  .contact-info-box,
  .contact-form-box {
    padding: 30px 20px;
    margin-bottom: 30px;
  }
  
  .social-links {
    flex-wrap: wrap;
    gap: 12px;
  }
  
  .contact-item {
    padding: 16px;
  }
  
  .contact-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f8f8f8;
  min-height: 40px;
  margin-top: 86px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 72px;
  }
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 400;
  margin: 0;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

@media (max-width: 992px) {
  .breadcrumbs ol {
    margin-top: 10px;
  }
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #3c3c3c;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Footer - Modern Style
--------------------------------------------------------------*/
#footer {
  background: var(--text-primary);
  color: white;
  padding: 60px 0 30px;
  position: relative;
}

#footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient-primary);
}

#footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

#footer .row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  text-align: center;
}

#footer .copyright {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
  text-align: center;
  width: 100%;
}

#footer .footer-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

#footer .footer-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 8px 12px;
  border-radius: var(--border-radius-sm);
}

#footer .footer-links a:hover {
  color: white;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  #footer {
    padding: 40px 0 20px;
  }
  
  #footer .row {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  
  #footer .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
  
  #footer .copyright {
    order: 2;
  }
  
  #footer .footer-links {
    order: 1;
  }
}