@charset "UTF-8";
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Prevenir elementos de ultrapassarem a largura da viewport */
img, video, iframe, embed, object, svg {
  max-width: 100%;
  height: auto;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #000000;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  width: 100%;
  max-width: 100vw;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 80%, rgba(0, 255, 136, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(255, 0, 128, 0.1) 0%, transparent 50%), radial-gradient(circle at 40% 40%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Orbitron", monospace;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.5rem, 8vw, 5rem);
}

h2 {
  font-size: clamp(2rem, 6vw, 3.5rem);
}

h3 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
}

p {
  font-size: 1.125rem;
  color: #b0b0b0;
  margin-bottom: 1.5rem;
}

main {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100vw;
}

body {
  position: relative;
  z-index: 1;
}

section {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100vw;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  box-sizing: border-box;
  overflow: visible;
}
@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border: none;
  border-radius: 16px;
  font-family: "Orbitron", monospace;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, #00ff88, #00bc32);
  color: #000000;
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.3), 0 10px 30px rgba(0, 255, 136, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #00ff88;
  border: 2px solid #00ff88;
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
}

.btn-secondary:hover {
  background: #00ff88;
  color: #000000;
  transform: translateY(-3px);
}

.dashboard-container {
  display: flex;
  height: 100vh;
  background: #000000;
  position: relative;
  overflow: hidden;
}

.dashboard-sidebar {
  width: 280px;
  height: 100vh;
  background: #111111;
  border-right: 1px solid rgba(0, 255, 136, 0.2);
  display: flex;
  flex-direction: column;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
  transition: all 0.3s ease;
}
.dashboard-sidebar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #000000, #111111);
  opacity: 0.8;
  z-index: -1;
}
.dashboard-sidebar.collapsed {
  width: 70px;
}
.dashboard-sidebar.collapsed .sidebar-logo-text,
.dashboard-sidebar.collapsed .user-details,
.dashboard-sidebar.collapsed .nav-section-title,
.dashboard-sidebar.collapsed .nav-link span,
.dashboard-sidebar.collapsed .logout-button span {
  opacity: 0;
  visibility: hidden;
}
.dashboard-sidebar.collapsed .sidebar-logo,
.dashboard-sidebar.collapsed .user-info,
.dashboard-sidebar.collapsed .nav-link {
  justify-content: center;
}
.dashboard-sidebar.mobile-open {
  transform: translateX(0);
}

.sidebar-header {
  height: 6.5rem;
  padding: 0 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sidebar-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
}

.sidebar-logo-svg {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 0 10px #00ff88);
}

.sidebar-logo-text {
  font-family: "Orbitron", monospace;
  font-size: 1.125rem;
  font-weight: 700;
  color: #00ff88;
  text-shadow: 0 0 10px #00ff88;
  transition: all 0.3s ease;
}

.sidebar-toggle {
  background: none;
  border: none;
  color: #b0b0b0;
  font-size: 1.125rem;
  cursor: pointer;
  padding: 1rem;
  border-radius: 8px;
  transition: all 0.2s ease;
  display: none;
}
.sidebar-toggle:hover {
  color: #00ff88;
  background: rgba(0, 255, 136, 0.1);
}

.sidebar-content {
  flex: 1;
  padding: 2rem 0;
  overflow-y: auto;
  direction: rtl;
}
.sidebar-content > * {
  direction: ltr;
}
.sidebar-content::-webkit-scrollbar {
  width: 4px;
}
.sidebar-content::-webkit-scrollbar-track {
  background: transparent;
}
.sidebar-content::-webkit-scrollbar-thumb {
  background: rgba(0, 255, 136, 0.3);
  border-radius: 2px;
}

.user-info {
  padding: 0 2rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}
.sidebar-header .user-info {
  padding: 0;
  border-bottom: none;
  margin-bottom: 0;
}

.user-avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #00ff88, #00bc32);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  font-size: 1.125rem;
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.user-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
  transition: all 0.3s ease;
}

.user-name {
  color: #ffffff;
  font-weight: 600;
  font-size: 0.875rem;
}

.user-status {
  color: #00ff88;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.sidebar-nav {
  padding: 0 2rem;
}

.nav-section {
  margin-bottom: 2.5rem;
}

.nav-section-title {
  color: #666666;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  padding-left: 1rem;
  transition: all 0.3s ease;
}

.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.nav-item {
  position: relative;
}

.dashboard-sidebar .nav-link {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
  color: #b0b0b0;
  text-decoration: none;
  border-radius: 16px;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}
.dashboard-sidebar .nav-link:hover {
  color: #ffffff;
  background: rgba(0, 255, 136, 0.1);
  transform: translateX(4px);
}
.dashboard-sidebar .nav-link.active {
  color: #00ff88;
  background: rgba(0, 255, 136, 0.15);
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
}
.dashboard-sidebar .nav-link.active::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 20px;
  background: #00ff88;
  border-radius: 2px;
}
.dashboard-sidebar .nav-link i {
  font-size: 1.125rem;
  min-width: 20px;
  text-align: center;
}
.dashboard-sidebar .nav-link span {
  font-weight: 500;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.sidebar-footer {
  padding: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.logout-button {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
  background: rgba(255, 68, 68, 0.1);
  border: 1px solid rgba(255, 68, 68, 0.3);
  border-radius: 16px;
  color: #ff4444;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
.logout-button:hover {
  background: rgba(255, 68, 68, 0.2);
  border-color: #ff4444;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(255, 68, 68, 0.3);
}
.logout-button i {
  font-size: 1rem;
}
.logout-button span {
  transition: all 0.3s ease;
}

.dashboard-main {
  flex: 1;
  height: 100vh;
  margin-left: 17.3rem;
  display: flex;
  flex-direction: column;
  background: #000000;
  position: relative;
  overflow: hidden;
}

.dashboard-header {
  background: #111111;
  border-bottom: 1px solid rgba(0, 255, 136, 0.2);
  height: 6.5rem;
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 10;
}
.dashboard-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #000000, #111111);
  opacity: 0.5;
  z-index: -1;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #b0b0b0;
  font-size: 1.25rem;
  cursor: pointer;
  padding: 1rem;
  border-radius: 8px;
  transition: all 0.2s ease;
}
.mobile-menu-toggle:hover {
  color: #00ff88;
  background: rgba(0, 255, 136, 0.1);
}

.page-title {
  font-family: "Orbitron", monospace;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.action-button {
  position: relative;
  background: none;
  border: none;
  color: #b0b0b0;
  font-size: 1.125rem;
  cursor: pointer;
  padding: 1.5rem;
  border-radius: 16px;
  transition: all 0.2s ease;
}
.action-button:hover {
  color: #00ff88;
  background: rgba(0, 255, 136, 0.1);
  transform: translateY(-1px);
}

.settings-dropdown {
  position: relative;
}

.settings-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #111111;
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
}
.settings-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.settings-menu-header {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.settings-menu-header h3 {
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.settings-menu-content {
  padding: 1rem 0;
}

.settings-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2rem;
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.875rem;
  transition: all 0.2s ease;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
}
.settings-item:hover {
  color: #ffffff;
  background: rgba(0, 255, 136, 0.1);
}
.settings-item i {
  font-size: 1.125rem;
  min-width: 20px;
  text-align: center;
}
.settings-item span {
  font-weight: 500;
}
.settings-item.logout-item {
  color: #00bc32;
}
.settings-item.logout-item:hover {
  color: #ffffff;
  background: rgba(255, 0, 0, 0.1);
}

.settings-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 1rem 0;
}

.notification-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: #ff4444;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 10px;
  min-width: 18px;
  text-align: center;
  box-shadow: 0 0 10px rgba(255, 68, 68, 0.5);
}

.dashboard-content {
  flex: 1;
  padding: 1.4rem;
  overflow-y: auto;
  position: relative;
}
.dashboard-content::-webkit-scrollbar {
  width: 6px;
}
.dashboard-content::-webkit-scrollbar-track {
  background: transparent;
}
.dashboard-content::-webkit-scrollbar-thumb {
  background: rgba(0, 255, 136, 0.3);
  border-radius: 3px;
}

.dashboard-content:has(.morpheus-chat-container) {
  overflow: hidden;
}

.content-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  text-align: center;
  padding: 4rem;
}

.placeholder-icon {
  font-size: 4rem;
  color: #00ff88;
  margin-bottom: 2.5rem;
  text-shadow: 0 0 30px #00ff88;
  animation: pulse-glow 2s ease-in-out infinite;
}

.placeholder-title {
  font-family: "Orbitron", monospace;
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #00ff88, #00bc32);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.placeholder-description {
  color: #b0b0b0;
  font-size: 1.125rem;
  margin-bottom: 4rem;
  max-width: 600px;
  line-height: 1.6;
}

.placeholder-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 800px;
  width: 100%;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  transition: all 0.3s ease;
}
.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  border-color: #00ff88;
}
.feature-item i {
  font-size: 2rem;
  color: #00ff88;
  text-shadow: 0 0 20px #00ff88;
}
.feature-item span {
  color: #ffffff;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.app-content {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 0px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}
.app-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.05), rgba(0, 212, 255, 0.05));
  opacity: 0.05;
  z-index: -1;
}

