/* Global styles, resets, typography, and common components */
* {
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

/* Buttons */
.btn {
  font-size: 1rem;
  font-weight: 500;
  border-radius: 18px;
  /* padding: 12px 24px; */
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-success {
  background-color: var(--primary-color);
  color: white;
}

.btn-success:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline-dark {
  border: 2px solid var(--text-primary);
  color: var(--text-primary);
  background: transparent;
}

.btn-outline-dark:hover {
  background-color: var(--text-primary);
  color: var(--bg-primary);
}

.btn-call {
  background-color: var(--primary-color);
  color: white;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 25px;
}

.btn-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.btn-link:hover {
  color: var(--primary-dark);
}

/* Navigation */
.nav-link {
  color: var(--text-white);
  font-weight: 500;
  padding: 8px 16px;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
}

header.home .nav-link {
  color: var(--text-white);
  font-weight: 500;
  padding: 8px 16px;
  transition: color 0.3s ease;
}

header.scrolled .nav-link {
  color: var(--text-primary);
}

/* Preloader Styles */
#preloader {
  background: var(
    --bg-primary
  ); /* Usa a cor de fundo do tema ativo (light: #ffffff, dark: #111827) */
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    visibility 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

#preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-content {
  transform: translateY(0);
  animation: pulse 1.8s infinite ease-in-out;
}

.preloader-logo {
  max-width: 150px;
  height: auto;
  transition: transform 0.3s ease;
}

.dark .preloader-logo {
  filter: brightness(1.2); /* Ajuste para visibilidade no modo dark */
}

/* Custom spinner */
.preloader-spinner {
  width: 40px;
  height: 40px;
  position: relative;
  margin: 0 auto;
}

.preloader-spinner::before,
.preloader-spinner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--primary-color);
  animation: spin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.preloader-spinner::after {
  border-top-color: var(--accent-color);
  animation-delay: 0.3s;
}

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

/* Pulse animation for logo */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
  100% {
    transform: scale(1);
  }
}

/* Updated navbar-toggler with custom hamburger animation */
.navbar-toggler {
  border: none;
  padding: 4px 8px;
  width: 40px;
  height: 40px;
  position: relative;
  background: transparent;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.hamburger-lines {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  position: relative;
}

.line {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--primary-color);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-origin: center;
}

.navbar-toggler.active .line1 {
  transform: rotate(45deg) translate(6px, 6px);
}

.navbar-toggler.active .line2 {
  opacity: 0;
  transform: scaleX(0);
}

