:root {
  --primary: #8abf39;
  --primary-dark: #76a330;
  --accent: #f97316;
  --accent-dark: #ea580c;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --white: #ffffff;
  --shadow-soft: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

html :where(.wp-block) {
  max-width: unset;
}

tr.acf-field {
  display: flex;
}

body {
  background-color: var(--slate-50);
  color: var(--slate-900);
  font-family: var(--font-sans);
  overflow-x: hidden;
  line-height: 1.5;
}


.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.3s ease;
  padding: 1.5rem 0;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
  padding: 0.5rem 0;
}

.navbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  max-width: 180px;
  height: auto;
  cursor: pointer;
  transition: 0.3s;
}

.menu-list {
  display: flex;
  gap: 1rem;
  margin: 0;
  list-style: none;
  padding: 0;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--slate-100);
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

.navbar.scrolled .nav-link {
  color: var(--slate-600);
}

.nav-link:hover {
  color: var(--accent);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: width 0.3s ease-out;
}

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

/* Language Switcher */
.lang-switcher {
  position: relative;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--slate-100);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
}

.navbar.scrolled .lang-btn {
  color: var(--slate-600);
}

.lang-btn:hover {
  color: var(--accent);
}

.lang-menu {
  position: absolute;
  right: 0;
  top: 100%;
  margin-top: 0.5rem;
  width: 10rem;
  background: var(--white);
  border-radius: 0.75rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--slate-100);
  overflow: hidden;
  display: none;
}

.lang-menu.show {
  display: block;
}

.lang-menu.show {
  display: block;
  animation: slide-down 0.3s ease-out;
}

@keyframes slide-down {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.lang-option {
  width: 100%;
  padding: 0.5rem 1rem;
  text-align: left;
  font-size: 0.875rem;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: background 0.3s ease;
  color: inherit;
  text-decoration: none;
}

.lang-option:hover {
  background-color: var(--slate-50);
}

.flag-icon {
  width: 1.25rem;
  height: 0.75rem;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  justify-content: center;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

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

.btn-large {
  padding: 1.25rem 2.5rem;
  border-radius: 1rem;
  font-size: 1.125rem;
  font-weight: 900;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.2);
}

.btn-hover-effect {
  position: relative;
  overflow: hidden;
}

.btn-hover-effect::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(100%);
  transition: transform 0.3s ease-out;
}

.btn-hover-effect:hover::before {
  transform: translateY(0);
}

.btn-hover-effect:active {
  transform: scale(0.95);
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  width: 100%;
  overflow: hidden;
  background-color: var(--slate-900);
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: relative;
  height: 100vh;
  min-height: 600px;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--slate-900), rgba(15, 23, 42, 0.6), transparent);
}

.hero-content {
  position: relative;
  z-index: 20;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.hero-text-wrapper {
  max-width: 42rem;
}

.badge {
  display: inline-block;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  background-color: var(--accent);
  color: var(--white);
}

.hero-title {
  font-size: 3rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1;
  letter-spacing: -0.05em;
  transition: all 0.5s ease;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 4rem;
    /* Requested size */
  }
}