.app-header {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.app-title {
  font-family: "Orbitron", monospace;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.app-description {
  color: #b0b0b0;
  font-size: 1rem;
  margin: 0;
}

.app-body {
  min-height: 300px;
}

.app-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem;
  min-height: 300px;
}

.app-icon {
  font-size: 3rem;
  color: #00ff88;
  margin-bottom: 2rem;
  text-shadow: 0 0 20px #00ff88;
}

.app-placeholder h3 {
  font-family: "Orbitron", monospace;
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.app-placeholder p {
  color: #b0b0b0;
  margin-bottom: 2rem;
  max-width: 500px;
}

.app-status {
  margin-top: 2rem;
}

.status-badge {
  display: inline-block;
  padding: 1rem 1.5rem;
  background: rgba(255, 170, 0, 0.2);
  color: #ffaa00;
  border: 1px solid #ffaa00;
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.morpheus-integrated {
  height: 70vh;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(0, 255, 136, 0.2);
  position: relative;
}

.morpheus-iframe {
  width: 100%;
  height: 80vh;
  border: none;
  background: #000000;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(0, 255, 136, 0.2);
  display: block;
  position: relative;
  z-index: 1;
  outline: none;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.morpheus-iframe::-webkit-scrollbar {
  display: none;
}

.app-content.morpheus-active {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  overflow: hidden !important;
  position: relative;
}
.app-content.morpheus-active::before {
  display: none !important;
}
.app-content.morpheus-active .app-body {
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  overflow: visible !important;
}

.morpheus-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding: 2rem;
  background: rgba(0, 255, 136, 0.05);
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: 16px;
}

.morpheus-status {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #00ff88;
  font-size: 0.875rem;
  font-weight: 500;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #00ff88;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.morpheus-actions {
  display: flex;
  gap: 1rem;
}

.morpheus-btn {
  background: none;
  border: 1px solid rgba(0, 255, 136, 0.3);
  color: #00ff88;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 500;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
.morpheus-btn:hover {
  background: rgba(0, 255, 136, 0.1);
  border-color: #00ff88;
  transform: translateY(-1px);
}
.morpheus-btn.primary {
  background: linear-gradient(135deg, #00ff88, #00bc32);
  color: #000000;
  border-color: #00ff88;
}
.morpheus-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
}
.morpheus-btn i {
  font-size: 0.875rem;
}

.app-content.morpheus-fullscreen {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background: #000000;
  border-radius: 0;
  padding: 0;
}
.app-content.morpheus-fullscreen .morpheus-integrated {
  height: 100vh;
  border-radius: 0;
}
.app-content.morpheus-fullscreen .morpheus-controls {
  margin: 0;
  border-radius: 0;
  border-left: none;
  border-right: none;
  border-top: none;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
@media (max-width: 768px) {
  .dashboard-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    transform: translateX(-100%);
    z-index: 1000;
    width: 280px;
  }
  .dashboard-sidebar.mobile-open {
    transform: translateX(0);
  }
  .dashboard-main {
    margin-left: 0;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .sidebar-toggle {
    display: block;
  }
  .dashboard-content {
    padding: 2rem;
  }
  .placeholder-features {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .feature-item {
    padding: 1.5rem;
  }
  .morpheus-integrated {
    height: 60vh;
  }
  .morpheus-controls {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  .morpheus-actions {
    width: 100%;
    justify-content: center;
  }
  .morpheus-btn {
    flex: 1;
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .dashboard-header {
    height: 4.5rem;
    padding: 0 2rem;
  }
  .sidebar-header {
    height: 4.5rem;
    padding: 0 2rem;
  }
  .page-title {
    font-size: 1.25rem;
  }
  .dashboard-content {
    padding: 1.5rem;
  }
  .content-placeholder {
    padding: 2rem;
    min-height: 300px;
  }
  .placeholder-title {
    font-size: 1.5rem;
  }
  .placeholder-description {
    font-size: 1rem;
  }
  .app-content {
    padding: 2rem;
  }
  .morpheus-integrated {
    height: 50vh;
  }
  .morpheus-controls {
    padding: 1.5rem;
  }
  .morpheus-btn {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
  }
}
.ai-tools-container {
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.tools-section h3 {
  color: #00ff88;
  font-family: "Orbitron", monospace;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}
.tools-section p {
  color: #b0b0b0;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 0rem;
}
@media (max-width: 768px) {
  .tools-grid {
    grid-template-columns: 1fr;
  }
}

.tool-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.tool-card:hover {
  border-color: rgba(0, 255, 136, 0.4);
  background: rgba(0, 255, 136, 0.05);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 255, 136, 0.1);
}

.tool-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #00ff88, #00bc32);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  font-size: 1.5rem;
  box-shadow: 0 4px 16px rgba(0, 255, 136, 0.3);
}

.tool-content {
  flex: 1;
}
.tool-content h4 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.tool-content p {
  color: #b0b0b0;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.tool-button {
  background: linear-gradient(135deg, #00ff88, #00bc32);
  border: none;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: #000000;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  justify-content: center;
}
.tool-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 255, 136, 0.4);
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 1rem;
}

.modal-content {
  background: #111111;
  border: 1px solid rgba(0, 255, 136, 0.3);
  border-radius: 16px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 16px 64px rgba(0, 0, 0, 0.5);
}

.modal-header {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.modal-header h3 {
  color: #00ff88;
  font-family: "Orbitron", monospace;
  margin: 0;
  font-size: 1.3rem;
}

.close-btn {
  background: none;
  border: none;
  color: #b0b0b0;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.close-btn:hover {
  color: #00ff88;
  background: rgba(0, 255, 136, 0.1);
}

.modal-body {
  padding: 1.5rem;
}

.prompts-manager .prompt-section {
  margin-bottom: 2rem;
}
.prompts-manager .prompt-section h4 {
  color: #ffffff;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}
.prompts-manager .prompt-section textarea {
  width: 100%;
  min-height: 120px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 1rem;
  color: #ffffff;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.9rem;
  resize: vertical;
  margin-bottom: 1rem;
}
.prompts-manager .prompt-section textarea:focus {
  outline: none;
  border-color: #00ff88;
  box-shadow: 0 0 0 2px rgba(0, 255, 136, 0.2);
}

.variables-manager .add-variable {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.variables-manager .add-variable input {
  flex: 1;
  min-width: 150px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 0.75rem;
  color: #ffffff;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.variables-manager .add-variable input:focus {
  outline: none;
  border-color: #00ff88;
}
.variables-manager .add-variable .add-variable-btn {
  background: linear-gradient(135deg, #00ff88, #00bc32);
  border: none;
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  color: #000000;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.variables-manager .add-variable .add-variable-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 255, 136, 0.4);
}
.variables-manager .variables-list .variable-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.variables-manager .variables-list .variable-item.auto-variable {
  background: rgba(0, 255, 136, 0.05);
  border-color: rgba(0, 255, 136, 0.3);
}
.variables-manager .variables-list .variable-item.auto-variable .var-name {
  color: #00ff88;
}
.variables-manager .variables-list .variable-item .var-name {
  color: #00ff88;
  font-weight: 600;
  min-width: 120px;
}
.variables-manager .variables-list .variable-item .var-value {
  color: #ffffff;
  flex: 1;
}
.variables-manager .variables-list .variable-item .auto-label {
  background: linear-gradient(135deg, #00ff88, #00bc32);
  color: #000000;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.variables-manager .variables-list .variable-item .delete-btn {
  background: #ff4444;
  border: none;
  border-radius: 6px;
  padding: 0.5rem 1rem;
  color: white;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.variables-manager .variables-list .variable-item .delete-btn:hover {
  background: #ff4444;
  transform: translateY(-1px);
}
.variables-manager .variables-list .empty {
  text-align: center;
  color: #b0b0b0;
  padding: 2rem;
  font-style: italic;
}

.settings-manager .setting-group {
  margin-bottom: 1.5rem;
}
.settings-manager .setting-group label {
  display: block;
  color: #ffffff;
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.settings-manager .setting-group select, .settings-manager .setting-group input[type=range], .settings-manager .setting-group input[type=password], .settings-manager .setting-group input[type=text] {
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 0.75rem;
  color: #ffffff;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.settings-manager .setting-group select:focus, .settings-manager .setting-group input[type=range]:focus, .settings-manager .setting-group input[type=password]:focus, .settings-manager .setting-group input[type=text]:focus {
  outline: none;
  border-color: #00ff88;
}
.settings-manager .setting-group .api-key-input {
  font-family: "Courier New", monospace;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}
.settings-manager .setting-group .required {
  color: #00bc32;
  font-weight: bold;
}
.settings-manager .setting-group .help-text {
  display: block;
  margin-top: 0.5rem;
  color: #b0b0b0;
  font-size: 0.85rem;
}
.settings-manager .setting-group .help-text a {
  color: #00ff88;
  text-decoration: none;
}
.settings-manager .setting-group .help-text a:hover {
  text-decoration: underline;
}
.settings-manager .setting-group input[type=range] {
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
}
.settings-manager .setting-group input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
          appearance: none;
  width: 20px;
  height: 20px;
  background: #00ff88;
  border-radius: 50%;
  cursor: pointer;
}
.settings-manager .setting-group span {
  color: #00ff88;
  font-weight: 600;
  margin-left: 1rem;
}

.conversations-manager .conversation-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.conversations-manager .conversation-item .conv-info {
  flex: 1;
}
.conversations-manager .conversation-item .conv-info h4 {
  color: #ffffff;
  margin: 0 0 0.25rem 0;
  font-size: 1rem;
}
.conversations-manager .conversation-item .conv-info p {
  color: #b0b0b0;
  margin: 0;
  font-size: 0.8rem;
}
.conversations-manager .conversation-item .conv-actions {
  display: flex;
  gap: 0.5rem;
}
.conversations-manager .conversation-item .conv-actions button {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 6px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.conversations-manager .conversation-item .conv-actions button.open-btn {
  background: #00ff88;
  color: #000000;
}
.conversations-manager .conversation-item .conv-actions button.open-btn:hover {
  background: #00bc32;
  transform: translateY(-1px);
}
.conversations-manager .conversation-item .conv-actions button.delete-btn {
  background: #ff4444;
  color: white;
}
.conversations-manager .conversation-item .conv-actions button.delete-btn:hover {
  background: #ff4444;
  transform: translateY(-1px);
}
.conversations-manager .empty {
  text-align: center;
  color: #b0b0b0;
  padding: 2rem;
  font-style: italic;
}

.save-btn {
  background: linear-gradient(135deg, #00ff88, #00bc32);
  border: none;
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  color: #000000;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}
.save-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 255, 136, 0.4);
}

.loading {
  text-align: center;
  color: #b0b0b0;
  padding: 2rem;
  font-style: italic;
}

.agents-manager .agents-list-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #222222;
}
.agents-manager .agents-list-header h3 {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
}
.agents-manager .agents-list-header .add-btn {
  background: linear-gradient(135deg, #00ff88, #00bc32);
  color: #000000;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 16px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.agents-manager .agents-list-header .add-btn:hover {
  background: linear-gradient(135deg, #00cc6a, #0099cc);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 255, 136, 0.4);
}
.agents-manager .agents-list-header .add-btn i {
  font-size: 1rem;
}
.agents-manager .agents-list {
  max-height: 400px;
  overflow-y: auto;
}
.agents-manager .agents-list .agent-item {
  background: #1a1a1a;
  border: 1px solid #222222;
  border-radius: 16px;
  padding: 1rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}
.agents-manager .agents-list .agent-item:hover {
  border-color: #00ff88;
  transform: translateY(-1px);
}
.agents-manager .agents-list .agent-item .agent-info {
  margin-bottom: 1rem;
}
.agents-manager .agents-list .agent-item .agent-info h4 {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
}
.agents-manager .agents-list .agent-item .agent-info p {
  color: #b0b0b0;
  font-size: 0.9rem;
  line-height: 1.4;
  margin: 0;
}
.agents-manager .agents-list .agent-item .agent-actions {
  display: flex;
  gap: 0.75rem;
}
.agents-manager .agents-list .agent-item .agent-actions .edit-btn, .agents-manager .agents-list .agent-item .agent-actions .delete-btn {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 16px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}
.agents-manager .agents-list .agent-item .agent-actions .edit-btn {
  background: #00bc32;
  color: white;
}
.agents-manager .agents-list .agent-item .agent-actions .edit-btn:hover {
  background: #0099cc;
}
.agents-manager .agents-list .agent-item .agent-actions .delete-btn {
  background: #ff4444;
  color: white;
}
.agents-manager .agents-list .agent-item .agent-actions .delete-btn:hover {
  background: #ff1111;
}
.agents-manager .agents-list .empty {
  text-align: center;
  color: #b0b0b0;
  padding: 2rem;
  font-style: italic;
}
.agents-manager .agents-list .loading {
  text-align: center;
  color: #b0b0b0;
  padding: 2rem;
}

.agent-editor .modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #222222;
}
.agent-editor .modal-actions .save-btn {
  background: linear-gradient(135deg, #00ff88, #00bc32);
  color: #000000;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 16px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.agent-editor .modal-actions .save-btn:hover {
  background: linear-gradient(135deg, #00cc6a, #0099cc);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 255, 136, 0.4);
}
.agent-editor input[type=text], .agent-editor textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #222222;
  border-radius: 16px;
  background: #1a1a1a;
  color: #ffffff;
  font-size: 0.9rem;
  font-family: inherit;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}
.agent-editor input[type=text]:focus, .agent-editor textarea:focus {
  outline: none;
  border-color: #00ff88;
  box-shadow: 0 0 0 2px rgba(0, 255, 136, 0.2);
}
.agent-editor input[type=text]::-moz-placeholder, .agent-editor textarea::-moz-placeholder {
  color: #666666;
}
.agent-editor input[type=text]::placeholder, .agent-editor textarea::placeholder {
  color: #666666;
}
.agent-editor textarea {
  min-height: 120px;
  resize: vertical;
}

.change-password-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60vh;
  padding: 2rem;
}

.change-password-card {
  background: #1a1a1a;
  border-radius: 16px;
  padding: 3rem;
  width: 100%;
  max-width: 500px;
  border: 1px solid rgba(0, 255, 136, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.change-password-header {
  text-align: center;
  margin-bottom: 3rem;
}
.change-password-header h3 {
  color: #ffffff;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.change-password-header p {
  color: #b0b0b0;
  font-size: 0.9rem;
}

.change-password-form .form-group {
  margin-bottom: 2rem;
}
.change-password-form .form-group label {
  display: block;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.change-password-form .form-group input[type=password] {
  width: 100%;
  padding: 1.5rem;
  background: #000000;
  border: 1px solid rgba(0, 255, 136, 0.3);
  border-radius: 8px;
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.change-password-form .form-group input[type=password]:focus {
  outline: none;
  border-color: #00ff88;
  box-shadow: 0 0 0 2px rgba(0, 255, 136, 0.2);
}
.change-password-form .form-group input[type=password]::-moz-placeholder {
  color: #666666;
}
.change-password-form .form-group input[type=password]::placeholder {
  color: #666666;
}
.change-password-form .form-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: flex-end;
  margin-top: 3rem;
}
.change-password-form .form-actions .btn-secondary {
  background: transparent;
  color: #b0b0b0;
  border: 1px solid rgba(176, 176, 176, 0.3);
  padding: 1.5rem 2rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}
.change-password-form .form-actions .btn-secondary:hover {
  background: rgba(176, 176, 176, 0.1);
  border-color: #b0b0b0;
}
.change-password-form .form-actions .btn-primary {
  background: linear-gradient(135deg, #00ff88, #00bc32);
  color: #000000;
  border: none;
  padding: 1.5rem 2rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.change-password-form .form-actions .btn-primary:hover {
  background: linear-gradient(135deg, #00cc6a, #0099cc);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 255, 136, 0.4);
}

@media (max-width: 480px) {
  .change-password-container {
    padding: 1.5rem;
  }
  .change-password-card {
    padding: 2rem;
  }
  .change-password-form .form-actions {
    flex-direction: column;
  }
  .change-password-form .form-actions .btn-secondary,
  .change-password-form .form-actions .btn-primary {
    width: 100%;
  }
}
.user-management-container {
  padding: 2rem;
}

.user-management-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 255, 136, 0.2);
}
.user-management-header h3 {
  color: #ffffff;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.user-management-header p {
  color: #b0b0b0;
  font-size: 0.9rem;
}
.user-management-header .btn-primary {
  background: linear-gradient(135deg, #00ff88, #00bc32);
  color: #000000;
  border: none;
  padding: 1.5rem 2rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.user-management-header .btn-primary:hover {
  background: linear-gradient(135deg, #00cc6a, #0099cc);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 255, 136, 0.4);
}

.users-list .user-item {
  background: #1a1a1a;
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}
.users-list .user-item:hover {
  background: rgba(0, 255, 136, 0.05);
  border-color: rgba(0, 255, 136, 0.3);
}
.users-list .user-item .user-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.users-list .user-item .user-info .user-avatar {
  font-size: 2rem;
  color: #00ff88;
}
.users-list .user-item .user-info .user-details h4 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.users-list .user-item .user-info .user-details p {
  color: #b0b0b0;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}
.users-list .user-item .user-info .user-details .user-role {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}
.users-list .user-item .user-info .user-details .user-role.admin {
  background: rgba(0, 255, 136, 0.2);
  color: #00ff88;
}
.users-list .user-item .user-info .user-details .user-role.user {
  background: rgba(176, 176, 176, 0.2);
  color: #b0b0b0;
}
.users-list .user-item .user-actions {
  display: flex;
  gap: 1rem;
}
.users-list .user-item .user-actions .btn-secondary {
  background: transparent;
  color: #b0b0b0;
  border: 1px solid rgba(176, 176, 176, 0.3);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.users-list .user-item .user-actions .btn-secondary:hover {
  background: rgba(176, 176, 176, 0.1);
  border-color: #b0b0b0;
}
.users-list .user-item .user-actions .btn-danger {
  background: rgba(255, 68, 68, 0.1);
  color: #ff4444;
  border: 1px solid rgba(255, 68, 68, 0.3);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.users-list .user-item .user-actions .btn-danger:hover {
  background: rgba(255, 68, 68, 0.2);
  border-color: #ff4444;
}
.users-list .loading, .users-list .empty, .users-list .error {
  text-align: center;
  padding: 3rem;
  color: #b0b0b0;
}
.users-list .error {
  color: #ff4444;
}

.user-form .form-group {
  margin-bottom: 2rem;
}
.user-form .form-group label {
  display: block;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.user-form .form-group input, .user-form .form-group select {
  width: 100%;
  padding: 1.5rem;
  background: #000000;
  border: 1px solid rgba(0, 255, 136, 0.3);
  border-radius: 8px;
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.user-form .form-group input:focus, .user-form .form-group select:focus {
  outline: none;
  border-color: #00ff88;
  box-shadow: 0 0 0 2px rgba(0, 255, 136, 0.2);
}
.user-form .form-group input::-moz-placeholder, .user-form .form-group select::-moz-placeholder {
  color: #666666;
}
.user-form .form-group input::placeholder, .user-form .form-group select::placeholder {
  color: #666666;
}
.user-form .form-group small {
  color: #666666;
  font-size: 0.8rem;
  margin-top: 0.5rem;
  display: block;
}
.user-form .form-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: flex-end;
  margin-top: 3rem;
}
.user-form .form-actions .btn-secondary {
  background: transparent;
  color: #b0b0b0;
  border: 1px solid rgba(176, 176, 176, 0.3);
  padding: 1.5rem 2rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}
.user-form .form-actions .btn-secondary:hover {
  background: rgba(176, 176, 176, 0.1);
  border-color: #b0b0b0;
}
.user-form .form-actions .btn-primary {
  background: linear-gradient(135deg, #00ff88, #00bc32);
  color: #000000;
  border: none;
  padding: 1.5rem 2rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.user-form .form-actions .btn-primary:hover {
  background: linear-gradient(135deg, #00cc6a, #0099cc);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 255, 136, 0.4);
}

@media (max-width: 480px) {
  .user-management-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .user-management-header .btn-primary {
    width: 100%;
    justify-content: center;
  }
  .users-list .user-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .users-list .user-item .user-actions {
    width: 100%;
    justify-content: flex-end;
  }
  .user-form .form-actions {
    flex-direction: column;
  }
  .user-form .form-actions .btn-secondary,
  .user-form .form-actions .btn-primary {
    width: 100%;
  }
}
.crm-container {
  padding: 24px;
  background: #f8f9fa;
  min-height: 100vh;
}

.crm-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e9ecef;
}
.crm-header h1 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: #343a40;
}

.crm-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.crm-card {
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.crm-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.crm-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.crm-card__title {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #343a40;
}
.crm-card__actions {
  display: flex;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.crm-card:hover .crm-card__actions {
  opacity: 1;
}
.crm-card__action {
  background: none;
  border: none;
  padding: 6px;
  border-radius: 4px;
  color: #6c757d;
  cursor: pointer;
  transition: all 0.2s ease;
}
.crm-card__action:hover {
  background-color: #f8f9fa;
  color: #343a40;
}
.crm-card__action--danger:hover {
  background-color: #f8d7da;
  color: #dc3545;
}

.crm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  justify-items: center;
}
@media (max-width: 768px) {
  .crm-grid {
    grid-template-columns: 1fr;
  }
}

.crm-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 14px;
  text-decoration: none;
}
.crm-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.crm-btn--primary {
  background-color: #00ff88;
  color: #000;
}
.crm-btn--primary:hover:not(:disabled) {
  background-color: rgb(0, 204, 108.8);
}
.crm-btn--secondary {
  background-color: #f8f9fa;
  color: #343a40;
  border: 1px solid #dee2e6;
}
.crm-btn--secondary:hover:not(:disabled) {
  background-color: #e9ecef;
}
.crm-btn--success {
  background-color: #28a745;
  color: white;
}
.crm-btn--success:hover:not(:disabled) {
  background-color: rgb(30.1449275362, 125.8550724638, 52);
}
.crm-btn--danger {
  background-color: #dc3545;
  color: white;
}
.crm-btn--danger:hover:not(:disabled) {
  background-color: rgb(189.2151898734, 32.7848101266, 47.7721518987);
}

.deal-stage {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}
.deal-stage--lead {
  background-color: #e3f2fd;
  color: #1976d2;
}
.deal-stage--qualified {
  background-color: #fff3e0;
  color: #f57c00;
}
.deal-stage--proposal {
  background-color: #f3e5f5;
  color: #7b1fa2;
}
.deal-stage--negotiation {
  background-color: #fff8e1;
  color: #f9a825;
}
.deal-stage--closed-won {
  background-color: #e8f5e8;
  color: #2e7d32;
}
.deal-stage--closed-lost {
  background-color: #ffebee;
  color: #c62828;
}

.pipeline-board {
  background: white;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.pipeline-board__columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 20px;
}

.pipeline-column {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 16px;
  min-height: 400px;
  display: flex;
  flex-direction: column;
}
.pipeline-column__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid #e9ecef;
}
.pipeline-column__title {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #343a40;
}
.pipeline-column__count {
  background: #00ff88;
  color: #000;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}

.crm-loading {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 300px;
}

.crm-empty {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
  text-align: center;
  color: #6c757d;
}
.crm-empty i {
  font-size: 64px;
  margin-bottom: 16px;
  opacity: 0.5;
}
.crm-empty h3 {
  margin: 0 0 8px 0;
  font-size: 20px;
  font-weight: 600;
}
.crm-empty p {
  margin: 0 0 24px 0;
  font-size: 16px;
}

@media (max-width: 768px) {
  .crm-container {
    padding: 16px;
  }
  .crm-header {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .crm-actions {
    justify-content: space-between;
  }
}
.crm-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1050;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

.crm-modal-content {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.crm-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.crm-modal-header h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 600;
}

.crm-modal-close-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #666666;
  cursor: pointer;
  transition: color 0.2s ease;
}
.crm-modal-close-btn:hover {
  color: #ffffff;
}

.crm-modal-body {
  padding: 1.5rem;
}

.crm-form-group {
  margin-bottom: 1.5rem;
}

.crm-form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #ffffff;
  font-size: 0.875rem;
}

.crm-form-input, .crm-form-textarea, .crm-form-select {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-size: 0.875rem;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  transition: all 0.2s ease;
}
.crm-form-input:focus, .crm-form-textarea:focus, .crm-form-select:focus {
  outline: none;
  border-color: #00ff88;
  box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.1);
  background: rgba(255, 255, 255, 0.08);
}
.crm-form-input::-moz-placeholder, .crm-form-textarea::-moz-placeholder, .crm-form-select::-moz-placeholder {
  color: #666666;
}
.crm-form-input::placeholder, .crm-form-textarea::placeholder, .crm-form-select::placeholder {
  color: #666666;
}

.crm-form-select option {
  background: #111111;
  color: #ffffff;
}

.crm-form-textarea {
  resize: vertical;
  min-height: 100px;
}

.crm-form-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  margin-top: 1.5rem;
}

.crm-form-btn {
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.crm-form-btn--cancel {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.crm-form-btn--cancel:hover {
  background: rgba(255, 255, 255, 0.15);
}

.crm-form-btn--submit {
  background: linear-gradient(135deg, #00ff88, #00bc32);
  color: #000000;
  font-weight: 600;
}
.crm-form-btn--submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(0, 255, 136, 0.4);
}

.crm-list-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 1.5rem;
  width: 100%;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.crm-list-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  border-color: #00ff88;
}

.crm-list-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.crm-list-card__title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
}

.crm-list-card__actions {
  display: flex;
  gap: 0.5rem;
}

.crm-list-card__content {
  color: #b0b0b0;
}

.crm-list-card__content p {
  margin: 0.5rem 0;
  font-size: 0.875rem;
}

.crm-list-card__content strong {
  color: #ffffff;
  font-weight: 600;
}

.crm-action-btn {
  background: none;
  border: none;
  padding: 6px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.875rem;
  transition: background-color 0.2s ease;
}

.crm-action-btn--edit {
  color: #007bff;
}
.crm-action-btn--edit:hover {
  background: rgba(0, 123, 255, 0.1);
}

.crm-action-btn--delete {
  color: #ff4444;
}
.crm-action-btn--delete:hover {
  background: rgba(220, 53, 69, 0.1);
}

@media (max-width: 768px) {
  .crm-modal-content {
    width: 95%;
    margin: 1rem;
  }
  .crm-form-actions {
    flex-direction: column;
  }
  .crm-form-btn {
    width: 100%;
  }
}
.morpheus-chat-container {
  height: 85vh;
  background: #0a0a0a;
  display: flex;
  flex-direction: column;
  font-family: "Inter", sans-serif;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.morpheus-chat-container::-webkit-scrollbar {
  display: none;
}

.morpheus-chat-container {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

body {
  margin: 0 !important;
  padding: 0 !important;
}

.morpheus-chat-header {
  background: #111111;
  border-bottom: 1px solid rgba(0, 255, 136, 0.2);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.morpheus-avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #00ff88, #00bc32);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a0a0a;
  font-size: 1.2rem;
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.morpheus-info h3 {
  color: #00ff88;
  font-family: "Orbitron", monospace;
  font-size: 1.1rem;
  margin: 0;
  text-shadow: 0 0 10px #00ff88;
}

.morpheus-info p {
  color: #b0b0b0;
  font-size: 0.8rem;
  margin: 0;
}

.morpheus-chat-messages {
  flex: 1;
  padding: 1.5rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.message {
  display: flex;
  gap: 0.75rem;
  max-width: 80%;
}

.message.user {
  align-self: flex-end;
  flex-direction: row-reverse;
}

.message-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.message.user .message-avatar {
  background: linear-gradient(135deg, #00ff88, #00bc32);
  color: #0a0a0a;
}

.message.morpheus .message-avatar {
  background: linear-gradient(135deg, #0099cc, #00bc32);
  color: #ffffff;
}

.message-content {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 0.75rem 1rem;
  color: #ffffff;
  font-size: 0.9rem;
  line-height: 1.4;
  position: relative;
}

.message.user .message-content {
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 188, 50, 0.1));
  border-color: rgba(0, 255, 136, 0.3);
}

.message.morpheus .message-content {
  background: rgba(0, 153, 204, 0.1);
  border-color: rgba(0, 153, 204, 0.3);
}

.message-content {
  line-height: 1.4;
}
.message-content h1, .message-content h2, .message-content h3 {
  color: #ffffff !important;
  margin: 0.5rem 0 !important;
  font-weight: 600 !important;
  font-size: 0.95rem !important;
  line-height: 1.4 !important;
}
.message-content h1 {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 0.2rem;
}
.message-content h2 {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0.1rem;
}
.message-content h3 {
  color: #ffffff;
}
.message-content strong {
  color: #ffffff;
  font-weight: 600;
  font-size: inherit;
  line-height: inherit;
}
.message-content em {
  color: #ffffff;
  font-style: italic;
  font-size: inherit;
  line-height: inherit;
}
.message-content ul, .message-content ol {
  margin: 0.5rem 0 !important;
  padding-left: 1.2rem !important;
  line-height: 1.4 !important;
}
.message-content li {
  margin: 0 !important;
  color: #ffffff !important;
  font-size: inherit !important;
  line-height: 1.4 !important;
}
.message-content hr {
  border: none;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(74, 144, 226, 0.6), transparent);
  margin: 1.5rem 0;
  border-radius: 1px;
}
.message-content p {
  margin: 1.5rem 0 !important;
  line-height: 1.5 !important;
  color: #ffffff !important;
  font-size: 1rem !important;
}
.message-content code {
  background: rgba(0, 0, 0, 0.3);
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  font-family: "Courier New", monospace;
  color: #ffffff;
  font-size: 0.9rem;
  line-height: 1.4;
}

.morpheus-chat-input {
  background: #111111;
  border-top: 1px solid rgba(0, 255, 136, 0.2);
  padding: 1rem 1.5rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.chat-input {
  flex: 1;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  color: #ffffff;
  font-size: 0.9rem;
  font-family: "Inter", sans-serif;
  outline: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
  margin: 0;
}

.chat-input:focus {
  border-color: #00ff88;
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.chat-input::-moz-placeholder {
  color: #666666;
}

.chat-input::placeholder {
  color: #666666;
}

.custom-dropdown {
  position: relative;
  min-width: 120px;
  z-index: 1000;
}

.dropdown-selected {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0.6rem 1rem;
  color: #ffffff;
  font-size: 0.9rem;
  font-family: "Inter", sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  transition: all 0.3s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  box-sizing: border-box;
  margin: 0;
}

.dropdown-selected:hover {
  border-color: rgba(0, 255, 136, 0.5);
  background: rgba(0, 0, 0, 0.4);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.dropdown-selected i {
  font-size: 0.8rem;
  color: #00ff88;
  transition: transform 0.3s ease;
}

.dropdown-selected i.rotated {
  transform: rotate(180deg);
}

.dropdown-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #111111;
  border: 1px solid rgba(0, 255, 136, 0.3);
  border-radius: 12px;
  margin-top: 0.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  overflow: hidden;
  z-index: 1001;
  max-height: 200px;
  overflow-y: auto;
}

@media (max-width: 768px) {
  .dropdown-options {
    position: fixed;
    top: auto;
    bottom: 80px;
    left: 1rem;
    right: 1rem;
    max-height: 150px;
    margin-top: 0;
  }
}
.dropdown-options.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-options.open-up {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 0.5rem;
  transform: translateY(10px);
}

.dropdown-options.open-up.show {
  transform: translateY(0);
}

.dropdown-options:not(.show) {
  transform: translateY(-10px) !important;
}

.dropdown-options.open-up:not(.show) {
  transform: translateY(10px) !important;
}

.dropdown-option {
  padding: 0.75rem 1rem;
  color: #ffffff;
  font-size: 0.9rem;
  font-family: "Inter", sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.2s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dropdown-option:last-child {
  border-bottom: none;
}

.dropdown-option:hover {
  background: rgba(0, 255, 136, 0.1);
  color: #00ff88;
}

.dropdown-option i {
  font-size: 1rem;
  color: #00ff88;
  width: 16px;
  text-align: center;
}

.dropdown-option span {
  flex: 1;
}

.send-button {
  background: linear-gradient(135deg, #00ff88, #00bc32);
  border: none;
  border-radius: 12px;
  padding: 0.75rem 1.5rem;
  color: #0a0a0a;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-sizing: border-box;
  margin: 0;
}

.send-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 25px rgba(0, 255, 136, 0.5);
}

.send-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.typing-indicator {
  display: none;
  align-items: center;
  gap: 0.5rem;
  color: #00ff88;
  font-size: 0.8rem;
  font-style: italic;
}

.typing-dots {
  display: flex;
  gap: 0.25rem;
}

.typing-dot {
  width: 6px;
  height: 6px;
  background: #00ff88;
  border-radius: 50%;
  animation: typing 1.4s infinite;
}

.typing-dot:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typing {
  0%, 60%, 100% {
    transform: translateY(0);
    opacity: 0.5;
  }
  30% {
    transform: translateY(-10px);
    opacity: 1;
  }
}
.welcome-message {
  text-align: center;
  padding: 2rem;
  color: #b0b0b0;
}

.welcome-message h2 {
  color: #00ff88;
  font-family: "Orbitron", monospace;
  margin-bottom: 1rem;
}

.welcome-message p {
  margin-bottom: 0.5rem;
}

.status-online {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #00ff88;
  font-size: 0.8rem;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #00ff88;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
.morpheus-chat-messages::-webkit-scrollbar {
  width: 6px;
}

.morpheus-chat-messages::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
}

.morpheus-chat-messages::-webkit-scrollbar-thumb {
  background: rgba(0, 255, 136, 0.4);
  border-radius: 3px;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}

.morpheus-chat-messages::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 255, 136, 0.6);
}

.conversations-menu {
  position: relative;
}

.conversations-toggle {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(0, 255, 136, 0.3);
  border-radius: 12px;
  padding: 0.6rem 1rem;
  color: #ffffff;
  font-size: 0.9rem;
  font-family: "Inter", sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.conversations-toggle:hover {
  border-color: rgba(0, 255, 136, 0.6);
  background: rgba(0, 0, 0, 0.4);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.conversations-toggle i {
  font-size: 1rem;
  color: #00ff88;
}

.conversations-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  width: 350px;
  background: #111111;
  border: 1px solid rgba(0, 255, 136, 0.3);
  border-radius: 12px;
  margin-top: 0.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  overflow: hidden;
  z-index: 1000;
  max-height: 500px;
}

.conversations-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.conversations-header {
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.conversations-header h4 {
  color: #00ff88;
  font-family: "Orbitron", monospace;
  font-size: 1rem;
  margin: 0;
}

.new-conversation-btn {
  background: linear-gradient(135deg, #00ff88, #00bc32);
  border: none;
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  color: #0a0a0a;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.new-conversation-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 3px 15px rgba(0, 255, 136, 0.4);
}

.conversations-list {
  max-height: 400px;
  overflow-y: auto;
}

.conversations-loading {
  padding: 2rem;
  text-align: center;
  color: #b0b0b0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.conversations-loading i {
  font-size: 1.5rem;
  color: #00ff88;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.conversation-item {
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.conversation-item:hover {
  background: rgba(0, 255, 136, 0.1);
}

.conversation-item:last-child {
  border-bottom: none;
}

.conversation-title {
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 500;
  font-family: "Inter", "Segoe UI", "Roboto", sans-serif;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  line-height: 1.3;
}

.conversation-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: #d0d0d0;
  font-weight: 400;
  font-family: "Inter", "Segoe UI", "Roboto", sans-serif;
}

.conversation-date {
  margin: 0;
}

.conversation-messages-count {
  background: rgba(0, 255, 136, 0.2);
  color: #00ff88;
  padding: 0.2rem 0.5rem;
  border-radius: 10px;
  font-size: 0.7rem;
  font-weight: 600;
}

.conversation-empty {
  padding: 2rem;
  text-align: center;
  color: #b0b0b0;
}

.conversation-empty i {
  font-size: 2rem;
  color: #666666;
  margin-bottom: 0.5rem;
  display: block;
}

@media (max-width: 768px) {
  .conversations-dropdown {
    position: fixed;
    top: auto;
    bottom: 80px;
    left: 1rem;
    right: 1rem;
    width: auto;
    max-height: 300px;
    margin-top: 0;
  }
  .conversations-toggle span {
    display: none;
  }
}
.agent-selector-menu {
  position: relative;
}

.agent-selector-toggle {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(0, 255, 136, 0.3);
  border-radius: 12px;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
.agent-selector-toggle:hover {
  border-color: rgba(0, 255, 136, 0.6);
  background: rgba(0, 0, 0, 0.4);
}
.agent-selector-toggle i {
  font-size: 1rem;
  color: #00ff88;
}
.agent-selector-toggle .bi-chevron-down {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.agent-selector-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 0.5rem;
  width: 280px;
  background: #1a1a1a;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1001;
}
.agent-selector-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.agent-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.agent-option:last-child {
  border-bottom: none;
}
.agent-option:hover {
  background-color: rgba(0, 255, 136, 0.1);
}
.agent-option.active {
  background-color: rgba(0, 255, 136, 0.2);
  font-weight: 600;
}
.agent-option i {
  color: #00ff88;
  font-size: 1rem;
}
.agent-option span {
  color: #ffffff;
  font-size: 0.9rem;
}

.agent-option-empty {
  padding: 1rem;
  text-align: center;
  color: #888;
}

input::-webkit-validation-bubble-message,
input::-webkit-validation-bubble,
input::-webkit-validation-bubble-arrow {
  display: none !important;
}

input:invalid {
  box-shadow: none !important;
}

input:invalid::-webkit-validation-bubble {
  display: none !important;
}

.login-container {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: #000000;
  overflow: hidden;
}

.login-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.cyber-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(0, 255, 136, 0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 255, 136, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}
.cyber-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cyber-particles::before, .cyber-particles::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  background: #00ff88;
  border-radius: 50%;
  box-shadow: 0 0 10px #00ff88;
  animation: float 6s ease-in-out infinite;
}
.cyber-particles::before {
  top: 20%;
  left: 20%;
  animation-delay: 0s;
}
.cyber-particles::after {
  top: 60%;
  right: 20%;
  animation-delay: 3s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translateY(-20px) scale(1.2);
    opacity: 1;
  }
}
.login-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 450px;
  padding: 1.5rem;
  max-height: 100vh;
  overflow-y: auto;
}
.login-content::-webkit-scrollbar {
  width: 0px;
  background: transparent;
}
.login-content::-webkit-scrollbar-track {
  background: transparent;
}
.login-content::-webkit-scrollbar-thumb {
  background: transparent;
}

.login-card {
  background: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 255, 136, 0.3);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 255, 136, 0.5);
  position: relative;
  overflow: visible;
  width: 100%;
  z-index: 1;
}
.login-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.05), rgba(0, 212, 255, 0.05));
  opacity: 0.1;
  z-index: -1;
}

.login-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.login-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.login-logo-svg {
  width: 60px;
  height: 60px;
  filter: drop-shadow(0 0 20px #00ff88);
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    filter: drop-shadow(0 0 20px #00ff88);
  }
  50% {
    filter: drop-shadow(0 0 30px #00ff88) drop-shadow(0 0 40px #00ff88);
  }
}
.login-title {
  font-family: "Orbitron", monospace;
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #00ff88, #00bc32);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
  text-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
}

.login-subtitle {
  color: #b0b0b0;
  font-size: 1.125rem;
  margin: 0;
  font-weight: 300;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #ffffff;
  font-weight: 500;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.form-label i {
  color: #00ff88;
  font-size: 1rem;
}

.form-input {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem 2.5rem;
  color: #ffffff;
  font-size: 1rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  transition: all 0.3s ease;
  position: relative;
  width: 100%;
}
.form-input::-moz-placeholder {
  color: #666666;
  font-style: italic;
  opacity: 1;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.form-input::placeholder {
  color: #666666;
  font-style: italic;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.form-input:focus {
  outline: none;
  border-color: #00ff88;
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
  background: rgba(0, 0, 0, 0.5);
}
.form-input:focus::-moz-placeholder {
  opacity: 0.3;
}
.form-input:focus::placeholder {
  opacity: 0.3;
}
.form-input:not(:placeholder-shown)::-moz-placeholder {
  opacity: 0;
}
.form-input:not(:-moz-placeholder)::placeholder {
  opacity: 0;
}
.form-input:not(:placeholder-shown)::placeholder {
  opacity: 0;
}
.form-input.has-value::-moz-placeholder {
  opacity: 0;
}
.form-input.has-value::placeholder {
  opacity: 0;
}
.form-input:invalid {
  box-shadow: none;
}
.form-input::-webkit-validation-bubble-message {
  display: none;
}
.form-input::-webkit-validation-bubble {
  display: none;
}
.form-input:focus + .input-glow {
  opacity: 1;
  transform: scale(1.02);
}

.input-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent, rgba(0, 255, 136, 0.1), transparent);
  border-radius: 16px;
  opacity: 0;
  transform: scale(1);
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: -1;
}

.password-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.password-toggle {
  position: absolute;
  right: 2rem;
  background: none;
  border: none;
  color: #b0b0b0;
  cursor: pointer;
  padding: 1rem;
  border-radius: 8px;
  transition: all 0.2s ease;
  z-index: 2;
}
.password-toggle:hover {
  color: #00ff88;
  background: rgba(0, 255, 136, 0.1);
}
.password-toggle i {
  font-size: 1.125rem;
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 1.5rem 0;
}

.checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.checkbox-wrapper input[type=checkbox] {
  display: none;
}

.checkbox-custom {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  position: relative;
  transition: all 0.2s ease;
  background: transparent;
}
.checkbox-custom::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 6px;
  width: 6px;
  height: 10px;
  border: solid #00ff88;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: all 0.2s ease;
}

.checkbox-wrapper input[type=checkbox]:checked + .checkbox-custom {
  background: #00ff88;
  border-color: #00ff88;
  box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}
.checkbox-wrapper input[type=checkbox]:checked + .checkbox-custom::after {
  opacity: 1;
  border-color: #000000;
}

.checkbox-label {
  color: #b0b0b0;
  font-size: 0.875rem;
  font-weight: 400;
}

.login-button {
  background: linear-gradient(135deg, #00ff88, #00bc32);
  border: none;
  border-radius: 16px;
  padding: 1rem 2rem;
  color: #000000;
  font-family: "Orbitron", monospace;
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.login-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(0, 255, 136, 0.4);
}
.login-button:active {
  transform: translateY(0);
}
.login-button.loading {
  pointer-events: none;
  opacity: 0.8;
}
.login-button.loading .button-glow {
  animation: button-pulse 1s ease-in-out infinite;
}

@keyframes button-pulse {
  0%, 100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.8;
  }
}
.button-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  opacity: 0;
  transition: all 0.3s ease;
}

.button-text {
  position: relative;
  z-index: 2;
}

.login-footer {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.875rem;
  transition: all 0.2s ease;
}
.back-link:hover {
  color: #00ff88;
  text-shadow: 0 0 10px #00ff88;
}
.back-link i {
  font-size: 1rem;
}

.error-message {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 68, 68, 0.95);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  border: 1px solid #ff4444;
  border-radius: 16px;
  padding: 1.5rem 2rem;
  display: block;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 500;
  box-shadow: 0 8px 32px rgba(255, 68, 68, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  min-width: 250px;
  text-align: center;
  pointer-events: none;
}
.error-message.show {
  opacity: 1;
  visibility: visible;
  top: 10px;
  transform: translateX(-50%) translateY(0);
}
.error-message i {
  color: #ffffff;
  font-size: 1.125rem;
  display: block;
  text-align: center;
  margin-bottom: 1rem;
}
.error-message .error-text {
  display: block;
  text-align: center;
}

@media (max-width: 768px) {
  .login-content {
    padding: 1.5rem;
  }
  .login-card {
    padding: 2.5rem;
  }
  .login-title {
    font-size: 2rem;
  }
  .error-message {
    top: 15px;
    min-width: 200px;
  }
  .error-message.show {
    top: 5px;
  }
}
@media (max-width: 480px) {
  .login-content {
    padding: 1rem;
  }
  .login-card {
    padding: 2rem;
  }
  .login-title {
    font-size: 1.5rem;
  }
  .login-subtitle {
    font-size: 1rem;
  }
  .form-input {
    padding: 1.5rem 2rem;
  }
  .login-button {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
  .error-message {
    top: 10px;
    min-width: 180px;
    font-size: 0.8rem;
    padding: 1rem 1.5rem;
  }
  .error-message.show {
    top: 0px;
  }
}
/* ===== LOADING SCREEN ===== */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.loading-content {
  text-align: center;
}

.cyber-logo {
  margin-bottom: 2rem;
}

.logo-hexagon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #00ff88, #00bc32);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  margin: 0 auto 1rem;
  animation: pulse 2s ease-in-out infinite;
}

.loading-logo-svg {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  animation: pulse 2s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.6));
}

.logo-text {
  font-family: "Brave Eightyone", "Orbitron", monospace;
  font-size: 1.5rem;
  font-weight: 400;
  display: inline-block;
}

.logo-cyber {
  color: #c0c0c0;
  display: inline;
}

.logo-mind {
  background: linear-gradient(135deg, #00ff88, #00bc32);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline;
}

.loading-bar {
  width: 200px;
  height: 4px;
  background: #1a1a1a;
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto;
}

.loading-progress {
  height: 100%;
  background: linear-gradient(135deg, #00ff88, #00bc32);
  border-radius: 2px;
  animation: loading 3s ease-in-out infinite;
}

@keyframes loading {
  0% {
    width: 0%;
  }
  50% {
    width: 100%;
  }
  100% {
    width: 0%;
  }
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.95);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 255, 136, 0.3);
  transition: all 0.3s ease;
  width: 100%;
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.98);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem; /* Controla a altura no desktop */
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

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

.logo-icon {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-svg {
  width: 40px;
  height: 40px;
  animation: logo-float 5s ease-in-out infinite;
  filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.5));
  transition: all 0.3s ease;
}

.logo-svg:hover {
  filter: drop-shadow(0 0 15px rgba(0, 255, 136, 0.8));
  transform: scale(1.05);
}

@keyframes logo-float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-5px);
  }
}
.nav-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.navbar .nav-link {
  color: #b0b0b0;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

.navbar .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #00ff88, #00bc32);
  transition: width 0.3s ease;
}

.navbar .nav-link:hover {
  color: #00ff88;
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  padding: 0.5rem;
  position: relative;
  z-index: 1001;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: #00ff88;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 6px);
}

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

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

.mobile-menu {
  position: fixed;
  /* Posição e altura serão definidas na media query */
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.98);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  z-index: 999; /* Abaixo da navbar, mas acima do conteúdo */
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  transform: translateY(-20px);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
  display: flex !important;
  transform: translateY(0);
}

.mobile-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 2rem;
  cursor: pointer;
  padding: 1rem;
  border-radius: 50%;
  transition: all 0.3s ease;
  z-index: 100000;
}

.mobile-close:hover {
  background: #ffffff;
  color: #000000;
}

.mobile-menu .nav-link {
  font-size: 1.5rem;
  margin: 1rem 0;
  padding: 1rem 2rem;
  color: #ffffff;
  text-decoration: none;
  text-align: center;
  min-width: 200px;
  border: 1px solid #ffffff;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.mobile-menu .nav-link:hover {
  background: #ffffff;
  color: #000000;
}

@media (max-width: 1024px) {
  .navbar {
    height: 70px; /* Altura fixa no mobile */
  }
  .nav-container {
    height: 100%; /* Garante que o conteúdo preencha a altura fixa */
    padding: 0 2rem; /* Remove padding vertical para não somar com a altura */
  }
  .nav-menu {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .mobile-menu {
    display: none;
    top: 70px; /* Posição correta no mobile */
    height: calc(100vh - 70px); /* Altura correta no mobile */
  }
  .nav-container {
    padding: 1rem 2rem;
  }
}
.mobile-menu.active {
  display: flex !important;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .nav-container {
    padding: 1rem;
  }
  .logo-icon h1 {
    font-size: 1.2rem;
  }
  .hexagon {
    width: 35px;
    height: 35px;
  }
}
@media (max-width: 480px) {
  .nav-container {
    padding: 0.5rem 1rem;
  }
  .logo-icon h1 {
    font-size: 1rem;
  }
  .hexagon {
    width: 30px;
    height: 30px;
  }
  .mobile-menu .nav-link {
    font-size: 1.2rem;
    padding: 0.8rem 1.5rem;
  }
}
@media (max-width: 360px) {
  .logo-icon h1 {
    font-size: 0.9rem;
  }
  .hexagon {
    width: 25px;
    height: 25px;
  }
  .mobile-menu .nav-link {
    font-size: 1.1rem;
    padding: 0.6rem 1.2rem;
  }
}
.login-btn {
  background: linear-gradient(135deg, #00ff88, #00bc32) !important;
  color: #000000 !important;
  padding: 1rem 1.5rem !important;
  border-radius: 16px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  font-size: 0.875rem !important;
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.3) !important;
  position: relative !important;
  overflow: hidden !important;
}
.login-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.3s ease;
}
.login-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 5px 25px rgba(0, 255, 136, 0.5) !important;
  color: #000000 !important;
}
.login-btn:hover::before {
  left: 100%;
}
.login-btn:active {
  transform: translateY(0) !important;
}
.login-btn i {
  font-size: 1rem !important;
  transition: all 0.2s ease !important;
}
.login-btn span {
  font-weight: 600 !important;
  transition: all 0.2s ease !important;
}
.login-btn:hover i {
  transform: scale(1.1);
}

.mobile-menu .login-btn {
  margin-top: 1.5rem;
  justify-content: center;
  border: 1px solid rgba(0, 255, 136, 0.3);
}
.mobile-menu .login-btn:hover {
  background: rgba(0, 255, 136, 0.1) !important;
  color: #00ff88 !important;
  border-color: #00ff88 !important;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 8rem 0 4rem;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.cyber-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(0, 255, 136, 0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 255, 136, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}
.floating-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.floating-particles::before,
.floating-particles::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  background: #00ff88;
  border-radius: 50%;
  animation: float-particle 8s ease-in-out infinite;
}

.floating-particles::before {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.floating-particles::after {
  top: 60%;
  right: 15%;
  animation-delay: 4s;
}

@keyframes float-particle {
  0%, 100% {
    transform: translateY(0px) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translateY(-20px) scale(1.5);
    opacity: 1;
  }
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 1200px) {
  .hero-content {
    gap: 3rem;
  }
}
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .hero-content {
    gap: 2rem;
    padding: 0 1rem;
  }
}
@media (max-width: 480px) {
  .hero-content {
    gap: 1.5rem;
    padding: 0 1rem;
  }
}

.hero-title {
  margin-bottom: 2rem;
}

.title-line {
  display: block;
  margin-bottom: 0.5rem;
  opacity: 0;
  animation: slideInLeft 1s ease forwards;
}

.title-line:nth-child(2) {
  animation-delay: 0.3s;
}

.title-line:nth-child(3) {
  animation-delay: 0.6s;
}

.title-line.highlight {
  background: linear-gradient(135deg, #00ff88, #00bc32);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.hero-description {
  font-size: 1.25rem;
  margin-bottom: 3rem;
  opacity: 0;
  animation: slideInLeft 1s ease forwards 0.9s;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: slideInLeft 1s ease forwards 1.2s;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  animation: slideInRight 1s ease forwards 0.6s;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.cyber-brain {
  position: relative;
  width: 300px;
  height: 300px;
}
@media (max-width: 768px) {
  .cyber-brain {
    width: 250px;
    height: 250px;
  }
}
@media (max-width: 480px) {
  .cyber-brain {
    width: 200px;
    height: 200px;
  }
}
@media (max-width: 360px) {
  .cyber-brain {
    width: 180px;
    height: 180px;
  }
}

.brain-core {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #00ff88, #00bc32);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: brain-pulse 4s ease-in-out infinite;
}

.brain-connections {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid #00ff88;
  border-radius: 50%;
  animation: brain-rotate 10s linear infinite;
}

.brain-connections::before,
.brain-connections::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px solid #00bc32;
  border-radius: 50%;
  animation: brain-rotate 8s linear infinite reverse;
}

.brain-connections::after {
  border-color: #009171;
  animation: brain-rotate 12s linear infinite;
}

.brain-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 300px;
  border: 1px solid #00ff88;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: brain-pulse 4s ease-in-out infinite;
  animation-delay: 2s;
}

@keyframes brain-pulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.8;
  }
}
@keyframes brain-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  opacity: 0;
  animation: fadeInUp 1s ease forwards 1.5s;
}

.scroll-arrow {
  width: 2px;
  height: 30px;
  background: linear-gradient(135deg, #00ff88, #00bc32);
  margin: 0 auto 0.5rem;
  animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}
/* ===== SEÇÕES GERAIS ===== */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  margin-bottom: 1rem;
}

.title-prefix {
  display: block;
  font-size: 1rem;
  color: #00ff88;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.title-main {
  background: linear-gradient(135deg, #00ff88, #00bc32);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.25rem;
  color: #b0b0b0;
  max-width: 600px;
  margin: 0 auto;
}

.solution-icon-wrapper {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #00ff88, #009171);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem; /* Aumentado de 1.5rem para 2rem */
  color: #000000;
  flex-shrink: 0;
  margin: 0 auto 1.5rem auto;
}

.services {
  padding: 8rem 0;
  background: #111111;
  position: relative;
}

.services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 70%, rgba(0, 255, 136, 0.05) 0%, transparent 50%), radial-gradient(circle at 70% 30%, rgba(255, 0, 128, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  justify-items: center;
}
@media (max-width: 1200px) {
  .services-grid {
    gap: 2rem;
  }
}
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
@media (max-width: 480px) {
  .services-grid {
    gap: 2rem;
  }
}
@media (max-width: 360px) {
  .services-grid {
    gap: 1.5rem;
  }
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 255, 136, 0.3);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  min-height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 30px rgba(0, 255, 136, 0.3);
  border-color: #00ff88;
}

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

.service-card h3 {
  color: #ffffff;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.service-card p {
  color: #b0b0b0;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
  flex-grow: 1;
  line-height: 1.6;
}

.tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  position: relative;
  z-index: 1;
  max-width: 100%;
  overflow: hidden;
}

.tech-stack span {
  background: #1a1a1a;
  color: #00ff88;
  padding: 0.25rem 0.75rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(0, 255, 136, 0.2);
  word-wrap: break-word;
  max-width: 100%;
  display: inline-block;
}

.solution-icon-wrapper i {
  color: #000000 !important;
  font-size: 1.5rem !important;
}

/* ===== SOBRE ===== */
.about {
  padding: 8rem 0;
  background: #000000;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 1200px) {
  .about-content {
    gap: 3rem;
  }
}
@media (max-width: 1024px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .about-content {
    gap: 2rem;
  }
}
@media (max-width: 480px) {
  .about-content {
    gap: 1.5rem;
  }
}

.about-title {
  margin-bottom: 2rem;
}

.about-description {
  font-size: 1.25rem;
  margin-bottom: 3rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .about-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

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

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  color: #00ff88;
  font-family: "Orbitron", monospace;
}

.stat-label {
  font-size: 0.9rem;
  color: #b0b0b0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.skill-tag {
  background: #1a1a1a;
  color: #00bc32;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid rgba(51, 221, 255, 0.2);
  transition: all 0.3s ease;
}

.skill-tag:hover {
  background: #00bc32;
  color: #000000;
  transform: translateY(-2px);
}

.about-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.profile-container {
  position: relative;
}

.profile-image {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #00ff88;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .profile-image {
    width: 250px;
    height: 250px;
  }
}
@media (max-width: 480px) {
  .profile-image {
    width: 200px;
    height: 200px;
  }
}

.profile-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}

.profile-glow {
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: linear-gradient(135deg, #00ff88, #00bc32);
  border-radius: 50%;
  opacity: 0.3;
  animation: profile-glow 4s ease-in-out infinite;
}

@keyframes profile-glow {
  0%, 100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.5;
  }
}
/* ===== APPS MOBILE ===== */
.apps {
  padding: 8rem 0;
  background: #000000;
}

.apps-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 4rem;
}

.apps-text h3 {
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.apps-features {
  list-style: none;
  margin-bottom: 2rem;
}

.apps-features li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  color: #b0b0b0;
}

.apps-features i {
  color: #00ff88;
  font-size: 1.2rem;
}

.apps-tech h4 {
  color: #ffffff;
  margin-bottom: 1rem;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.tech-tags span {
  background: #1a1a1a;
  color: #00bc32;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  border: 1px solid rgba(51, 221, 255, 0.2);
}

.mobile-devices {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.phone {
  width: 120px;
  height: 200px;
  background: #1a1a1a;
  border-radius: 20px;
  border: 3px solid #00ff88;
  position: relative;
  animation: float 6s ease-in-out infinite;
}

.phone-1 {
  animation-delay: 0s;
}

.phone-2 {
  animation-delay: 2s;
}

.screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #00ff88, #00bc32);
  border-radius: 17px;
  opacity: 0.3;
}

.tablet {
  width: 160px;
  height: 120px;
  background: #1a1a1a;
  border-radius: 15px;
  border: 3px solid #00bc32;
  animation: float 6s ease-in-out infinite;
  animation-delay: 4s;
}

/* ===== INTELIGÊNCIA ARTIFICIAL ===== */
.ai {
  padding: 8rem 0;
  background: #111111;
}

.ai-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 4rem;
}
@media (max-width: 1200px) {
  .ai-content {
    gap: 3rem;
  }
}
@media (max-width: 1024px) {
  .ai-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .ai-content {
    gap: 2rem;
  }
}
@media (max-width: 480px) {
  .ai-content {
    gap: 1.5rem;
  }
}

.ai-text h3 {
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.ai-features {
  list-style: none;
  margin-bottom: 2rem;
}

.ai-features li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  color: #b0b0b0;
}

.ai-features i {
  color: #00ff88;
  font-size: 1.2rem;
}

.ai-applications h4 {
  color: #ffffff;
  margin-bottom: 1rem;
}

.app-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.app-tags span {
  background: #1a1a1a;
  color: #00bc32;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  border: 1px solid rgba(51, 221, 255, 0.2);
}

.ai-brain {
  position: relative;
  width: 300px;
  height: 300px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .ai-brain {
    width: 250px;
    height: 250px;
  }
}
@media (max-width: 480px) {
  .ai-brain {
    width: 200px;
    height: 200px;
  }
}

.neural-network {
  position: relative;
  width: 100%;
  height: 100%;
}

.node {
  position: absolute;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #009171, #00bc32);
  border-radius: 50%;
  animation: pulse 3s ease-in-out infinite;
}

.node-1 {
  top: 20%;
  left: 20%;
  animation-delay: 0s;
}

.node-2 {
  top: 20%;
  right: 20%;
  animation-delay: 0.5s;
}

.node-3 {
  top: 50%;
  left: 50%;
  animation-delay: 1s;
}

.node-4 {
  bottom: 20%;
  left: 20%;
  animation-delay: 1.5s;
}

.node-5 {
  bottom: 20%;
  right: 20%;
  animation-delay: 2s;
}

.connection {
  position: absolute;
  height: 2px;
  background: linear-gradient(135deg, #009171, #00bc32);
  animation: glow 2s ease-in-out infinite;
}

.connection-1 {
  top: 30%;
  left: 30%;
  width: 40%;
  transform: rotate(45deg);
  animation-delay: 0s;
}

.connection-2 {
  top: 30%;
  right: 30%;
  width: 40%;
  transform: rotate(-45deg);
  animation-delay: 0.5s;
}

.connection-3 {
  bottom: 30%;
  left: 30%;
  width: 40%;
  transform: rotate(-45deg);
  animation-delay: 1s;
}

.connection-4 {
  bottom: 30%;
  right: 30%;
  width: 40%;
  transform: rotate(45deg);
  animation-delay: 1.5s;
}

@keyframes glow {
  0%, 100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}
/* ===== NOSSAS TECNOLOGIAS ===== */
.technologies {
  padding: 8rem 0;
  background: #111111;
}

.tech-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 4rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  justify-items: center;
}
@media (max-width: 1200px) {
  .tech-categories {
    gap: 2rem;
  }
}
@media (max-width: 1024px) {
  .tech-categories {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .tech-categories {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
@media (max-width: 480px) {
  .tech-categories {
    gap: 2rem;
  }
}
@media (max-width: 360px) {
  .tech-categories {
    gap: 1.5rem;
  }
}

.tech-category {
  background: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 255, 136, 0.3);
  border-radius: 16px;
  padding: 2.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 350px;
}

.tech-category::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tech-category:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 30px rgba(0, 255, 136, 0.3);
  border-color: #00ff88;
}

.tech-category:hover::before {
  opacity: 1;
}

.tech-category h3 {
  color: #ffffff;
  margin-bottom: 2rem;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.tech-category h3 i {
  color: #00ff88;
  font-size: 1.8rem;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  position: relative;
  z-index: 1;
}

.tech-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  background: #1a1a1a;
  border: 1px solid rgba(0, 255, 136, 0.1);
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 0.85rem;
}

.tech-item:hover {
  border-color: #00ff88;
  transform: translateX(5px);
}

.tech-item i {
  color: #00ff88;
  font-size: 1rem;
  flex-shrink: 0;
}

.tech-item span {
  color: #b0b0b0;
  font-weight: 500;
  font-size: 0.85rem;
}

/* ===== AUTOMAÇÃO ===== */
.automation {
  padding: 8rem 0;
  background: #111111;
}

.automation-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 4rem;
}
@media (max-width: 1200px) {
  .automation-content {
    gap: 3rem;
  }
}
@media (max-width: 1024px) {
  .automation-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .automation-content {
    gap: 2rem;
  }
}
@media (max-width: 480px) {
  .automation-content {
    gap: 1.5rem;
  }
}

.automation-text h3 {
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.automation-features {
  list-style: none;
  margin-bottom: 2rem;
}

.automation-features li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  color: #b0b0b0;
}

.automation-features i {
  color: #00bc32;
  font-size: 1.2rem;
}

.automation-tools h4 {
  color: #ffffff;
  margin-bottom: 1rem;
}

.tool-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.tool-tags span {
  background: #1a1a1a;
  color: #00bc32;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  border: 1px solid rgba(51, 221, 255, 0.2);
}

.automation-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
@media (max-width: 768px) {
  .automation-flow {
    flex-direction: column;
    gap: 1rem;
  }
}

.flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 255, 136, 0.3);
  border-radius: 16px;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .flow-step {
    padding: 1.5rem;
  }
}
@media (max-width: 480px) {
  .flow-step {
    padding: 1rem;
  }
}

.flow-step:hover {
  transform: translateY(-5px);
  border-color: #00ff88;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.flow-step i {
  font-size: 2.5rem;
  color: #00ff88;
}

.flow-step span {
  color: #ffffff;
  font-weight: 500;
}

.flow-arrow {
  width: 60px;
  height: 2px;
  background: linear-gradient(135deg, #00ff88, #00bc32);
  position: relative;
}

.flow-arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid #00ff88;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

/* ===== NOSSO PROCESSO ===== */
.process {
  padding: 8rem 0;
  background: #111111;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  justify-items: center;
}
.process-steps .process-step:nth-child(4) {
  grid-column: 2;
}
@media (max-width: 1200px) {
  .process-steps {
    gap: 2rem;
  }
}
@media (max-width: 1024px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-steps .process-step:nth-child(4) {
    grid-column: auto;
  }
}
@media (max-width: 768px) {
  .process-steps {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .process-steps .process-step:nth-child(4) {
    grid-column: auto;
  }
}
@media (max-width: 480px) {
  .process-steps {
    gap: 2rem;
  }
}
@media (max-width: 360px) {
  .process-steps {
    gap: 1.5rem;
  }
}

.process-step {
  background: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 255, 136, 0.3);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  max-width: 350px;
}

.process-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.process-step:hover::before {
  opacity: 1;
}

.process-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 30px rgba(0, 255, 136, 0.3);
  border-color: #00ff88;
}

.step-number {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #00ff88, #00bc32);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Orbitron", monospace;
  font-weight: 900;
  font-size: 1.2rem;
  color: #000000;
}

.step-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #00ff88, #00bc32);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2rem;
  color: #000000;
  position: relative;
  z-index: 1;
}

.process-step h3 {
  color: #ffffff;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  font-size: 1.5rem;
}

.process-step p {
  color: #b0b0b0;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
  flex-grow: 1;
  line-height: 1.6;
}

.process-step ul {
  list-style: none;
  text-align: left;
  position: relative;
  z-index: 1;
}

.process-step ul li {
  color: #b0b0b0;
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.process-step ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #00ff88;
  font-weight: bold;
}

/* ===== CTA SECTION ===== */
.cta {
  padding: 8rem 0;
  background: #111111;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 80%, rgba(0, 255, 136, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(255, 0, 128, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-size: clamp(2rem, 5vw, 3rem);
}

.cta-content p {
  color: #b0b0b0;
  font-size: 1.25rem;
  margin-bottom: 3rem;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== CONTATO ===== */
.contact {
  padding: 8rem 0;
  background: #000000;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 4rem;
}
@media (max-width: 1200px) {
  .contact-content {
    gap: 3rem;
  }
}
@media (max-width: 1024px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .contact-content {
    gap: 2rem;
  }
}
@media (max-width: 480px) {
  .contact-content {
    gap: 1.5rem;
  }
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #00ff88, #00bc32);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #000000;
}

.contact-details h4 {
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.contact-details p {
  color: #b0b0b0;
  margin-bottom: 0;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.social-link {
  width: 50px;
  height: 50px;
  background: #1a1a1a;
  border: 1px solid #00ff88;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00ff88;
  text-decoration: none;
  font-size: 1.25rem;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #00ff88;
  color: #000000;
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
}

.contact-form {
  background: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 255, 136, 0.3);
  border-radius: 16px;
  padding: 2.5rem;
}

.form-group {
  position: relative;
  margin-bottom: 2rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem 0;
  background: transparent;
  border: none;
  border-bottom: 2px solid #666666;
  color: #ffffff;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-bottom-color: #00ff88;
}

.form-group label {
  position: absolute;
  top: 1rem;
  left: 0;
  color: #b0b0b0;
  transition: all 0.3s ease;
  pointer-events: none;
}

.form-group input:focus ~ label,
.form-group input:valid ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:valid ~ label {
  top: -0.5rem;
  font-size: 0.8rem;
  color: #00ff88;
}

.form-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #00ff88, #00bc32);
  transition: width 0.3s ease;
}

.form-group input:focus ~ .form-line,
.form-group textarea:focus ~ .form-line {
  width: 100%;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* ===== CONSULTORIA ESPECIALIZADA ===== */
.consulting {
  padding: 8rem 0;
  background: #111111;
}

.consulting-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 4rem;
}
@media (max-width: 1200px) {
  .consulting-content {
    gap: 3rem;
  }
}
@media (max-width: 1024px) {
  .consulting-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .consulting-content {
    gap: 2rem;
  }
}
@media (max-width: 480px) {
  .consulting-content {
    gap: 1.5rem;
  }
}

.consulting-text h3 {
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.consulting-areas {
  margin: 2rem 0;
}

.area-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 255, 136, 0.3);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.area-item:hover {
  border-color: #00ff88;
  transform: translateX(5px);
}

.area-item i {
  color: #000000 !important;
  font-size: 1.5rem;
  margin-top: 0.25rem;
  opacity: 1 !important;
}

.area-icon-wrapper {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #00ff88, #009171);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #000000;
  flex-shrink: 0;
  opacity: 1;
}

.area-item h4 {
  color: #ffffff;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.area-item p {
  color: #b0b0b0;
  margin-bottom: 0;
  font-size: 0.95rem;
}

.consulting-cta {
  margin-top: 2rem;
}

.consulting-stats {
  display: grid;
  gap: 1.5rem;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 255, 136, 0.3);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.stat-card:hover {
  border-color: #00ff88;
  transform: translateY(-5px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.stat-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #00ff88, #00bc32);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #000000;
}

.stat-content h4 {
  color: #00ff88;
  font-size: 2rem;
  margin-bottom: 0.25rem;
  font-family: "Orbitron", monospace;
}

.stat-content p {
  color: #b0b0b0;
  margin-bottom: 0;
  font-size: 0.9rem;
}

/* ===== NOSSAS SOLUÇÕES ===== */
.solutions {
  padding: 8rem 0;
  background: #111111;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  justify-items: center;
}
@media (max-width: 1200px) {
  .solutions-grid {
    gap: 2rem;
  }
}
@media (max-width: 1024px) {
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
@media (max-width: 480px) {
  .solutions-grid {
    gap: 2rem;
  }
}
@media (max-width: 360px) {
  .solutions-grid {
    gap: 1.5rem;
  }
}

.solution-card {
  background: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 255, 136, 0.3);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  max-width: 350px;
}

.solution-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.solution-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 30px rgba(0, 255, 136, 0.3);
  border-color: #00ff88;
}

.solution-card:hover::before {
  opacity: 1;
}

.solution-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #00ff88, #00bc32);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
  color: #000000;
  position: relative;
  z-index: 1;
}

.solution-card h3 {
  color: #ffffff;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  font-size: 1.5rem;
}

.solution-card p {
  color: #b0b0b0;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  line-height: 1.5;
  font-size: 1rem;
  flex-grow: 1;
}

.solution-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.solution-features span {
  background: #1a1a1a;
  color: #00bc32;
  padding: 0.2rem 0.6rem;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid rgba(51, 221, 255, 0.2);
}

.solution-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  margin-top: auto;
}

.solution-links .btn {
  padding: 0.8rem 1.8rem;
  font-size: 0.85rem;
  width: auto;
  min-width: 100px;
}

.projects {
  padding: 8rem 0;
  background: linear-gradient(135deg, #000000, #111111);
  position: relative;
  overflow: hidden;
}
.projects::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(0, 255, 150, 0.1) 0%, transparent 50%), radial-gradient(circle at 70% 80%, rgba(0, 150, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}
.projects .projects-content {
  margin-top: 3rem;
}
.projects .featured-project {
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.05), rgba(0, 212, 255, 0.05));
  border: 1px solid rgba(0, 255, 136, 0.3);
  border-radius: 24px;
  padding: 2.5rem;
  margin-bottom: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.projects .featured-project::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 0%, rgba(0, 255, 150, 0.02) 50%, transparent 100%);
  pointer-events: none;
}
.projects .featured-project .project-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 300px;
}
.projects .featured-project .project-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.projects .featured-project .project-image .project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 255, 150, 0.1) 100%);
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 20px;
}
.projects .featured-project .project-image .project-overlay .project-badge {
  background: linear-gradient(135deg, #00ff88, #00bc32);
  color: #000000;
  padding: 0.25rem 0.75rem;
  border-radius: 24px;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.projects .featured-project .project-image:hover img {
  transform: scale(1.05);
}
.projects .featured-project .project-details h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #00ff88, #00bc32);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.projects .featured-project .project-details .project-description {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #b0b0b0;
  margin-bottom: 2.5rem;
}
.projects .featured-project .project-details .project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.projects .featured-project .project-details .project-tech span {
  background: rgba(0, 255, 150, 0.1);
  color: #00ff88;
  padding: 0.25rem 0.75rem;
  border-radius: 24px;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid rgba(0, 255, 150, 0.2);
}
.projects .featured-project .project-details .project-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.projects .featured-project .project-details .project-results .result-item {
  text-align: center;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 16px;
  border: 1px solid rgba(0, 255, 150, 0.1);
}
.projects .featured-project .project-details .project-results .result-item .result-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #00ff88;
  margin-bottom: 0.5rem;
}
.projects .featured-project .project-details .project-results .result-item .result-label {
  font-size: 0.875rem;
  color: #b0b0b0;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.projects .projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 2.5rem;
}
.projects .projects-grid .project-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.projects .projects-grid .project-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 255, 150, 0.05) 0%, rgba(0, 150, 255, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.projects .projects-grid .project-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 255, 150, 0.3);
  box-shadow: 0 10px 40px rgba(0, 255, 136, 0.4);
}
.projects .projects-grid .project-card:hover::before {
  opacity: 1;
}
.projects .projects-grid .project-card .project-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  background: linear-gradient(135deg, #00ff88, #00bc32);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.projects .projects-grid .project-card .project-icon i {
  font-size: 2rem;
  color: #000000;
}
.projects .projects-grid .project-card h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}
.projects .projects-grid .project-card p {
  color: #b0b0b0;
  line-height: 1.6;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}
