/* Reset e Variáveis */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Prevenir overflow em todos os elementos */
*:not(html):not(body) {
  max-width: 100%;
}

html,
body {
  overflow-x: hidden;
  max-width: 100vw;
}

:root {
  --bg-dark: #000000;
  --bg-section-alt: #0a0a0a;
  --text-light: #ffffff;
  --text-gray: #cccccc;
  --neon-cyan: #00ffff;
  --neon-purple: #8a2be2;
  --card-bg: #ffffff;
  --card-text: #000000;
  --border-gray: #333333;
  --font-main: "Orbitron", monospace;
}

body {
  font-family: var(--font-main);
  background: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.nav-logo h1 {
  font-size: 1.8rem;
  font-weight: 700;
}

.nav-menu {
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: var(--text-gray);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--neon-cyan);
  transform: scale(1.1);
}

.nav-link.active {
  color: var(--neon-cyan);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple));
  box-shadow: 0 0 10px var(--neon-cyan);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  background: none;
  border: none;
}

.bar {
  width: 25px;
  height: 3px;
  background: var(--neon-cyan);
  margin: 3px 0;
  transition: 0.3s;
}

/* Dropdown nav */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: inherit;
  text-decoration: none;
}

.dropdown-arrow {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.dropdown.active .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  display: none;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.95);
  border: 1px solid var(--neon-cyan);
  border-radius: 8px;
  z-index: 10;
  min-width: 180px;
  padding: 10px 0;
  top: 100%;
  left: 0;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-item {
  display: block;
  padding: 10px 20px;
  color: var(--text-gray);
  text-decoration: none;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.dropdown-item:hover {
  background-color: rgba(0, 255, 255, 0.1);
  color: var(--neon-cyan);
  border-left-color: var(--neon-cyan);
  transform: translateX(5px);
}

/* Hero Section */
.hero-section {
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("img/background.webp") center / cover;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  background-attachment: fixed;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 25% 25%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(138, 43, 226, 0.1) 0%, transparent 50%);
  z-index: 2;
}

.hero-content {
  text-align: center;
  z-index: 10;
  padding: 0 20px;
  position: relative;
}

.hero-logo-container {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-logo-container::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 255, 255, 0.5) 0%, rgba(138, 43, 226, 0.4) 50%, transparent 70%);
  animation: logo-pulse 3s ease-in-out infinite;
  z-index: 1;
}

.hero-logo-container::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(138, 43, 226, 0.6) 0%, rgba(0, 255, 255, 0.4) 50%, transparent 70%);
  animation: logo-pulse-reverse 3s ease-in-out infinite;
  z-index: 1;
}

.hero-logo {
  max-width: 400px;
  width: 100%;
  height: auto;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.hero-logo:hover {
  transform: scale(1.05);
}

.hero-subtitle {
  font-size: clamp(1.2rem, 3vw, 2rem);
  margin-bottom: 2rem;
  color: var(--text-gray);
  transition: color 0.3s ease;
}

.hero-subtitle:hover {
  color: var(--neon-purple);
}

.cta-button {
  background: transparent;
  border: 2px solid var(--neon-cyan);
  color: var(--neon-cyan);
  padding: 1rem 2rem;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-main);
}

.cta-button:hover {
  background: var(--neon-cyan);
  color: var(--bg-dark);
  transform: translateY(-3px) scale(1.05);
}

/* Sections */
.section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 5rem 0;
  position: relative;
  z-index: 5;
  background: var(--bg-dark);
}