.navbar-toggler.active .line3 {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Enhanced dropdown menu with better UX and fluid animations */
.dropdown-menu {
  border: none;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 12px 0;
  margin-top: 8px;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  min-width: 220px;
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.dropdown-item {
  padding: 14px 20px;
  color: var(--text-primary);
  transition: all 0.2s ease;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  border: none;
  background: none;
  width: calc(100% - 16px);
  text-align: left;
  position: relative;
  border-radius: 8px;
  margin: 2px 8px;
}

.dropdown-item:hover,
.dropdown-item:focus {
  background-color: var(--primary-color);
  color: white;
}

.submenu-arrow {
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: all 0.2s ease;
}

.dropdown-item:hover .submenu-arrow,
.dropdown-item:focus .submenu-arrow {
  color: white;
}

/* Enhanced submenu positioning with better fluid animations */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu .dropdown-menu {
  position: absolute;
  top: -12px;
  left: 100%;
  margin-top: 0;
  margin-left: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-10px);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.dropdown-submenu.show .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Enhanced focus management for better accessibility */
.dropdown-item:focus,
.nav-link:focus,
.mobile-back-btn:focus {
  outline: 0px solid var(--primary-color);
  outline-offset: 2px;
}

/* Improved keyboard navigation support */
.dropdown-menu .dropdown-item:focus {
  background-color: var(--primary-color);
  color: white;
}

/* Enhanced dark mode support with better contrast ratios */
.dark .dropdown-menu {
  background-color: var(--bg-primary);
  border-color: var(--border-color);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.dark .dropdown-item::before {
  background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
}

.dark .line {
  background-color: var(--text-primary);
}

/* Complete mobile menu redesign with modern UX/UI standards */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 9998;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: var(--bg-primary);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 9999;
  overflow: hidden;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-level {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--bg-primary);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow-y: auto;
}

.mobile-menu-level.active {
  transform: translateX(0);
}

.mobile-menu-level.slide-left {
  transform: translateX(-100%);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  padding: 24px 20px;
  border-bottom: 1px solid var(--border-color);
  background: var(--bg-primary);
  position: sticky;
  top: 0;
  z-index: 10;
  min-height: 80px;
}

.mobile-menu-close,
.mobile-menu-back {
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  padding: 12px;
  border-radius: 12px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  cursor: pointer;
}

.mobile-menu-close:hover,
.mobile-menu-close:active,
.mobile-menu-back:hover,
.mobile-menu-back:active {
  background: rgba(var(--primary-color-rgb), 0.1);
  color: var(--primary-color);
  transform: scale(1.05);
}

.mobile-menu-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 0 16px;
  flex: 1;
}

.mobile-menu-list {
  list-style: none;
  padding: 20px;
  margin: 0;
  flex: 1;
}

.mobile-menu-item {
  margin: 0 0 8px 0;
  list-style: none;
}

.mobile-menu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 16px;
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  border-radius: 16px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  min-height: 64px;
  position: relative;
  overflow: hidden;
}

.mobile-menu-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(var(--primary-color-rgb), 0.1),
    transparent
  );
  transition: left 0.6s ease;
}

.mobile-menu-link:hover::before,
.mobile-menu-link:active::before {
  left: 100%;
}

.mobile-menu-link:hover,
.mobile-menu-link:active {
  background: rgba(var(--primary-color-rgb), 0.08);
  color: var(--primary-color);
  transform: translateX(8px);
}

.mobile-menu-link i {
  font-size: 1rem;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.mobile-menu-link:hover i,
.mobile-menu-link:active i {
  color: var(--primary-color);
  transform: translateX(4px);
}

.mobile-menu-footer {
  padding: 20px;
  border-top: 1px solid var(--border-color);
  background: var(--bg-primary);
}

.mobile-menu-footer .btn {
  font-size: 1.1rem;
  padding: 16px 24px;
  border-radius: 16px;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(var(--primary-color-rgb), 0.3);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mobile-menu-footer .btn:hover,
.mobile-menu-footer .btn:active {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(var(--primary-color-rgb), 0.4);
}

/* Enhanced touch feedback for mobile devices */
@media (hover: none) and (pointer: coarse) {
  .mobile-menu-link:active {
    background: rgba(var(--primary-color-rgb), 0.15);
    transform: scale(0.98);
  }

  .mobile-menu-close:active,
  .mobile-menu-back:active {
    background: rgba(var(--primary-color-rgb), 0.15);
    transform: scale(0.95);
  }
}

/* Dark mode enhancements */
.dark .mobile-menu,
.dark .mobile-menu-level,
.dark .mobile-menu-header,
.dark .mobile-menu-footer {
  background: var(--bg-primary);
}

.dark .mobile-menu-overlay {
  background: rgba(0, 0, 0, 0.8);
}

/* Responsive adjustments */
@media (max-width: 576px) {
  .mobile-menu-header {
    padding: 20px 16px;
    min-height: 72px;
  }

  .mobile-menu-title {
    font-size: 1.3rem;
  }

  .mobile-menu-list {
    padding: 16px;
  }

  .mobile-menu-link {
    padding: 18px 14px;
    font-size: 1rem;
    min-height: 60px;
  }

  .mobile-menu-footer {
    padding: 16px;
  }
}

/* Remove old mobile menu styles */
.offcanvas,
.level_1,
.level_2,
.level_3,
.item_lv_1,
.item_lv_2,
.item_lv_3 {
  display: none !important;
}

/* Sections */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-label {
  color: var(--primary-color);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  display: block;
}

/* Cards */
.card {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

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

/* Dark mode toggle */
.dark-mode-toggle {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-color);
  color: white;
  border: none;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1000;
}

.dark-mode-toggle:hover {
  transform: scale(1.1);
}

/* Mobile navigation */
@media (max-width: 768px) {
  .navbar-toggler {
    border: none;
    padding: 4px 8px;
  }

  .navbar-toggler:focus {
    box-shadow: none;
  }

  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    transition: transform 0.3s ease;
  }

  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    transform: rotate(90deg);
  }

  .preloader-logo {
    max-width: 100px;
  }
  .preloader-spinner {
    width: 30px;
    height: 30px;
  }
}

