
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  --primary: #5FC0A2;
}
 
body {
    font-family: Poppins;
}

ul {
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
}

.mt-48 { margin-top: 4rem; }
.mt-49 { margin-top: 4.1rem; }
.mt-50 { margin-top: 4.2rem; }
.mt-51 { margin-top: 4.3rem; }
.mt-52 { margin-top: 4.4rem; }
.mt-53 { margin-top: 4.5rem; }
.mt-54 { margin-top: 4.6rem; }
.mt-55 { margin-top: 4.7rem; }
.mt-56 { margin-top: 4.8rem; }
.mt-57 { margin-top: 4.9rem; }
.mt-58 { margin-top: 5rem; }
.mt-59 { margin-top: 5.1rem; }
.mt-60 { margin-top: 5.2rem; }
.mt-61 { margin-top: 5.3rem; }
.mt-62 { margin-top: 5.4rem; }
.mt-63 { margin-top: 5.5rem; }
.mt-64 { margin-top: 5.6rem; }
.mt-65 { margin-top: 5.7rem; }
.mt-66 { margin-top: 5.8rem; }
.mt-67 { margin-top: 5.9rem; }
.mt-68 { margin-top: 6rem; }
.mt-69 { margin-top: 6.1rem; }
.mt-70 { margin-top: 6.2rem; }
.mt-71 { margin-top: 6.3rem; }
.mt-72 { margin-top: 6.4rem; }
.mt-73 { margin-top: 6.5rem; }
.mt-74 { margin-top: 6.6rem; }
.mt-75 { margin-top: 6.7rem; }
.mt-76 { margin-top: 6.8rem; }
.mt-77 { margin-top: 6.9rem; }
.mt-78 { margin-top: 7rem; }
.mt-79 { margin-top: 7.1rem; }
.mt-80 { margin-top: 7.2rem; }
.mt-81 { margin-top: 7.3rem; }
.mt-82 { margin-top: 7.4rem; }
.mt-83 { margin-top: 7.5rem; }
.mt-84 { margin-top: 7.6rem; }
.mt-85 { margin-top: 7.7rem; }
.mt-86 { margin-top: 7.8rem; }
.mt-87 { margin-top: 7.9rem; }
.mt-88 { margin-top: 8rem; }
.mt-89 { margin-top: 8.1rem; }
.mt-90 { margin-top: 8.2rem; }
.mt-91 { margin-top: 8.3rem; }
.mt-92 { margin-top: 8.4rem; }
.mt-93 { margin-top: 8.5rem; }
.mt-94 { margin-top: 8.6rem; }
.mt-95 { margin-top: 8.7rem; }
.mt-96 { margin-top: 8.8rem; }
.mt-97 { margin-top: 8.9rem; }
.mt-98 { margin-top: 9rem; }
.mt-99 { margin-top: 9.1rem; }
.mt-100 { margin-top: 9.2rem; }


.header-menu {
  position: fixed;
  top: 20px;
  z-index: 999;
  width: 100%;
  margin: auto;
}
.navbar {
  background: white;
  padding: 10px;
  border-radius: 20px;
  margin-top: 20px;
  position: relative;
  z-index: 1000;
}
.navbar-nav .nav-link {
  color: #262626;
  font-size: 21px;
}
.navbar-nav .nav-link.active {
  color: var( --primary);
}

.navbar-nav .nav-link:hover {
  color: var( --primary);
}

/* --- HERO SECTION --- */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000;
}

.hero-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.hero-text {
  position: absolute;
  z-index: 2;
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 4rem;
  line-height: 1.2;
  text-shadow: 0 0 20px rgba(0,0,0,0.4);
  max-width: 90%;
}

@media (max-width: 992px) {
  .hero-text {
    font-size: 2.5rem;
  }
}


@media (max-width: 768px) {
  .hero-text {
    font-size: 2.5rem;
    line-height: 3.5rem;
    bottom: 15%;
  }
}

@media (max-width: 576px) {
  .hero-text {
    font-size: 2rem;
    line-height: 3rem;
    bottom: 20%;
  }
}

@media (max-width: 400px) {
  .hero-text {
    font-size: 1.8rem;
    line-height: 2.5rem;
    bottom: 25%;
  }
}

.about-section {
  margin-top: 0;
  padding: 80px 0;
}

.navbar-toggler:focus,
.navbar-toggler:active {
  outline: none;
  box-shadow: none;
  border: none;
}


#datepicker {
  padding: 2px 15px !important;
}
#datepicker::placeholder {
  font-size: 14px !important;
  font-style: italic !important;
}

.booking-container {
  background-color: #e6fff7;
  border-radius: 20px;
  padding: 2rem;
  margin: 2rem auto;
  border: 1px solid #80FFD8;
}

.booking-title {
  text-align: center;
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-size: 2rem;
}

.booking-subtitle {
  text-align: center;
  color: #5E5E5E;
  margin-bottom: 2rem;
  font-weight: 500;
}

.input-section {
  background: white;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var( --primary);
}

.book-now-btn {
  background-color: var( --primary);
  border: none;
  padding: 1rem;
  border-radius: 10px;
  width: 100%;
  color: white;
  font-weight: 700;
  margin-top: 1rem;
  font-size: 1.5rem;
}

.book-now-btn:hover {
  background-color: #45b086;
}