.section-alt {
  background: var(--bg-section-alt);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.section-title {
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 900;
  text-align: center;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.section-title:hover {
  transform: scale(1.05);
}

.section-subtitle {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--text-gray);
  transition: color 0.3s ease;
}

.section-subtitle:hover {
  color: var(--neon-cyan);
}

/* Bebidas Categories */
.bebidas-category {
  margin-bottom: 4rem;
  opacity: 1;
  transform: translateY(0);
  transition: all 0.5s ease;
}

.bebidas-category.hidden {
  display: none;
}

.bebidas-category.revealing {
  opacity: 0;
  transform: translateY(30px);
}

.bebidas-category.revealed {
  opacity: 1;
  transform: translateY(0);
}

.bebidas-subtitle {
  text-align: center;
  margin: 0 0 2rem 0;
  font-size: 2rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  padding-bottom: 1rem;
}

.bebidas-subtitle::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, var(--neon-purple), var(--neon-cyan));
  box-shadow: 0 0 10px var(--neon-purple);
}

/* Cards Grid - Sistema padronizado */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* Mobile: 2 cards por linha */
@media (max-width: 768px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

/* Muito pequeno: 1 card por linha */
@media (max-width: 480px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--card-bg);
  color: var(--card-text);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  width: 100%;
  max-width: 350px;
  justify-self: start;
}

.marketplace-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(0, 255, 255, 0.3);
}

.card-image {
  width: 100%;
  height: 250px;
  object-fit: contain;
  object-position: center;
  background: #f8f8f8;
  padding: 10px;
  transition: transform 0.3s ease;
}

.card:hover .card-image {
  transform: scale(1.05);
}

.card-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.card:hover .card-title {
  color: var(--neon-cyan);
}

.card-ml {
  font-size: 1rem;
  color: #666;
  margin-bottom: 0.5rem;
}

.card-price {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--neon-purple);
  margin-top: auto;
}

.hidden {
  display: none;
}

/* Load More Button */
.load-more-container {
  text-align: center;
  margin-top: 3rem;
}

.load-more-btn {
  background: transparent;
  border: 2px solid var(--neon-purple);
  color: var(--neon-purple);
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-main);
  border-radius: 5px;
}

.load-more-btn:hover {
  background: var(--neon-purple);
  color: var(--bg-dark);
  transform: translateY(-3px) scale(1.05);
}

/* Reservas Section */
.reservas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.form-container {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 10px;
}

.reservation-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-input,
.form-textarea {
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid var(--border-gray);
  color: var(--text-light);
  padding: 1rem;
  font-size: 1rem;
  font-family: var(--font-main);
  transition: all 0.3s ease;
  border-radius: 5px;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--neon-cyan);
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.form-input:hover,
.form-textarea:hover {
  border-color: var(--neon-purple);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  background: var(--neon-cyan);
  color: var(--bg-dark);
  border: none;
  padding: 1rem;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-main);
  border-radius: 5px;
}

.form-submit:hover {
  background: var(--neon-purple);
  transform: translateY(-2px);
}

.map-container {
  height: 500px;
  border: 2px solid var(--neon-cyan);
  overflow: hidden;
  border-radius: 10px;
}

.map-iframe {
  filter: grayscale(100%) invert(92%) contrast(83%);
  transition: filter 0.3s ease;
}

.map-iframe:hover {
  filter: grayscale(0%) invert(0%) contrast(100%);
}

/* Footer */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border-gray);
  padding: 3rem 0 1rem;
  position: relative;
  z-index: 5;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section {
  text-align: center;
}

.footer-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.footer-title:hover {
  transform: scale(1.05);
}

.footer-title i {
  margin-right: 0.5rem;
}

