/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
@import url('https://cdn.jsdelivr.net/npm/remixicon@3.5.0/fonts/remixicon.css');
@import url('https://unpkg.com/aos@2.3.1/dist/aos.css');

/* ===== VARIABLES CSS ===== */
:root {
  /* Colors */
  --primary-color: #1E4D5D; /* Azul petróleo */
  --secondary-color: #B8E2D0; /* Verde menta claro */
  --accent-color: #D4AF37; /* Dourado fosco */
  --text-color: #FAFAFA; /* Off white */
  --text-secondary: #666666; /* Cinza médio */
  --background-dark: #0A1A1F;
  --background-card: rgba(30, 77, 93, 0.1);
  --background-glass: rgba(184, 226, 208, 0.05);
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  --gradient-accent: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
  --gradient-dark: linear-gradient(135deg, #0A1A1F 0%, #1E4D5D 100%);
  
  /* Typography */
  --font-family: 'Inter', sans-serif;
  --font-size-h1: 3.5rem;
  --font-size-h2: 2.5rem;
  --font-size-h3: 1.75rem;
  --font-size-normal: 1rem;
  --font-size-small: 0.875rem;
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  
  /* Spacing */
  --header-height: 4rem;
  --section-padding: 6rem 0;
  --container-margin: 1.5rem;
  --border-radius: 1rem;
  --border-radius-small: 0.5rem;
  
  /* Shadows */
  --shadow-light: 0 4px 20px rgba(184, 226, 208, 0.1);
  --shadow-medium: 0 8px 32px rgba(30, 77, 93, 0.2);
  --shadow-heavy: 0 16px 64px rgba(10, 26, 31, 0.3);
  
  /* Transitions */
  --transition-fast: 0.3s ease;
  --transition-medium: 0.5s ease;
  --transition-slow: 0.8s ease;
  
  /* Z-index */
  --z-tooltip: 10;
  --z-fixed: 100;
  --z-modal: 1000;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size-normal);
  font-weight: var(--font-weight-normal);
  background: var(--background-dark);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../assets/background_gradient_1.png') center/cover no-repeat;
  z-index: -2;
}

body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-dark);
  opacity: 0.8;
  z-index: -1;
}

h1, h2, h3, h4 {
  color: var(--text-color);
  font-weight: var(--font-weight-semibold);
  line-height: 1.2;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

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

/* ===== REUSABLE CSS CLASSES ===== */
.container {
  max-width: 1200px;
  margin-left: var(--container-margin);
  margin-right: var(--container-margin);
}

.section {
  padding: var(--section-padding);
}

.section-title {
  font-size: var(--font-size-h2);
  margin-bottom: 1rem;
  text-align: center;
}

.section-subtitle {
  font-size: var(--font-size-normal);
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 3rem;
}

.section-header {
  margin-bottom: 4rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  font-weight: var(--font-weight-medium);
  transition: var(--transition-fast);
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.button-primary {
  background: var(--gradient-primary);
  color: var(--text-color);
  box-shadow: var(--shadow-medium);
}

.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-heavy);
}

.button-secondary {
  background: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.button-secondary:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
}

/* ===== LOADING SCREEN ===== */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--background-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: var(--z-modal);
  transition: opacity var(--transition-medium), visibility var(--transition-medium);
}

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

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

.loading-robot {
  margin-bottom: 2rem;
}

.robot-pulse {
  width: 80px;
  height: 80px;
  animation: pulse 2s infinite;
}

.loading-text {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--secondary-color);
}

.loading-bar {
  width: 200px;
  height: 4px;
  background: rgba(184, 226, 208, 0.2);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto;
}