.person-container {
  display: flex;
  gap: 1rem;
}

select {
  border: none !important;
  width: 60px !important;
  padding-right: 0 !important;
}

.divider {
  width: 1px;
  height: 24px;
  background-color: #e0e0e0;
  margin: 0 10px;
}

.form-select {
  padding: 1px 2.25rem 1px .75rem !important;
}

.font-weight-500 {
  font-weight: 500;
}


.service-section {
  background-color: #F3F3F3;
  padding: 4rem 0;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}

.grid-item {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 1/1;
  cursor: pointer;
}

/* Center item styling */
.grid-item.center-item {
  grid-row: span 2;
  aspect-ratio: auto;
  height: calc(100% + 0px);
}

/* Image styling */
.grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.grid-item:hover img {
  transform: scale(1.05);
}

/* Overlay styling */
.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
}

.overlay h2 {
  color: white;
  font-size: 2rem;
  font-weight: 600;
  margin: 0 0 2rem 0;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  text-align: center;
}

/* Responsive design */
@media (max-width: 768px) {
  .grid-container {
      grid-template-columns: 1fr;
      grid-template-rows: auto;
  }

  .grid-item.center-item {
      grid-row: auto;
      aspect-ratio: 1/1;
      height: auto;
  }
}

/* --- ACOMODAÇÕES E SERVIÇOS --- */
#about {
  background: linear-gradient(180deg, #ffffff 0%, #fdfaf3 100%);
  padding: 80px 0;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

#about h2 {
  font-weight: 700;
  color: #3d3d3d;
  font-size: 2rem;
  margin-bottom: 1.2rem;
  position: relative;
}

#about h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
  margin-top: 8px;
}

#about p {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.7;
}

#about ul {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

#about ul li {
  font-size: 1.05rem;
  color: #333;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  gap: 10px;
}

#about ul li::before {
  content: "•";
  color: var(--primary);
  font-size: 1.4rem;
  line-height: 1;
}

#about .col-md-6 {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

#about .col-md-6:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
  #about {
    padding: 60px 15px;
  }

  #about .col-md-6 {
    margin-bottom: 2rem;
  }

  #about h2 {
    text-align: center;
  }
}

.special-offers {
  padding: 60px 0;
}

.special-offers .card {
  border: none;
  transition: transform 0.2s;
  box-shadow: 0px 4px 60px 0px #00346540;
}

.special-offers .card:hover {
  transform: translateY(-5px);
}

.card-img-top {
  height: 240px;
  object-fit: cover;
}

.special-title {
  font-size: 24px;
  color: #3b82f6;
  font-weight: 500;
}


.view-all {
  text-align: center;
  text-decoration: none;
  border: 1px solid #000;
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 20px;
  display: flex;
  align-items: center;
}

.view-all:hover {
  color: #2563eb;
}

.capacity {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #666;
}

.price {
  font-size: 24px;
  font-weight: bold;
}

.price-unit {
  color: #666;
  font-size: 14px;
}

.testimonial-card {
  padding: 20px;
  margin: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.customer-img {
  width: 80px !important;
  height: 80px !important;
  border-radius: 8px;
  object-fit: cover;
}
.star-rating {
  color: #ffc107;
  font-size: 20px;
}
.navigation-buttons {
  text-align: right;
  margin-top: 20px;
}
.custom-nav-btn {
  text-decoration: none;
  border: 1px solid #000;
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 18px;
  background: #fff;
}
.custom-nav-btn:hover {
  background: #f8f9fa;
}


.news-subscribe {
  border: 1px solid #5FC0A2;
}

.btn-success {
  background-color: #5FC0A2;
  font-weight: 600;
}

.footer {
  background-color: #2F6B62;
  color: white;
  padding: 3rem 0;
  margin-top: 4rem;
}

.footer-logo {
  max-width: 150px;
  margin-bottom: 2rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: white;
  text-decoration: none;
  transition: opacity 0.2s;
}

.footer-links a:hover {
  opacity: 0.8;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.9rem;
}

html {
  scroll-behavior: smooth;
}

section, 
div[id] {
  scroll-margin-top: 100px;
}

#about {
  background: linear-gradient(180deg, #fffdf2 0%, #fff8d9 100%);
  padding: 80px 0;
  border-radius: 20px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

#about h2 {
  font-weight: 700;
  color: #d1a200;
  margin-bottom: 20px;
}

#about ul {
  list-style: none;
  padding: 0;
}

#about ul li::before {
  content: "✔";
  color: #5FC0A2;
  margin-right: 8px;
  font-weight: bold;
}

#about p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

/* --- CTA FINAL ANTES DO FOOTER --- */
.final-cta {
  background: linear-gradient(135deg, #f7c600 0%, #ffd84d 100%);
  padding: 70px 20px;
  text-align: center;
  color: #222;
  border-radius: 20px 20px 0 0;
  box-shadow: inset 0 0 20px rgba(0,0,0,0.15);
}

.final-cta h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.final-cta p {
  font-size: 18px;
  margin-bottom: 30px;
}

.final-cta .btn {
  background: #222;
  color: #fff;
  font-weight: 600;
  border-radius: 30px;
  padding: 12px 30px;
  transition: all 0.3s;
}

.final-cta .btn:hover {
  background: #fff;
  color: #222;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}