.footer-text {
  color: var(--text-gray);
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.footer-text:hover {
  color: var(--neon-cyan);
}

.footer-text a {
  color: inherit;
  text-decoration: none;
}

.footer-text a:hover {
  color: var(--neon-cyan);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social-link {
  color: var(--text-gray);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.social-link:hover {
  color: var(--neon-cyan);
  transform: scale(1.1);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-gray);
}

.copyright {
  color: #666;
  transition: color 0.3s ease;
}

.copyright:hover {
  color: var(--neon-cyan);
}

/* Neon Effects - Fade Suave do Brilho */
.neon-text-cyan {
  color: var(--neon-cyan);
  opacity: 1;
  animation: neon-glow-cyan 3s ease-in-out infinite alternate;
}

.neon-text-purple {
  color: var(--neon-purple);
  opacity: 1;
  animation: neon-glow-purple 3s ease-in-out infinite alternate;
}

.neon-glow-cyan {
  box-shadow: 0 0 3px var(--neon-cyan), 0 0 6px var(--neon-cyan);
}

.neon-glow-purple {
  box-shadow: 0 0 3px var(--neon-purple), 0 0 6px var(--neon-purple);
}

/* Animações de Brilho Neon - Sem piscar o texto e sem overflow */
@keyframes neon-glow-cyan {
  0% {
    text-shadow: none;
  }
  100% {
    text-shadow: 0 0 4px var(--neon-cyan), 0 0 8px var(--neon-cyan), 0 0 12px var(--neon-cyan), 0 0 16px
      var(--neon-cyan);
  }
}

@keyframes neon-glow-purple {
  0% {
    text-shadow: none;
  }
  100% {
    text-shadow: 0 0 4px var(--neon-purple), 0 0 8px var(--neon-purple), 0 0 12px var(--neon-purple), 0 0 16px
      var(--neon-purple);
  }
}

/* Animations */
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

.animate-pulse {
  animation: pulse 3s infinite;
}

/* Particle animations */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-15px) rotate(180deg);
    opacity: 0.7;
  }
}

@keyframes float-slow {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
    opacity: 0.7;
  }
}

@keyframes float-fast {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-10px) rotate(180deg);
    opacity: 0.7;
  }
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(45deg, var(--neon-cyan), var(--neon-purple));
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(45deg, var(--neon-purple), var(--neon-cyan));
}

/* Combos section specific styling */
#combos {
  background: var(--bg-dark);
}

#combos .section-title {
  color: var(--neon-purple);
}

#combos .bebidas-subtitle {
  color: var(--neon-cyan);
}

/* Animations do logo */
@keyframes logo-pulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.6;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.3;
  }
}

@keyframes logo-pulse-reverse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.4;
  }
  50% {
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0.7;
  }
}

