
:root {
  --primary-color: #da1919;
  --primary-dark: #b61515;
  --dark-bg: #111;
  --darker-bg: #0a0a0a;
  --light-text: #eee;
  --gray-text: #ccc;
  --card-bg: #1a1a1a;
  --transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --font-main: "Roboto", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--darker-bg);
  color: var(--light-text);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  display: block;
}

/* Utilities */
.btn {
  display: inline-block;
  padding: 12px 30px;
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: bold;
  background: var(--primary-color);
  color: #fff;
  border-radius: 5px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.btn:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(218, 25, 25, 0.4);
}

.headline {
  font-size: 2.5rem;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  padding-bottom: 20px;
  margin-bottom: 50px;
  letter-spacing: 2px;
  position: relative;
  color: var(--primary-color);
}

.headline::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: var(--light-text);
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Animation Classes */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Section Entrance Animation */
/* IMPORTANTE: animation-fill-mode: forwards garante que o conteúdo
   SEMPRE fique visível após a animação, mesmo sem JavaScript */
@keyframes revealSection {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

section,
header,
#testimonials {
  /* Fallback CSS puro: aparece automaticamente após 0.5s mesmo sem JS */
  animation: revealSection 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.5s both;
}

/* Quando JS carrega, aplica a classe para animar suavemente */
section.section-active,
header.section-active,
#testimonials.section-active {
  /* Garante visibilidade mesmo que a animação CSS ainda não tenha rodado */
  opacity: 1;
  transform: translateY(0);
  animation: none; /* JS assume o controle */
}

@keyframes sectionEntrance {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Navbar */
#navbar {
  width: 100%;
  background: transparent;
  height: 120px; /* Increased from 100px */
  position: fixed;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

#navbar-container {
  width: 90%;
  max-width: 1200px;
  height: 100%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 1.8rem;
  color: #fff;
  transition: var(--transition);
}

.logo {
  display: flex;
  align-items: center;
  height: 100%; /* Ensure full height usage */
}

.logo img {
  height: 100px; /* Increased from 85px */
  width: auto;
  object-fit: contain;
  filter: none; /* Logo original do Condomínio */
}

#navbar-items {
  display: flex;
  list-style: none;
}

#navbar-items li {
  margin-left: 20px;
}

#navbar-items li a {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 500;
  position: relative;
  padding: 5px 0;
}

#navbar-items li a::after {
  content: "";
  width: 0%;
  height: 2px;
  background-color: var(--primary-color);
  position: absolute;
  bottom: 0;
  left: 0;
  transition: width 0.3s ease;
}

#navbar-items li a:hover {
  color: #fff;
}

#navbar-items li a:hover::after {
  width: 100%;
}

.btn-login {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: bold;
}

.btn-login i {
  font-size: 1.2rem;
}

/* Showcase */
#showcase {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background:
    linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)),
    url("/img/fundo.jpg") no-repeat center center/cover;
  border-bottom: 3px solid var(--primary-color);
}

#showcase-container {
  text-align: center;
  max-width: 800px;
  padding: 20px;
}

/* Futuristic Glitch Animation */
@keyframes glitch-skew {
  0% {
    transform: skew(0deg);
  }
  20% {
    transform: skew(-2deg);
  }
  40% {
    transform: skew(2deg);
  }
  60% {
    transform: skew(-1deg);
  }
  80% {
    transform: skew(1deg);
  }
  100% {
    transform: skew(0deg);
  }
}

@keyframes glitch-anim-1 {
  0% {
    clip-path: polygon(0 2%, 100% 2%, 100% 5%, 0 5%);
    transform: translate(-2px);
  }
  20% {
    clip-path: polygon(0 15%, 100% 15%, 100% 15%, 0 15%);
    transform: translate(2px);
  }
  40% {
    clip-path: polygon(0 10%, 100% 10%, 100% 20%, 0 20%);
    transform: translate(-2px);
  }
  60% {
    clip-path: polygon(0 1%, 100% 1%, 100% 2%, 0 2%);
    transform: translate(2px);
  }
  80% {
    clip-path: polygon(0 33%, 100% 33%, 100% 33%, 0 33%);
    transform: translate(-2px);
  }
  100% {
    clip-path: polygon(0 44%, 100% 44%, 100% 44%, 0 44%);
    transform: translate(0);
  }
}