.loading-progress {
  height: 100%;
  background: var(--gradient-primary);
  border-radius: 2px;
  animation: loading 3s ease-in-out;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

@keyframes loading {
  0% { width: 0%; }
  100% { width: 100%; }
}

/* ===== HEADER & NAV ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 26, 31, 0.9);
  backdrop-filter: blur(10px);
  z-index: var(--z-fixed);
  transition: var(--transition-fast);
}

.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo .logo {
  height: 40px;
  width: auto;
}

.nav-list {
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: var(--text-color);
  font-weight: var(--font-weight-medium);
  transition: var(--transition-fast);
  position: relative;
}

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

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

.nav-toggle,
.nav-close {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-color);
}

/* ===== HOME ===== */
.home {
  padding-top: calc(var(--header-height) + 2rem);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.home-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.home-title {
  font-size: var(--font-size-h1);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.home-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.home-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.home-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.home-img {
  width: 100%;
  max-width: 400px;
  animation: float 6s ease-in-out infinite;
}

.home-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}

.home-scroll-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--secondary-color);
  font-size: var(--font-size-small);
  transition: var(--transition-fast);
}

.home-scroll-button:hover {
  transform: translateY(-4px);
}

.home-scroll-button i {
  font-size: 1.5rem;
  animation: scroll 2s infinite;
}

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

@keyframes scroll {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ===== ABOUT ===== */
.about {
  background: var(--background-glass);
  backdrop-filter: blur(10px);
}

.about-content {
  display: grid;
  gap: 4rem;
}

.story-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.story-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--text-color);
}

.story-content h3 {
  margin-bottom: 0.5rem;
  color: var(--secondary-color);
}

.about-values h3 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--secondary-color);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.value-card {
  background: var(--background-card);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  border: 1px solid rgba(184, 226, 208, 0.1);
  transition: var(--transition-fast);
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
  border-color: var(--secondary-color);
}

.value-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1rem;
  color: var(--primary-color);
}

.value-card h4 {
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--background-card);
  backdrop-filter: blur(10px);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  border: 1px solid rgba(184, 226, 208, 0.1);
  transition: var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: var(--transition-fast);
}

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

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
  border-color: var(--secondary-color);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: var(--border-radius-small);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--text-color);
  margin-bottom: 1.5rem;
}

.service-card h3 {
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.service-card p {
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

.service-features {
  margin-bottom: 2rem;
}

.service-features li {
  padding: 0.5rem 0;
  color: var(--text-secondary);
  position: relative;
  padding-left: 1.5rem;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: var(--font-weight-bold);
}

.service-button {
  color: var(--secondary-color);
  font-weight: var(--font-weight-medium);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-fast);
}

.service-button:hover {
  color: var(--accent-color);
  transform: translateX(4px);
}

/* ===== RESULTS ===== */
.results {
  background: var(--background-glass);
  backdrop-filter: blur(10px);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.stat-card {
  text-align: center;
  padding: 2rem;
  background: var(--background-card);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius);
  border: 1px solid rgba(184, 226, 208, 0.1);
  transition: var(--transition-fast);
}

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

.stat-number {
  font-size: 3rem;
  font-weight: var(--font-weight-bold);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text-secondary);
  font-weight: var(--font-weight-medium);
}

.clients-section h3 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--secondary-color);
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.client-card {
  background: var(--background-card);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: var(--border-radius);
  border: 1px solid rgba(184, 226, 208, 0.1);
  text-align: center;
  transition: var(--transition-fast);
}

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

.client-logo {
  height: 60px;
  width: auto;
  margin-bottom: 1rem;
}

.client-card h4 {
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.client-card p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.client-results {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.result-tag {
  background: var(--gradient-accent);
  color: var(--primary-color);
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: var(--font-size-small);
  font-weight: var(--font-weight-medium);
}

.dashboard-preview {
  text-align: center;
}

.dashboard-img {
  max-width: 100%;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-medium);
}

/* ===== CONTACT ===== */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-card {
  background: var(--background-card);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: var(--border-radius);
  border: 1px solid rgba(184, 226, 208, 0.1);
  margin-bottom: 2rem;
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--text-color);
  margin-bottom: 1rem;
}

.contact-card h3 {
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.contact-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-secondary);
}

.feature-item i {
  color: var(--secondary-color);
  font-size: 1.25rem;
}

.contact-form {
  background: var(--background-card);
  backdrop-filter: blur(10px);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  border: 1px solid rgba(184, 226, 208, 0.1);
}

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  background: rgba(184, 226, 208, 0.05);
  border: 1px solid rgba(184, 226, 208, 0.2);
  border-radius: var(--border-radius-small);
  color: var(--text-color);
  font-family: var(--font-family);
  transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(184, 226, 208, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-secondary);
}

