    body {
      margin: 0;
      font-family: 'Poppins', sans-serif;
      background: #0e0e0e;
      color: #fff;
      scroll-behavior: smooth;
    }
    header {
      background: linear-gradient(to right, #000, #111);
      padding: 50px 20px 80px;
      text-align: center;
    }
    header h1 {
      font-size: 3rem;
      margin: 0;
      background: linear-gradient(90deg, #d3a525e0, #fff, #d3a525e0);
      background-size: 200% auto;
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
      animation: shine 3.7s linear infinite;
    }
    p.ícone {
    font-size: 50px;
    margin: 0 auto 10px;
    }
    @keyframes shine {
      0% { background-position: 200% center; }
      100% { background-position: -200% center; }
    }
    li {
    list-style: none;
    padding: 10px 15px;
    margin: 10px 0;
    background: #00000054;
    border-radius: 20px;
    text-align: center;
}
    header p {
      color: #aaa;
      font-size: 1.2rem;
    }
    nav {
      background: transparent;
      display: flex;
      justify-content: center;
      gap: 40px;
      padding: 20px;
      position: sticky;
      top: 0;
      z-index: 999;
      backdrop-filter: blur(10px);
    }
    nav a {
      color: #fff;
      text-decoration: none;
      font-weight: 500;
      position: relative;
    }
    nav a::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      background: #d3a525e0;
      bottom: -5px;
      left: 0;
      transition: width 0.3s;
    }
    nav a:hover::after {
      width: 100%;
    }
    html {
      scroll-behavior: smooth;
    }

    .hero {
      background: url('https://images.pexels.com/photos/3993448/pexels-photo-3993448.jpeg?auto=compress&cs=tinysrgb&w=1600&fit=crop') center/cover no-repeat;
      height: 95vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      position: relative;
      overflow: hidden;
      border-bottom-left-radius: 550px 50px;
      border-bottom-right-radius: 550px 60px;
    }
    .hero::after {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0,0,0,0.6);
    }
    .hero-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      position: relative;
      z-index: 1;
    }
    .hero h1 {
      position: relative;
      text-align: center;
      font-size: 4rem;
      color: #fff;
      z-index: 1;
      animation: fadeInUp 1s ease forwards;
    }
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(40px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .li {
    text-align: center;
    list-style: none;
    padding: 10px 25px;
    border-radius: 21px;
    background: #0000002e;
    margin: 10px;
    }
    .section {
      padding: 80px 20px;
      max-width: 1200px;
      margin: auto;
      opacity: 0;
      transform: translateY(40px);
      transition: all 0.6s ease;
    }
    .section.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .section h2 {
      text-align: center;
      font-size: 2rem;
      margin-bottom: 40px;
      position: relative;
    }
    .section h2::after {
      content: '';
      width: 60px;
      height: 4px;
      background: #d3a525e0;
      display: block;
      margin: 10px auto 0;
    }
    p.text {
    text-align: center;
    }
    .plans {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
    }
    .plan {
      background: #1a1a1a;
      padding: 30px;
      border-radius: 15px;
      text-align: center;
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .plan:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    }
    .plan h3 {
      margin-top: 0;
      color: #d3a525e0;
    }
    .cta a {
      display: inline-block;
      background: #d3a525e0;
      color: #000;
      padding: 12px 30px;
      text-decoration: none;
      border-radius: 30px;
      font-weight: 600;
      transition: background 0.3s;
    }
    .cta a:hover {
      color: #FFF;
    }

    .comodidades-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 30px;
      justify-items: center;
      align-items: center;
      margin-top: 40px;
    }

    .comodidade-item, .servico-item {
      text-align: center;
      color: #ddd;
    }

    .comodidade-item i, .servico-item i {
      margin-bottom: 15px;
      color: #d3a525e0; /* Cor dourada suave */
    }

    .parallax-section {
      position: relative;
      height: 700px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .carousel-item {
  display: none;
  animation: fadeIn 1s ease forwards;
}

.carousel-item.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}


