body {
  font-family: 'Rubik Mono One', sans-serif;
  background: linear-gradient(to bottom, #5e1914 0%, #b65e31 70%, #12674a 100%);
  color: #ffffff;
  margin: 0;
  padding: 0;
}


.navbar {
  background: linear-gradient(90deg, #5e1914, #b65e31);
   border-top: 5px double #93e9be;
  border-bottom: 5px double #93e9be;
  padding: 0.5rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  top: 0;
  z-index: 99999;
  position: relative;
  box-shadow: 0 0 20px #00000088;
}

.navbar-brand {
  font-family: 'Monoton', cursive;
  color: #ffce1b;
  font-size: 2rem;
  letter-spacing: 2px;
  text-shadow: 2px 2px #12674a;
}

.navbar-nav {
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-family: 'Rubik Mono One', sans-serif;
  color: #93e9be;
  text-decoration: none;
  font-size: 1rem;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: none;
  outline: none;
}

.nav-link:hover {
  color: #ffce1b ;
  text-shadow: 0 0 5px #ffce1b;
  transform: scale(1.05);
}

.nav-link.active {
  color: #ffce1b !important;
  text-shadow: 0 0 6px #ffce1b;
}


.agenda-title {
  font-family: 'Monoton', cursive;
  font-size: 3rem;
  color: #ffce1b;
  margin: 2rem auto;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.agenda-section p {
  text-align: center;
  font-size: 1.2rem;
  color: #e5d5b8;
  font-family: 'Rubik Mono One', sans-serif;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px #00000088;
}

.lp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  padding: 2rem;
  max-width: 1200px;
  margin: auto;
}

.lp-cover {
  background-color: #b65e31;
  border: 3px solid #ffce1b;
  position: relative;
  overflow: visible;
  transition: transform 0.7s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 20px #00000080;
  aspect-ratio: 1 / 1;
  cursor: pointer;
  margin-top: 200px;
  
}

.lp-cover:hover,
.lp-cover:focus-within {
  transform: translateY(-10px);
  box-shadow: 0 0 25px #ffce1b88;
}

.lp-cover::before {
  content: "";
  position: absolute;
  top: -223px;
  left: 50%;
  transform: translateX(-50%) translateY(20px) scale(0);
  width: 325px;
  height: 325px;
  background:
    radial-gradient(circle at center, #353434 80%, #2f2d2d 100%),
    repeating-radial-gradient(circle, #696363 10px, #333131 20px, #181818 5px);
  border-radius: 50%;
  z-index: 1;
  transition: transform 0.4s ease-out;
  box-shadow: inset 0 0 0 2px #b0f4e6;
  background-blend-mode: overlay;
}

.lp-cover::after {
  content: "";
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  background: #93e9be;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 3;
}

.lp-cover:hover::before,
.lp-cover:focus-within::before {
  transform: translateX(-50%) scale(1);
}

.lp-cover:hover::after,
.lp-cover:focus-within::after {
  opacity: 1;
  transform: translateX(-50%) translateY(-10px);
}


.lp-cover img {
  display: block;
  width: 100%;
  object-fit: cover;
  border-bottom: 3px dotted #ffce1b;
  position: relative;
  z-index: 2;
}

.lp-info {
  background-color: #12674a;
  padding: 1rem;
  text-align: center;
  border-top: 2px solid #ffce1b;
}

.lp-info h3 {
  color: #ffce1b;
  margin-bottom: 0.5rem;
  font-family: 'Monoton', cursive;
  font-size: 1.5rem; 
}

.lp-info p {
  color: #e5d5b8;
  font-size: 0.95rem;
}

footer {
  background: linear-gradient(90deg, #b65e31, #5e1914);
  color: #e5d5b8;
  text-align: center;
  padding: 2rem 1rem;
  font-size: 1rem;
  font-family: 'Rubik Mono One', sans-serif;
  border-top: 4px solid #93e9be; 
  letter-spacing: 1px;
}

footer a {
  color: #ffce1b;
  text-decoration: none;
  font-weight: bold;
}

footer a:hover {
  text-shadow: 0 0 5px #ffce1b;
  text-decoration: underline;
}

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

@media (max-width: 900px) {
  .navbar-nav {
    display: flex !important; 
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 1rem;
  }

  .nav-link {
    font-size: 0.9rem;
    padding: 0.25rem 0.5rem;
  }
}

.lp-cover::before {
  transform: translateX(-50%) translateY(20px) scale(0);
  transition: transform 0.4s ease-out;
}

.lp-cover:hover::before,
.lp-cover:focus-within::before {
  transform: translateX(-50%) translateY(20px) scale(1);
}

@media (hover: none) and (pointer: coarse) {
  .lp-cover::before {
    transform: translateX(-50%) translateY(20px) scale(1) !important;
    transition: none !important;
  }
}