.form-button {
  width: 100%;
  justify-content: center;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--background-dark);
  border-top: 1px solid rgba(184, 226, 208, 0.1);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  z-index: 2;
}

.footer-logo-container {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.footer-logo {
  height: 40px;
  width: auto;
}

.footer-text {
  margin-top: 0.5rem;
}

.footer-text p {
  color: var(--text-secondary);
  line-height: 1.4;
  margin: 0;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: var(--background-card);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  transition: var(--transition-fast);
}

.social-link:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
}

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

.footer-group h4 {
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.footer-group ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-group a {
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(184, 226, 208, 0.1);
  color: var(--text-secondary);
}

.footer-badges {
  display: flex;
  gap: 1rem;
}

.badge {
  background: var(--gradient-accent);
  color: var(--primary-color);
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: var(--font-size-small);
  font-weight: var(--font-weight-medium);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  box-shadow: var(--shadow-medium);
  z-index: var(--z-tooltip);
  transition: var(--transition-fast);
  animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-heavy);
}

@keyframes pulse-whatsapp {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* ===== ADDITIONAL ANIMATIONS ===== */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(184, 226, 208, 0.6);
  transform: scale(0);
  animation: ripple-animation 0.6s linear;
  pointer-events: none;
}

@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

.floating-element {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.custom-cursor {
  mix-blend-mode: difference;
}

/* Scroll header effect */
.scroll-header {
  background: rgba(10, 26, 31, 0.95) !important;
  box-shadow: var(--shadow-light);
}

/* Enhanced hover effects */
.service-card,
.value-card {
  transition: all var(--transition-fast);
}

.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-heavy);
}

.value-card:hover {
  transform: translateY(-8px) rotateY(5deg);
  box-shadow: var(--shadow-medium);
}

/* Loading screen improvements */
.loading-screen {
  background: linear-gradient(135deg, var(--background-dark) 0%, var(--primary-color) 100%);
}

/* Enhanced button styles */
.button {
  position: relative;
  overflow: hidden;
}

/* Parallax container */
.parallax-container {
  transform-style: preserve-3d;
}

/* ===== RESPONSIVE ===== */
@media screen and (max-width: 1024px) {
  .container {
    margin-left: 1rem;
    margin-right: 1rem;
  }
  
  .home-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media screen and (max-width: 768px) {
  :root {
    --font-size-h1: 2.5rem;
    --font-size-h2: 2rem;
    --section-padding: 4rem 0;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(10, 26, 31, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
  }
  
  .nav-menu.show-menu {
    right: 0;
  }
  
  .nav-list {
    flex-direction: column;
    gap: 3rem;
  }
  
  .nav-link {
    font-size: 1.25rem;
  }
  
  .nav-toggle,
  .nav-close {
    display: block;
  }
  
  .nav-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
  }
  
  .home-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .button {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .clients-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media screen and (max-width: 480px) {
  :root {
    --font-size-h1: 2rem;
    --font-size-h2: 1.5rem;
    --container-margin: 1rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    bottom: 1rem;
    right: 1rem;
  }
}



/* ===== DROPDOWN MENU ===== */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.dropdown-toggle i {
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--background-card);
    border-radius: var(--border-radius-small);
    box-shadow: var(--shadow-medium);
    min-width: 200px;
    z-index: var(--z-fixed);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    padding: 0.5rem 0;
}

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

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu .dropdown-item {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-color);
    font-size: var(--font-size-normal);
    transition: background-color 0.2s ease, color 0.2s ease;
}

.dropdown-menu .dropdown-item:hover {
    background-color: var(--primary-color);
    color: var(--background-dark);
}

/* Adjust nav-link for dropdown */
.nav-link.dropdown-toggle {
    padding-right: 0.5rem; /* Adjust padding to make space for icon */
}

/* Responsive adjustments for dropdown */
@media screen and (max-width: 768px) {
    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        transform: translateY(0);
        background-color: transparent;
        padding-left: 1rem;
    }

    .dropdown:hover .dropdown-toggle i {
        transform: rotate(0deg); /* No rotation on mobile */
    }

    .dropdown-menu .dropdown-item {
        padding: 0.5rem 0;
    }
}