/* Responsive utilities */
@media (max-width: 576px) {
  .hero-title {
    font-size: 2.5rem;
  }

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

  .btn-lg {
    padding: 10px 20px;
    font-size: 1rem;
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOutToLeft {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(-100%);
    opacity: 0;
  }
}

@keyframes slideInFromLeft {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOutToRight {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

/* :root {
  --primary-color: #76ab43;
  --primary-dark: #064e3b;
  --text-primary: #1f2937;
  --text-secondary: #6b7280;
  --bg-primary: #ffffff;
  --bg-secondary: #f9fafb;
  --border-color: #e5e7eb;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.dark {
  --text-primary: #f9fafb;
  --text-secondary: #d1d5db;
  --bg-primary: #111827;
  --bg-secondary: #1f2937;
  --border-color: #374151;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.4),
    0 4px 6px -2px rgba(0, 0, 0, 0.3);
} */

/* Enhanced transparent header with smooth scroll transitions */
.navbar {
  background-color: transparent;
  backdrop-filter: none;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background-color: rgba(var(--bg-primary-rgb, 255, 255, 255), 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.dark .navbar.scrolled {
  background-color: rgba(17, 24, 39, 0.95);
}

/* Footer */
.footer {
  background: #222220;
  color: white;
  padding: 60px 0 20px;
}

.footer-brand img {
  margin-bottom: 1rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

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

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.information-default {
  font-size: 0.875rem;
  text-align: justify;
  word-wrap: break-word;
  a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
  }
  a:hover {
    color: var(--primary-color);
  }
}

.footer h5 {
  color: white;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.2);
  margin: 2rem 0 1rem;
}

.footer-bottom {
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* Responsive utilities */
@media (max-width: 991px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    .information-default {
      width: 100%;
      display: flex;
      flex-direction: column;
      word-wrap: break-word;
      text-align: justify;
      font-size: 0.875rem;
      a {
        font-size: 0.875rem;
      }
    }
  }
  .hero-image {
    padding: 1.5rem !important;
  }
  .footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    .col-lg-4,
    .col-lg-3 {
      margin-bottom: 2rem;
      text-align: center;
    }
    .col-lg-4:last-child {
      margin-bottom: 0rem;
    }

    .footer-brand {
      text-align: center;
    }
    .social-links {
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .footer-bottom {
      margin-top: 2rem;
      text-align: center;
    }
  }
}
@media (max-width: 768px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    .information-default {
      width: 100%;
      display: flex;
      flex-direction: column;
      word-wrap: break-word;
      text-align: justify;
      font-size: 0.875rem;
      a {
        font-size: 0.875rem;
      }
    }
  }
  .hero-image {
    padding: 1.5rem !important;
  }
  .footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    .col-lg-4,
    .col-lg-3 {
      margin-bottom: 2rem;
      text-align: center;
    }
    .col-lg-4:last-child {
      margin-bottom: 0rem;
    }

    .footer-brand {
      text-align: center;
    }
    .social-links {
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .footer-bottom {
      margin-top: 2rem;
      text-align: center;
    }
  }
}
@media (max-width: 576px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    .information-default {
      width: 100%;
      display: flex;
      flex-direction: column;
      word-wrap: break-word;
      text-align: justify;
      font-size: 0.875rem;
      a {
        font-size: 0.875rem;
      }
    }
  }
  .hero-image {
    padding: 1.5rem !important;
  }
  .footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    .col-lg-4,
    .col-lg-3 {
      margin-bottom: 2rem;
      text-align: center;
    }
    .col-lg-4:last-child {
      margin-bottom: 0rem;
    }

    .footer-brand {
      text-align: center;
    }
    .social-links {
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .footer-bottom {
      margin-top: 2rem;
      text-align: center;
    }
  }
}

/* Cookie Popup (Bottom Centered) */
.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 600px;
  width: 90%;
  background: var(--bg-primary);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-lg);
  padding: 20px;
  z-index: 1050;
  animation: slideUp var(--transition-time) var(--animation-timing);
}