@keyframes glitch-anim-2 {
  0% {
    clip-path: polygon(0 25%, 100% 25%, 100% 30%, 0 30%);
    transform: translate(2px);
  }
  20% {
    clip-path: polygon(0 3%, 100% 3%, 100% 3%, 0 3%);
    transform: translate(-2px);
  }
  40% {
    clip-path: polygon(0 5%, 100% 5%, 100% 20%, 0 20%);
    transform: translate(2px);
  }
  60% {
    clip-path: polygon(0 20%, 100% 20%, 100% 20%, 0 20%);
    transform: translate(-2px);
  }
  80% {
    clip-path: polygon(0 40%, 100% 40%, 100% 40%, 0 40%);
    transform: translate(2px);
  }
  100% {
    clip-path: polygon(0 50%, 100% 50%, 100% 50%, 0 50%);
    transform: translate(0);
  }
}

#showcase-container h2 {
  font-size: 4.5rem; /* Larger size */
  margin-bottom: 30px; /* Space for subtext */
  color: #fff;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  letter-spacing: 5px;
  font-weight: 700;

  /* Animation base */
  animation: glitch-skew 3s infinite linear alternate-reverse;
}

/* Glitch Pseudo-elements */
#showcase-container h2::before,
#showcase-container h2::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent; /* No background to blend with image */
}

#showcase-container h2::before {
  left: 3px;
  text-shadow: -2px 0 #ff00c1; /* Magenta glitch */
  animation: glitch-anim-1 2.5s infinite linear alternate-reverse;
  opacity: 0.8;
}

#showcase-container h2::after {
  left: -3px;
  text-shadow: -2px 0 #00fff9; /* Cyan glitch */
  animation: glitch-anim-2 3s infinite linear alternate-reverse;
  opacity: 0.8;
}

#showcase-container p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: #ccc;
  animation: fadeInUp 1s ease 0.3s backwards;
}

#showcase .btn {
  animation: fadeInUp 1s ease 0.6s backwards;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Sections General */
section {
  padding: 80px 0;
  /* Diz ao browser para pular a renderização de seções fora da tela.
     Isso acelera muito o carregamento inicial da página. */
  content-visibility: auto;
  contain-intrinsic-size: 0 500px; /* Estimativa de altura para evitar pulo de layout */
}

/* A primeira seção visível não deve usar content-visibility */
#destaques, #showcase {
  content-visibility: visible;
}


/* Destaques */
#destaques {
  background: #eee;
  color: #111;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
  padding-bottom: 120px;
}

#destaques .headline::after {
  background: var(--primary-color);
}

#destaques-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.destaques-track {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  cursor: grab;
}

.destaques-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.destaques-nav:hover {
  background: var(--primary-color);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 0 15px var(--primary-color);
}

.destaques-nav.prev {
  left: 10px;
}

.destaques-nav.next {
  right: 10px;
}

.destaques {
  flex: 0 0 calc(33.333% - 14px); /* 3 images per row roughly */
  min-width: 280px;
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
}

.destaques:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Features - Nossas Comodidades */
#features {
  background: #f8f9fa; /* Light background as in image */
  color: #333;
}

#features .headline {
  color: #2c3e50; /* Darker title from image */
}

#features .headline::after {
  background: var(--primary-color);
}

#features-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  width: 95%;
  max-width: 1400px;
  margin: 0 auto;
}

.feature {
  background: #fff; /* White cards */
  padding: 40px 20px;
  border-radius: 10px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature:hover {
  transform: translateY(-8px) scale(1.02);
  background: #fff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: rgba(231, 76, 60, 0.3);
}

.feature i {
  color: #e74c3c; /* Red icons matching the image */
  margin-bottom: 25px;
  display: block;
  transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature:hover i {
  transform: scale(1.1);
}

.feature-title {
  font-size: 1.4rem;
  font-weight: 700;
  display: block;
  margin-bottom: 15px;
  color: #2c3e50;
}

.feature p {
  color: #666;
  font-size: 0.95rem;
}

/* Mensagem de Feedback do Formulário */
.form-message {
  margin-top: 20px;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 600;
  display: none;
  animation: slideUpFade 0.4s ease forwards;
}

.form-message.visible {
  display: block;
}

.form-message.success {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid #10b981;
  color: #10b981;
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.2);
}

.form-message.error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid #ef4444;
  color: #ef4444;
}

@keyframes slideUpFade {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Testimonials */
#testimonials {
  background: linear-gradient(to bottom, #111, #0a0a0a);
  padding: 80px 0;
}

#testimonials-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial {
  background: var(--card-bg);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  flex: 1 1 300px;
  max-width: 350px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.testimonial:hover {
  transform: translateY(-5px);
}

.testimonial-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 20px;
  object-fit: cover;
  border: 3px solid var(--primary-color);
}

.testimonial p {
  font-style: italic;
  color: #ccc;
}

/* Gallery - Improved */
#gallery {
  background: #f4f4f4;
  color: #111;
}

#gallery .headline {
  color: #111;
}
#gallery .headline::after {
  background: var(--primary-color);
}

