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

body {
  font-family: "Arial", sans-serif;
  background-color: #f5f5f5;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #017f82;
  backdrop-filter: blur(0.625rem);
  z-index: 1000;
  padding: 1rem 0;
  box-shadow: 0 0.125rem 1.25rem rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: 87.5rem;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.0625rem;
}

.nav-back {
  color: white;
  text-decoration: none;
  padding: 0.5rem 1.5rem;
  border: 0.125rem solid rgba(255, 255, 255, 0.3);
  border-radius: 2rem;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.nav-back:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

/* Hero Banner */
.hero-banner {
  position: relative;
  height: 60vh;
  background-image: url("/assets/images/bg1.jpg");
  background-size: cover;
  background-position: center;
  margin-top: 4rem;
}

.hero-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.6) 100%
  );
}

.hero-content {
  position: absolute;
  bottom: 3rem;
  left: 0;
  right: 0;
  z-index: 1;
  max-width: 87.5rem;
  margin: 0 auto;
  padding: 0 2rem;
  color: white;
}

.place-category {
  display: inline-block;
  background: rgba(1, 127, 130, 0.9);
  padding: 0.5rem 1.2rem;
  border-radius: 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.place-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  text-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, 0.5);
  margin-bottom: 0.5rem;
}

.place-location {
  font-size: 1.3rem;
  opacity: 0.95;
  text-shadow: 0 0.125rem 0.625rem rgba(0, 0, 0, 0.5);
}

/* Galeria de Imagens */
.gallery-section {
  max-width: 87.5rem;
  margin: 3rem auto;
  padding: 0 2rem;
}

.gallery-slider {
  position: relative;
  width: 100%;
  height: 31.25rem;
  overflow: hidden;
  border-radius: 0.75rem;
  box-shadow: 0 0.5rem 1.875rem rgba(0, 0, 0, 0.15);
}

.slider-container {
  display: flex;
  transition: transform 0.5s ease;
  height: 100%;
}

.slider-image {
  min-width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.slider-btn:hover {
  background: white;
  transform: translateY(-50%) scale(1.1);
}

.slider-btn-prev {
  left: 1rem;
}

.slider-btn-next {
  right: 1rem;
}

.slider-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: white;
  width: 1.875rem;
  border-radius: 0.375rem;
}

/* Conteúdo Principal */
.main-content {
  max-width: 87.5rem;
  margin: 3rem auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}

.content-left {
  background: white;
  padding: 2.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 0.25rem 0.9375rem rgba(0, 0, 0, 0.1);
}

.section-title {
  font-size: 2rem;
  color: #017f82;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.description-text {
  font-size: 1.1rem;
  color: #3a3a3a;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12.5rem, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  align-items: start;
  gap: 1rem;
}

.feature-icon {
  font-size: 1.5rem;
  color: #017f82;
}

.feature-text h4 {
  color: #017f82;
  margin-bottom: 0.3rem;
}

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

/* Sidebar */
.content-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-box {
  background: white;
  padding: 2rem;
  border-radius: 0.75rem;
  box-shadow: 0 0.25rem 0.9375rem rgba(0, 0, 0, 0.1);
}

.info-box h3 {
  font-size: 1.3rem;
  color: #017f82;
  margin-bottom: 1.5rem;
}

.info-item {
  display: flex;
  align-items: start;
  gap: 1rem;
  margin-bottom: 1.2rem;
  padding-bottom: 1.2rem;
  border-bottom: 0.0625rem solid #eee;
}

.info-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.info-icon {
  font-size: 1.3rem;
  color: #017f82;
  min-width: 1.5625rem;
}

.info-text {
  flex: 1;
}

.info-label {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 0.2rem;
}

.info-value {
  color: #333;
  font-weight: 500;
}

/* Botões de Ação */
.action-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.btn-action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1.2rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-maps {
  background: #4285f4;
  color: white;
}

.btn-maps:hover {
  background: #3367d6;
  transform: translateY(-0.125rem);
  box-shadow: 0 0.375rem 1.25rem rgba(66, 133, 244, 0.3);
}

.btn-whatsapp {
  background: #25d366;
  color: white;
}

.btn-whatsapp:hover {
  background: #1fb854;
  transform: translateY(-0.125rem);
  box-shadow: 0 0.375rem 1.25rem rgba(37, 211, 102, 0.3);
}

.btn-icon {
  font-size: 1.4rem;
}

/* Menu/Cardápio */
.menu-section {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 0.125rem solid #eee;
}

.menu-items {
  display: grid;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 1rem;
  padding: 1rem;
  flex-wrap: wrap;
  background: #f9f9f9;
  border-radius: 0.5rem;
}

.menu-item-info h4 {
  color: #333;
  margin-bottom: 0.3rem;
}

.menu-item-info p {
  color: #666;
  font-size: 0.9rem;
}

.menu-item-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: #017f82;
  min-width: 8rem;
}

/* Footer */
.footer {
  background: #017f82;
  color: white;
  text-align: center;
  padding: 2rem;
  margin-top: 5rem;
}

/* Responsive */
@media (max-width: 60.5rem) {
  .main-content {
    grid-template-columns: 1fr;
  }

  .gallery-slider {
    height: 21.875rem;
  }

  .hero-banner {
    height: 50vh;
  }

  .content-left,
  .info-box {
    padding: 1.5rem;
  }
  .nav-logo {
    font-size: 1rem;
  }
  .nav-back{
    font-size: 0.8rem;
  }
}

@media (max-width: 40rem) {
  .gallery-slider {
    height: 15.625rem;
  }

  .slider-btn {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.2rem;
  }

  .hero-content {
    bottom: 1.5rem;
  }

  .place-title {
    font-size: 2rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }
}