/* Developer Credit */
.developer-credit {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 0.8rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.developer-credit p {
  margin: 0;
  text-transform: lowercase;
  color: #666;
}

.developer-credit a {
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.developer-credit a:hover {
  color: var(--neon-cyan);
}

.developer-credit .red-dot {
  color: #ff0000;
  font-weight: bold;
}

.developer-credit .red-heart {
  color: #ff0000 !important;
}

.developer-credit strong {
  font-weight: 600;
  color: #ffffff;
}

/* Mobile: mover para o footer */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.98);
    width: 100%;
    text-align: left;
    transition: 0.3s;
    padding: 1rem 0;
    backdrop-filter: blur(15px);
    border-right: 1px solid rgba(0, 255, 255, 0.2);
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav-menu.active {
    left: 0;
  }

  /* TODOS OS BOTÕES MOBILE COM MESMO ESTILO E TAMANHO */
  .nav-link-primary {
    color: var(--neon-cyan) !important;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    margin: 0.5rem 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    border-radius: 8px;
    display: block;
    width: calc(100% - 2rem);
    min-height: 60px;
    box-sizing: border-box; /* Adicionado para garantir tamanho consistente */

    /* BORDAS NEON COM FADE */
    border: 2px solid transparent;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)) padding-box,
      linear-gradient(45deg, var(--neon-cyan), var(--neon-purple)) border-box;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3), inset 0 0 10px rgba(0, 255, 255, 0.1);
    animation: mobile-nav-glow 2s ease-in-out infinite alternate;
  }

  .nav-link-primary:hover {
    background: linear-gradient(rgba(0, 255, 255, 0.1), rgba(138, 43, 226, 0.1)) padding-box,
      linear-gradient(45deg, var(--neon-cyan), var(--neon-purple)) border-box;
    transform: translateX(5px) scale(1.02);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5), inset 0 0 15px rgba(0, 255, 255, 0.2);
  }

  /* DROPDOWN TOGGLE - MESMO ESTILO DOS OUTROS BOTÕES */
  .dropdown-toggle.nav-link-primary {
    color: var(--neon-cyan) !important;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    margin: 0.5rem 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: calc(100% - 2rem);
    min-height: 60px;
    box-sizing: border-box; /* Adicionado para garantir tamanho consistente */

    /* MESMA BORDA NEON */
    border: 2px solid transparent;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)) padding-box,
      linear-gradient(45deg, var(--neon-cyan), var(--neon-purple)) border-box;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3), inset 0 0 10px rgba(0, 255, 255, 0.1);
    animation: mobile-nav-glow 2s ease-in-out infinite alternate;
  }

  .dropdown-toggle.nav-link-primary:hover {
    background: linear-gradient(rgba(0, 255, 255, 0.1), rgba(138, 43, 226, 0.1)) padding-box,
      linear-gradient(45deg, var(--neon-cyan), var(--neon-purple)) border-box;
    transform: translateX(5px) scale(1.02);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5), inset 0 0 15px rgba(0, 255, 255, 0.2);
  }

  /* Animação de fade para as bordas neon */
  @keyframes mobile-nav-glow {
    0% {
      box-shadow: 0 0 5px rgba(0, 255, 255, 0.2), inset 0 0 5px rgba(0, 255, 255, 0.05);
    }
    100% {
      box-shadow: 0 0 15px rgba(0, 255, 255, 0.4), 0 0 25px rgba(138, 43, 226, 0.2), inset 0 0 10px
        rgba(0, 255, 255, 0.1);
    }
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .nav-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* Dropdown mobile melhorado */
  .dropdown-menu {
    position: static;
    display: none;
    background: rgba(138, 43, 226, 0.1);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 6px;
    box-shadow: inset 0 0 10px rgba(138, 43, 226, 0.2);
    padding: 0;
    margin: 0.5rem 1rem 1rem 1rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    width: calc(100% - 2rem);
  }

  .dropdown-menu.active {
    display: block;
    max-height: 350px;
    opacity: 1;
    padding: 0.5rem 0;
  }

  .dropdown-item {
    padding: 0.75rem 1.5rem;
    border-left: none;
    color: var(--text-gray);
    font-size: 0.9rem;
    position: relative;
    display: block;
    transition: all 0.3s ease;
    border-radius: 4px;
    margin: 0.2rem 0.5rem;
  }

  .dropdown-item:hover {
    background-color: rgba(138, 43, 226, 0.2);
    color: var(--neon-purple);
    transform: translateX(5px);
    box-shadow: 0 0 8px rgba(138, 43, 226, 0.3);
  }

  .dropdown-item:not(:last-child)::after {
    content: "";
    position: absolute;
    bottom: -0.1rem;
    left: 1rem;
    right: 1rem;
    height: 1px;
    background: rgba(138, 43, 226, 0.2);
  }

  .dropdown-toggle .dropdown-arrow {
    transition: transform 0.3s ease;
  }

  .dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
    color: var(--neon-purple);
  }

  .reservas-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .map-container {
    height: 300px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  .section-title {
    font-size: 3rem;
  }

  .hero-section {
    background-attachment: scroll;
  }

  .card-image {
    height: 200px;
  }

  .hero-logo {
    max-width: 300px;
  }

  .hero-logo-container::before {
    width: 300px;
    height: 300px;
  }

  .hero-logo-container::after {
    width: 240px;
    height: 240px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .card-content {
    padding: 1rem;
  }

  .form-container {
    padding: 1.5rem;
  }

  .card-image {
    height: 180px;
  }

  .hero-logo {
    max-width: 250px;
  }

  .hero-logo-container::before {
    width: 240px;
    height: 240px;
  }

  .hero-logo-container::after {
    width: 192px;
    height: 192px;
  }

  .nav-link-primary {
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
    margin: 0.3rem 0.5rem;
  }

  .dropdown-toggle.nav-link-primary {
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
    margin: 0.3rem 0.5rem;
  }

  .dropdown-item {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }
}