#gallery-container {
  overflow: hidden;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.gallery-track {
  display: flex;
  gap: 20px;
  padding: 20px 0;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.gallery-nav:hover {
  background: var(--primary-color);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 0 15px var(--primary-color);
}

.gallery-nav.prev {
  left: 10px;
}

.gallery-nav.next {
  right: 10px;
}

/* Gallery Animations */
@keyframes float-tech {
  0% {
    transform: translateY(0) scale(1);
    filter: grayscale(80%) brightness(0.8);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  }
  50% {
    transform: translateY(-10px) scale(1.02);
    filter: grayscale(40%) brightness(1);
    box-shadow: 0 10px 20px rgba(218, 25, 25, 0.3);
    border-color: rgba(218, 25, 25, 0.5);
  }
  100% {
    transform: translateY(0) scale(1);
    filter: grayscale(80%) brightness(0.8);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  }
}

.gallery-image {
  flex: 0 0 calc(33.333% - 14px); /* Show 3 images on desktop */
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.gallery-image:hover {
  transform: scale(1.15);
  z-index: 100 !important;
  border-color: var(--primary-color);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

#gallery .btn {
  display: table;
  margin: 40px auto 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-grid .gallery-image {
  flex: none;
  width: 100%;
  height: 280px;
}

.gallery-grid .gallery-image:hover {
  transform: scale(1.05) translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border-color: var(--primary-color);
}

/* Contact - Entre em Contato */
#contact {
  background: radial-gradient(circle at center, #2c3e50 0%, #000 100%);
  color: #fff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

#contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%),
    linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
  background-size: 100% 2px, 3px 100%;
  pointer-events: none;
  z-index: 1;
}

#contact .headline {
  color: #fff;
}

#contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  align-items: flex-start;
}

#contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.1rem;
  transition: var(--transition);
}

.info-item:hover {
  transform: translateX(5px);
}

.info-item i {
  color: #fff;
  font-size: 1.3rem;
  width: 30px;
}

#map-container {
  margin-top: 20px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
}

#map-container:hover {
  transform: scale(1.02);
}

/* Contact Form */
#contact-form-container {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

#contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.input-group {
  position: relative;
}

#contact-form input,
#contact-form textarea {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#contact-form input:focus,
#contact-form textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary-color);
  box-shadow: 0 0 20px rgba(218, 25, 25, 0.4);
  transform: scale(1.02);
}

#contact-form .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 18px;
  font-weight: 600;
  letter-spacing: 2px;
  background: transparent;
  border: 2px solid var(--primary-color);
  color: #fff;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

#contact-form .btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  transition: all 0.4s ease;
  z-index: -1;
}

#contact-form .btn:hover::before {
  left: 0;
}

#contact-form .btn:hover {
  box-shadow: 0 0 30px var(--primary-color);
}

/* Footer */
#footer {
  background: #000;
  color: #888;
  padding: 40px 0;
  border-top: 2px solid var(--primary-color);
}

.footer-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#footer p {
  margin: 0;
}

#footer p {
  margin: 0;
}

.footer-content {
  display: flex;
  align-items: center;
  gap: 15px;
}

.social-links {
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-icon {
  color: #fff;
  font-size: 1.2rem; /* Reduced from 2rem to fit inline */
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px; /* Reduced from 50px */
  height: 35px; /* Reduced from 50px */
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
  color: #fff;
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 5px 20px rgba(214, 36, 159, 0.5);
  border-color: transparent;
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 5px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 3rem;
  color: #fff;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-close:hover {
  color: var(--primary-color);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  background: transparent;
  padding: 0 20px;
  transition: var(--transition);
  user-select: none;
  z-index: 2001;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
}

.lightbox-nav:hover {
  color: #fff;
  transform: translateY(-50%) scale(1.1);
  background: transparent;
}

.lightbox-prev {
  left: 10px;
}

.lightbox-next {
  right: 10px;
}

/* Navbar Hide Animation */
#navbar {
  transition:
    transform 0.3s ease-in-out,
    background 0.3s ease;
}

#navbar.hidden {
  transform: translateY(-100%);
}

/* Back to Top Button */
#back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--primary-color);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

#back-to-top.visible {
  opacity: 1;
  pointer-events: all;
}

#back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-5px);
}

/* Update Toast and Loading Bar */
.update-toast {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(218, 25, 25, 0.95);
  color: white;
  padding: 12px 25px;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  z-index: 10000;
  font-weight: bold;
  animation: slideUpFade 0.5s ease-out;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  gap: 10px;
  pointer-events: none;
}

#loading-bar-top {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--primary-color);
  width: 0%;
  z-index: 2000;
  transition: width 0.4s cubic-bezier(0.1, 0.7, 1.0, 0.1);
  box-shadow: 0 0 10px var(--primary-color);
}

@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translate(-50%, 20px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}