.projects .projects-grid .project-card .project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.projects .projects-grid .project-card .project-tags span {
  background: rgba(0, 255, 150, 0.1);
  color: #00ff88;
  padding: 0.5rem 1rem;
  border-radius: 16px;
  font-size: 0.75rem;
  border: 1px solid rgba(0, 255, 150, 0.2);
}
@media (max-width: 768px) {
  .projects {
    padding: 3rem 0;
  }
  .projects .featured-project {
    grid-template-columns: 1fr;
    padding: 2.5rem;
    gap: 2.5rem;
  }
  .projects .featured-project .project-details h3 {
    font-size: 2rem;
  }
  .projects .featured-project .project-results {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .projects .projects-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.partners {
  padding: 8rem 0;
  background: linear-gradient(135deg, #000000, #111111);
  position: relative;
  overflow: visible;
}
.partners::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 30%, rgba(0, 150, 255, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(0, 255, 150, 0.1) 0%, transparent 50%);
  pointer-events: none;
}
.partners .partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}
.partners .partners-grid .partner-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: visible;
}
.partners .partners-grid .partner-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 150, 255, 0.3);
  box-shadow: 0 10px 40px rgba(0, 255, 136, 0.4);
}
.partners .partners-grid .partner-card:hover .partner-logo {
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(0, 150, 255, 0.4);
}
.partners .partners-grid .partner-card:hover .partner-logo-img {
  transform: scale(1.05);
  filter: brightness(1.1);
}
.partners .partners-grid .partner-card .partner-logo {
  width: 120px;
  height: 120px;
  margin: 0 auto 2.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(0, 150, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
  box-shadow: 0 0 20px rgba(0, 150, 255, 0.2);
}
.partners .partners-grid .partner-card .partner-logo i {
  font-size: 3rem;
  color: #000000;
}
.partners .partners-grid .partner-card .partner-logo .partner-logo-img {
  width: 120px;
  height: 120px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 100%;
  background: transparent;
  padding: 0;
  transition: all 0.3s ease;
}
.partners .partners-grid .partner-card h4 {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, #009171, #00bc32);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.partners .partners-grid .partner-card p {
  color: #0099cc;
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}
.partners .partners-grid .partner-card .partner-description {
  color: #b0b0b0;
  line-height: 1.6;
  font-size: 1rem;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .partners {
    padding: 3rem 0 5rem;
  }
  .partners .partners-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-top: 2.5rem;
  }
  .partners .partners-grid .partner-card {
    padding: 2.5rem;
  }
  .partners .partners-grid .partner-card .partner-logo {
    width: 80px;
    height: 80px;
    margin-bottom: 2rem;
  }
  .partners .partners-grid .partner-card .partner-logo i {
    font-size: 2.5rem;
  }
  .partners .partners-grid .partner-card h4 {
    font-size: 1.5rem;
  }
  .partners .partners-grid .partner-card p {
    font-size: 1rem;
  }
}