.hero-desc {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  max-width: 32rem;
  line-height: 1.6;
  transition: all 0.5s ease;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-controls {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-ctrl-btn {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-ctrl-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hero-indicators {
  position: absolute;
  bottom: 2.5rem;
  left: 2.5rem;
  z-index: 30;
  display: flex;
  gap: 0.75rem;
}

.hero-dots-list,
.about-dots-list {
  display: flex !important;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-indicator,
.about-indicator {
  width: 3rem;
  height: 0.375rem;
  border-radius: 9999px;
  background-color: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.5s ease;
  display: block;
}

.slick-active .hero-indicator,
.slick-active .about-indicator {
  background-color: var(--accent);
}

.about-indicator {
  width: 0.625rem;
  height: 0.625rem;
  background-color: var(--slate-200);
}

.slick-active .about-indicator {
  width: 2rem;
}

/* Hide default slick arrows if they appear */
.slick-prev,
.slick-next {
  display: none !important;
}

/* Sections */
.section {
  padding: 6rem 0;
}

.section-white {
  background-color: var(--white);
}

.section-slate {
  background-color: var(--slate-50);
}

.section-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 4rem;
}

.section-badge {
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  display: inline-block;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--slate-900);
  margin-bottom: 1.5rem;
  letter-spacing: -0.05em;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3.75rem;
  }
}

.section-desc {
  font-size: 1.125rem;
  color: var(--slate-600);
}

/* Grid Layouts */
.grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

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

@media (min-width: 768px) {
  .grid-5 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-5 {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* Cards */
.card {
  padding: 2rem;
  border-radius: 1.5rem;
  background-color: var(--slate-50);
  border: 1px solid var(--slate-100);
  box-shadow: var(--shadow-soft);
  transition: all 0.5s ease-out;
}

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

.card-icon-wrapper {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.card:hover .card-icon-wrapper {
  transform: scale(1.1);
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 1rem;
}

.card-desc {
  color: var(--slate-600);
  line-height: 1.6;
}

/* Product Cards */
.product-card {
  position: relative;
  height: 18rem;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition: all 0.5s ease-out;
}

.product-card-large {
  height: 24rem;
  border-radius: 2.5rem;
}

.product-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: var(--shadow-lg);
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.product-card:hover .product-img {
  transform: scale(1.1);
}

.product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.2), transparent);
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
  opacity: 0.8;
}

.product-content {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
}

.product-title {
  color: var(--white);
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.product-card-large .product-title {
  font-size: 1.5rem;
}

.product-info-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  font-weight: 700;
  transition: color 0.3s ease;
}

.product-card:hover .product-info-btn {
  color: var(--accent);
}

/* About Section */
.about-flex {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-flex {
    flex-direction: row;
  }

  .about-text {
    width: 50%;
  }

  .about-visual {
    width: 50%;
  }
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 1rem;
  background-color: var(--slate-50);
  border: 1px solid var(--slate-100);
}

.stat-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background-color: rgba(138, 191, 57, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.stat-info h4 {
  font-weight: 700;
  color: var(--slate-900);
}

.stat-info p {
  font-size: 0.75rem;
  color: var(--slate-500);
}

.about-slider-wrapper {
  position: relative;
}

.about-slider {
  aspect-ratio: 4/3;
  border-radius: 3rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 8px solid var(--slate-50);
  position: relative;
}

.about-slide {
  position: relative;
  aspect-ratio: 4/3;
}

.about-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: var(--white);
}

.about-controls {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 1rem;
  right: 1rem;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.about-ctrl-btn {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate-900);
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  pointer-events: auto;
}

.about-ctrl-btn:hover {
  background: var(--white);
}

.about-indicators {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.about-indicator {
  /* Handled in dots list section */
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1rem;
  margin: -1rem;
  border-radius: 1.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.contact-item:hover {
  background-color: var(--slate-100);
  transform: translateY(-0.25rem);
}

.contact-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  background-color: var(--slate-50);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  flex-shrink: 0;
  color: var(--slate-900);
}

.contact-item:hover .contact-icon {
  background-color: var(--primary);
  color: var(--white);
}

.contact-item.whatsapp:hover .contact-icon {
  background-color: var(--accent);
}

.contact-info h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 0.25rem;
}

.contact-info p {
  color: var(--slate-600);
}

.hours-card {
  padding: 2rem;
  border-radius: 2.5rem;
  background-color: var(--slate-50);
  border: 1px solid var(--slate-100);
  box-shadow: var(--shadow-soft);
  margin-top: 2rem;
}

.hours-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hours-header h4 {
  font-size: 1.25rem;
  font-weight: 700;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--slate-200);
  margin-bottom: 0.75rem;
}

.hours-row.highlight {
  background-color: rgba(138, 191, 57, 0.05);
  margin-left: -1rem;
  margin-right: -1rem;
  padding-left: 1rem;
  padding-right: 1rem;
  border-radius: 0.5rem;
}

.map-wrapper {
  height: 100%;
  min-height: 500px;
  border-radius: 3rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 8px solid var(--white);
  position: relative;
}

.map-iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1);
  transition: filter 0.7s ease;
}

.map-wrapper:hover .map-iframe {
  filter: grayscale(0);
}

/* Footer */
.footer {
  background-color: var(--slate-900);
  color: var(--white);
  padding-top: 6rem;
  padding-bottom: 3rem;
}

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

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-brand p {
  color: var(--slate-400);
  margin: 1.5rem 0;
  line-height: 1.6;
}

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

.social-link {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  background-color: var(--accent);
  color: var(--white);
}

