body {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: no-preference) {
  @view-transition {
    navigation: auto;
  }
}
html.is-changing .transition-fade {
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  opacity: 1;
  transform: translateY(0);
}
html.is-animating .transition-fade {
  opacity: 0;
  transform: translateY(15px);
}

.VIpgJd-ZVi9od-l4eHX-hSRGPd {
  display: none !important;
}

.navbar {
  background-color: #ffffff;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid #d1fae5;
  position: relative;
  z-index: 10;
}
@media (min-width: 768px) {
  .navbar {
    border-bottom: 1px solid #d1fae5;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  }
}
.navbar-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) {
  .navbar-container {
    padding: 0 1.5rem;
  }
}
@media (min-width: 1024px) {
  .navbar-container {
    padding: 0 2rem;
  }
}
.navbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4rem;
}

.navbar-brand {
  display: none;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .navbar-brand {
    display: flex;
  }
}
.navbar-brand a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: all 0.2s ease;
}
.navbar-brand a:hover .brand-icon {
  color: #047857;
}
.navbar-brand a:hover .brand-text {
  color: #047857;
}
.navbar-brand .brand-icon {
  width: 2rem;
  height: 2rem;
  color: #059669;
  transition: color 0.2s ease;
}
.navbar-brand .brand-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}
.navbar-brand .brand-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #059669;
  transition: color 0.2s ease;
  line-height: 1.2;
}

.navbar-links {
  display: none;
}
@media (min-width: 768px) {
  .navbar-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }
}
.navbar-links .nav-link {
  color: #1f2937;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}
.navbar-links .nav-link:hover {
  color: #059669;
}
.navbar-links .nav-link.active {
  color: #059669;
  background-color: #ecfdf5;
}

.navbar-actions {
  display: none;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 768px) {
  .navbar-actions {
    display: flex;
  }
}
.navbar-actions .btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: #059669;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 0.5rem;
  text-decoration: none;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
}
.navbar-actions .btn-cta:hover {
  background-color: #047857;
}
.navbar-actions .btn-cta svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mobile-nav {
  display: block;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  border-top: 2px solid #059669;
  z-index: 50;
}
@media (min-width: 768px) {
  .mobile-nav {
    display: none;
  }
}
.mobile-nav-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 4rem;
  padding: 0 0.5rem;
}
@media (max-width: 767px) {
  .mobile-nav {
    margin: 0 12px 12px 12px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.92) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.12), 0 8px 20px rgba(0, 0, 0, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    border-top: none !important;
  }
  .mobile-nav::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.3), rgba(5, 150, 105, 0.1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
  }
}

.mobile-nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.75rem;
  border-radius: 0.75rem;
  text-decoration: none;
  transition: all 0.2s ease;
  -webkit-tap-highlight-color: transparent;
  position: relative;
}
.mobile-nav-link:active {
  transform: scale(0.92);
}
.mobile-nav-link svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #6b7280;
  transition: color 0.2s ease;
}
.mobile-nav-link span {
  font-size: 0.625rem;
  font-weight: 500;
  color: #6b7280;
  transition: color 0.2s ease;
}
.mobile-nav-link:hover svg {
  color: #059669;
}
.mobile-nav-link:hover span {
  color: #059669;
}
.mobile-nav-link.active svg {
  color: #059669;
}
.mobile-nav-link.active span {
  color: #059669;
}

.mobile-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: -1.5rem;
  padding: 0.5rem 1rem;
  background-color: #059669;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 9999px;
  box-shadow: 0 4px 15px rgba(5, 150, 105, 0.3);
  text-decoration: none;
  min-width: 56px;
  transition: all 0.2s ease;
  animation: subtle-pulse 2s ease-in-out infinite;
}
.mobile-cta:hover {
  background-color: #047857;
  transform: scale(1.05);
}
.mobile-cta:active {
  transform: scale(0.95);
}
.mobile-cta svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.mobile-cta span {
  font-size: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.slide-menu {
  display: none;
  position: fixed;
  inset-x: 0;
  bottom: 0;
  z-index: 40;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 767px) {
  .slide-menu {
    display: block;
  }
}
.slide-menu.open {
  transform: translateY(0);
}
.slide-menu-content {
  background: #ffffff;
  border-radius: 1.5rem 1.5rem 0 0;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-top: 4px solid #059669;
  max-height: 80vh;
  overflow-y: auto;
  padding-bottom: env(safe-area-inset-bottom);
}
@supports (padding: max(0px)) {
  .slide-menu-content {
    padding-bottom: max(1.5rem, env(safe-area-inset-bottom));
  }
}
.slide-menu .drag-handle {
  display: flex;
  justify-content: center;
  padding-top: 0.75rem;
  padding-bottom: 0.25rem;
}
.slide-menu .drag-handle-bar {
  width: 3rem;
  height: 0.375rem;
  background: #9ca3af;
  border-radius: 9999px;
}
.slide-menu-links {
  padding: 0.5rem 1rem 1.5rem 1rem;
}
.slide-menu-links .slide-nav-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: #1f2937;
  text-decoration: none;
  transition: all 0.2s ease;
}
.slide-menu-links .slide-nav-link:hover {
  color: #059669;
  background-color: #ecfdf5;
}
.slide-menu-links .slide-nav-link.active {
  color: #059669;
  background-color: #ecfdf5;
}
.slide-menu-links .slide-nav-link svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #059669;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.slide-menu-links .slide-nav-link.danger {
  color: #dc2626;
}
.slide-menu-links .slide-nav-link.danger:hover {
  background-color: #fef2f2;
}
.slide-menu-links .slide-nav-link.danger svg {
  color: #dc2626;
}
.slide-menu .menu-divider {
  border-top: 1px solid #e5e7eb;
  margin: 0.75rem 0;
}
.slide-menu .translate-section {
  padding: 0.75rem 1rem;
}
.slide-menu .translate-section .translate-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}
.slide-menu .translate-section .translate-header svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #059669;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.slide-menu .translate-section .translate-header span {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1f2937;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 30;
  display: none;
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-overlay.visible {
  display: block;
  opacity: 1;
}

.gtranslate_wrapper select {
  padding: 6px 10px !important;
  border-radius: 0.375rem !important;
  border: 1px solid #e5e7eb !important;
  font-size: 13px !important;
}
.gtranslate_wrapper {
  width: auto;
}
.gtranslate_wrapper option[value=""] {
  display: none !important;
}

@keyframes subtle-pulse {
  0%, 100% {
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.3);
  }
  50% {
    box-shadow: 0 4px 25px rgba(5, 150, 105, 0.5);
  }
}
.safe-area-bottom {
  padding-bottom: env(safe-area-inset-bottom);
}

@media (max-width: 767px) {
  body {
    padding-bottom: 80px;
  }
}
@media (min-width: 768px) {
  .mobile-only {
    display: none !important;
  }
}
@media print {
  .navbar,
  .mobile-nav,
  .slide-menu,
  .mobile-overlay {
    display: none !important;
  }
}/*# sourceMappingURL=web.css.map */