/* ===== FOOTER ===== */
.footer {
  background: #111111;
  border-top: 1px solid rgba(0, 255, 136, 0.3);
  padding: 4rem 0 2rem;
  width: 100%;
  overflow: hidden;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  margin-bottom: 3rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2rem;
  box-sizing: border-box;
}

.footer-logo p {
  color: #b0b0b0;
  margin-top: 1rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.footer-section h4 {
  color: #00ff88;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.75rem;
}

.footer-section ul li a {
  color: #b0b0b0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #00ff88;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #666666;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .logo-icon {
    width: 100%; /* Garante que o container ocupe toda a largura */
    justify-content: center;
  }
  .footer-links {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
@media (max-width: 480px) {
  .footer {
    padding: 2rem 0 1.5rem;
  }
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
    padding: 0 1rem;
  }
  .footer-links {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .footer-section h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  .footer-section ul li {
    margin-bottom: 0.5rem;
  }
  .footer-section ul li a {
    font-size: 0.9rem;
  }
  .footer-bottom {
    padding-top: 1.5rem;
    font-size: 0.85rem;
  }
}
@media (max-width: 360px) {
  .footer-content {
    padding: 0 0.5rem;
  }
  .footer-section h4 {
    font-size: 0.95rem;
  }
  .footer-section ul li a {
    font-size: 0.85rem;
  }
}
/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #00ff88, #00bc32);
  border: none;
  border-radius: 50%;
  color: #000000;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  z-index: 1000;
  max-width: calc(100vw - 4rem);
  max-height: calc(100vh - 4rem);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
}/*# sourceMappingURL=main.css.map */