.parallax-section::before {
      content: "";
      background-image: url('https://images.pexels.com/photos/3993456/pexels-photo-3993456.jpeg?auto=compress&cs=tinysrgb&w=1600&fit=crop');
      background-size: cover;
      background-position: center;
      position: absolute;
      top: 0; left: 0;
      width: 100%;
      height: 130%;
      z-index: -1;
      transform: translateY(-20%);
      will-change: transform;
    }

.parallax-content {
      background: rgba(0,0,0,0.6);
      padding: 40px;
      border-radius: 20px;
      color: #fff;
      max-width: 600px;
      text-align: center;
    }

.parallax-content h2 {
      font-size: 2.5rem;
      margin-bottom: 20px;
      color: #d3a525e0;
    }

    .servicos-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 30px;
      justify-items: center;
      align-items: center;
      margin-top: 40px;
    }

    .servico-item {
      text-align: center;
    }

    .servico-item img {
      margin-bottom: 15px;
    }

    .servicos-carousel {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 60px auto;
  overflow: hidden;
}

.carousel-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-item {
  min-width: 100%;
  text-align: center;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.carousel-item.active {
  opacity: 1;
  transform: translateX(0);
}

.carousel-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

.carousel-nav span {
  cursor: pointer;
  font-size: 2rem;
  color: #d3a525e0;
  user-select: none;
  padding: 10px;
  transition: transform 0.3s;
}

.carousel-nav span:hover {
  transform: scale(1.2);
}


    .fixed-cta {
      position: relative;
      bottom: 50px;
      margin-top: 50px;
      right: 20px;
      background: #d3a525e0;
      color: #000;
      padding: 15px 77px;
      border-radius: 30px;
      font-weight: bold;
      text-decoration: none;
      box-shadow: 0 4px 10px rgba(0,0,0,0.3);
      transition: transform 0.3s;
      z-index: 999;
    }
    .fixed-cta:hover {
      transform: scale(1.05);
      color: #FFF;
    }
    .whatsapp-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background: #25D366;
      color: white;
      padding: 15px;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      font-size: 24px;
      text-align: center;
      text-decoration: none;
      box-shadow: 0 4px 10px rgba(0,0,0,0.3);
      transition: transform 0.3s;
      z-index: 999;
    }
    .whatsapp-button:hover {
      transform: scale(1.1);
    }
    footer {
      background: #111;
      color: #666;
      text-align: center;
      padding: 30px;
      font-size: 0.9rem;
    }

    /* --- RESPONSIVIDADE --- */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 3rem;
  }
  .plans {
    grid-template-columns: 1fr;
  }
  .parallax-content {
    max-width: 80%;
    padding: 20px;
  }
}

@media (max-width: 768px) {
  nav {
    flex-wrap: wrap;
    gap: 20px;
  }
  .hero {
    height: 80vh;
    border-radius: 0;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  .fixed-cta {
    padding: 12px 50px;
  }
  .plans {
    grid-template-columns: 1fr;
  }
  .comodidades-grid {
    grid-template-columns: 1fr 1fr;
  }
  .section.visible ul {
    padding: 0;
}
}

@media (max-width: 480px) {
  nav {
    flex-direction: column;
    gap: 10px;
  }
  .hero h1 {
    font-size: 1.8rem;
  }
  .fixed-cta {
    padding: 10px 40px;
    margin: 60px auto;
  }
  .parallax-content h2 {
    font-size: 2rem;
  }
  .comodidades-grid {
    grid-template-columns: 1fr;
  }
  .carousel-nav span {
    font-size: 1.5rem;
  }
}

/* Menu Hamburguer */
.hamburger {
  display: none;
  cursor: pointer;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  flex-direction: column;
  gap: 5px;
}

.hamburger div {
  width: 30px;
  height: 3px;
  background-color: #d3a525e0;
  transition: 0.4s;
  border-radius: 2px;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  background: rgb(0 0 0 / 67%);;
  position: fixed;
  top: 0;
  right: -100%;
  width: 50%;
  height: 100%;
  padding: 0 20px;
  z-index: 1000;
  transition: right 0.3s ease-in-out;
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 1.5rem;
  margin: 10px 0;
}

.hamburger.open div:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open div:nth-child(2) {
  opacity: 0;
}

.hamburger.open div:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  nav {
    display: none;
  }
}