.footer-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

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

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

.footer-links a {
  color: var(--slate-400);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent);
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.newsletter-input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--white);
  font-size: 0.875rem;
  display: block;
  max-width: 100%;
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--accent);
}

.footer-bottom {
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  color: var(--slate-500);
  font-size: 0.875rem;
}

/* Modals & Alerts */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-backdrop.show {
  display: flex;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(8px);
}

.modal-content {
  position: relative;
  width: 100%;
  max-width: 48rem;
  background-color: var(--white);
  border-radius: 2.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  animation: modal-in 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modal-in {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@media (min-width: 768px) {
  .modal-content {
    flex-direction: row;
  }
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 10;
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: var(--white);
  transform: rotate(90deg);
}

.modal-img-wrapper {
  width: 100%;
  height: 15rem;
}

@media (min-width: 768px) {
  .modal-img-wrapper {
    width: 40%;
    height: auto;
  }
}

.modal-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-body {
  padding: 2.5rem;
  flex: 1;
}

.modal-list-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--slate-700);
  margin-bottom: 0.5rem;
}

.modal-list-item:before {
  content: '';
  display: block;
  width: 0.375rem;
  height: 0.375rem;
  background-color: var(--primary);
  border-radius: 9999px;
}

/* Cookie Alert */
.cookie-alert {
  position: fixed;
  bottom: 2rem;
  left: 1rem;
  right: 1rem;
  z-index: 100;
  display: none;
  justify-content: center;
  pointer-events: none;
}

.cookie-alert.show {
  display: flex;
  pointer-events: auto;
}

.cookie-content {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 2rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--slate-100);
  max-width: 32rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  animation: slide-up 0.5s ease-out;
}

button#close-cookie {
  position: absolute;
  right: 1rem;
  top: 1rem;
}

@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--white);
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease-in-out;
  display: block;
  z-index: 40;
}

@media (min-width: 768px) {

  .mobile-menu,
  .md-hide {
    display: none !important;
  }
}

.mobile-menu.show {
  transform: translateY(-100%);
}

.mobile-nav-link {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--slate-900);
  text-decoration: none;
  padding: 0.5rem 0;
}

.mobile-nav-link:hover {
  color: var(--accent);
}

.mobile-lang-option {
  padding: 0.5rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid var(--slate-200);
  background: none;
  font-weight: 700;
  color: var(--slate-600);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.mobile-lang-option.active {
  background-color: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(2.5rem);
  transition: all 1s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(1.25rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-scale-in {
  animation: scaleIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.fixed-menu,
.mobile-controls {
  display: none;
}


/*MOBILE QUERIES*/
@media screen and (max-width: 600px) {
  .navbar-nav {
    display: none;
  }

  .mobile-controls {
    display: flex;
    gap: 1rem;
    align-items: center;
  }

  .menu-toggle {
    background: none;
    border: none;
    color: white;
    width: 40px;
    height: 40px;
  }

  .menu-toggle svg {
    width: 100%;
    height: 100%;
  }

  .fixed-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    width: 100%;
    background: white;
    left: 0;
    top: -500%;
    padding: 10%;
    height: fit-content;
    box-shadow: 0 0 20px 0 black;
    transition: .5s;
    opacity: 0;
    pointer-events: none;
    gap: 1rem;
    align-items: center;
  }

  .fixed-menu.show {
    top: 0;
    opacity: 1;
    pointer-events: all;
  }

  nav.navbar.scrolled .menu-toggle,
  .fixed-menu .menu-toggle {
    color: var(--primary-dark);
  }

  .about-visual {
    max-width: 100%;
  }

  nav.navbar.scrolled .logo {
    max-width: 100px;
  }

  nav.navbar.scrolled .menu-toggle {
    width: 35px;
    height: 35px;
  }

  .fixed-menu .menu {
    list-style: none;
    padding: 0;
    text-decoration: none;
    width: 100%;
  }

  .fixed-menu .menu a {
    text-decoration: none;
    padding: .75rem;
    display: block;
    color: gray;
    width: 100%;
    text-transform: uppercase;
  }

  .fixed-menu .menu li {
    border-bottom: 1px solid var(--slate-200);
    width: 100%;
  }

  .fixed-menu nav {
    width: 100%;
    text-align: center;
  }

  .footer-grid {
    display: flex;
    flex-direction: column;
  }
}