.cookie-content {
  color: var(--text-color);
}

.cookie-content a.text-muted {
  color: var(--primary-color) !important;
}

.cookie-title {
  font-weight: 600;
  color: var(--primary-color);
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  .btn.btn-primary {
    background: var(--primary-color);
    color: var(--text-white);
  }

  .btn.btn-outline-primary {
    color: var(--primary-color);
    background: var(--bg-primary);
    &:hover {
      color: var(--primary-color);
      background: var(--bg-secondary);
    }
  }
}

/* Customization Modal */
.modal-content {
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-lg);
  background: var(--bg-primary);
}

.modal-header {
  background: var(--gradient-green);
  color: var(--text-white);
  border-bottom: none;
  border-radius: var(--border-radius-md) var(--border-radius-md) 0 0;
}

.modal-title {
  font-weight: 600;
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.modal-body p {
  color: var(--text-color);
}

.modal-body p.text-muted {
  color: var(--text-color) !important;
}

.modal-body a.text-muted {
  color: var(--text-color) !important;
}

.modal-footer {
  border-top: 1px solid var(--border-color);
  .btn.btn-primary {
    background: var(--primary-color);
    color: var(--text-white);
  }

  .btn.btn-outline-primary {
    color: var(--primary-color);
    background: var(--bg-primary);
    &:hover {
      color: var(--primary-color);
      background: var(--bg-secondary);
    }
  }
}

/* Animation for Popup */
@keyframes slideUp {
  from {
    transform: translateX(-50%) translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
}

/* Responsive Adjustments */
@media (max-width: 576px) {
  .cookie-popup {
    bottom: 10px;
    width: 95%;
  }
  .cookie-buttons {
    flex-direction: column;
  }
}

.form-agreement {
  a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  a:hover {
    color: var(--primary-dark);
  }
}

.form-agreement-campaign {
  a {
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  a:hover {
    color: var(--text-white);
  }
}

a.whatsapp {
  width: 50px;
  height: 50px;
  padding: 10px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 90px;
  right: 10px;
  background-color: #45ca5b;
  color: #fff;
  z-index: 99999;
  box-shadow: 0 0 5px 5px rgba(3, 60, 45, 0.1);
  transition: 400ms ease-in-out;
}

a.whatsapp:hover {
  background-color: rgba(3, 60, 45, 1);
  box-shadow: 0 0 5px 9px rgba(3, 60, 45, 0.1);
}

a.whatsapp svg {
  color: #fff;
  font-size: 28px;
  width: 24px;
  height: 24px;
  transition: 400ms ease-in-out;
}

a.whatsapp:hover svg {
  color: #45ca5b;
  filter: inherit;
}

@media (max-width: 768px) {
  a.whatsapp {
    width: 40px;
    height: 40px;
    bottom: 20px;
    right: 20px;
  }
}
