   * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      body {
        font-family: "Arial", sans-serif;
        background-color: #f5f5f5;
      }

      /* Header com navegação */
      .header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(0.625rem);
        padding: 1rem 2rem;
        z-index: 100;
        display: flex;
        justify-content: space-between;
        align-items: center;
      }

      .logo {
        color: white;
        font-size: 1.5rem;
        font-weight: 700;
        text-decoration: none;
      }

      .nav-links {
        display: flex;
        gap: 2rem;
        list-style: none;
      }

      .nav-links a {
        color: white;
        text-decoration: none;
        transition: opacity 0.3s;
      }

      .nav-links a:hover {
        opacity: 0.7;
      }


      .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;
}

      /* Banner Hero */
      .page-hero {
        position: relative;
        height: 50vh;
        background-image: url("/assets/images/vilacapriho.jpeg");
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 4rem;
      }

      .page-hero::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(
          180deg,
          rgba(0, 0, 0, 0.4) 0%,
          rgba(0, 0, 0, 0.6) 100%
        );
      }

      .hero-title {
        position: relative;
        z-index: 1;
        color: white;
        font-size: clamp(2rem, 5vw, 4rem);
        font-weight: 900;
        text-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, 0.5);
      }

      /* Descrição */
      .description-section {
        max-width: 75rem;
        margin: 4rem auto;
        padding: 0 2rem;
        text-align: center;
      }

      .description-section h2 {
        font-size: 2rem;
        color: #017f82;
        margin-bottom: 1rem;
      }

      .description-section p {
        font-size: 1.1rem;
        color: #3a3a3a;
        line-height: 1.8;
        max-width: 50rem;
        margin: 0 auto;
      }

      /* Seções de Categorias */
      .category-section {
        max-width: 87.5rem;
        margin: 5rem auto;
        padding: 0 2rem;
      }

      .category-header {
        margin-bottom: 2.5rem;
      }

      .category-title {
        font-size: 2.5rem;
        color: #017f82;
        margin-bottom: 0.5rem;
        font-weight: 700;
      }

      .category-subtitle {
        font-size: 1.1rem;
        color: #3a3a3a;
        font-style: italic;
      }

      /* Grid de Cards */
      .cards-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(17.5rem, 1fr));
        gap: 2rem;
      }

      .place-card {
        position: relative;
        background: white;
        border-radius: 0.75rem;
        overflow: hidden;
        cursor: pointer;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        box-shadow: 0 0.25rem 0.9375rem rgba(0, 0, 0, 0.1);
        text-decoration: none;
        color: inherit;
      }

      .place-card:hover {
        transform: translateY(-0.5rem);
        box-shadow: 0 0.75rem 1.875rem rgba(0, 0, 0, 0.2);
      }

      .card-image {
        position: relative;
        height: 13.75rem;
        overflow: hidden;
      }

      .card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
      }

      .place-card:hover .card-image img {
        transform: scale(1.1);
      }

      .card-badge {
        position: absolute;
        top: 1rem;
        right: 1rem;
        background: rgba(255, 255, 255, 0.95);
        padding: 0.4rem 0.8rem;
        border-radius: 1.25rem;
        font-size: 0.85rem;
        font-weight: 600;
        color: #017f82;
      }

      .card-info {
        padding: 1.5rem;
      }

      .card-name {
        font-size: 1.4rem;
        font-weight: 700;
        color: #017f82;
        margin-bottom: 0.5rem;
      }

      .card-location {
        font-size: 0.95rem;
        color: #024f50;
        margin-bottom: 0.8rem;
        display: flex;
        align-items: center;
        gap: 0.4rem;
      }

      .card-description {
        font-size: 0.95rem;
        color: #3a3a3a;
        line-height: 1.6;
      }

      .see-more-btn {
        display: inline-block;
        margin: 3rem auto;
        padding: 1rem 2.5rem;
        background: #333;
        color: white;
        text-decoration: none;
        border-radius: 3.125rem;
        font-weight: 600;
        transition: background 0.3s ease;
      }

      .see-more-btn:hover {
        background: #555;
      }

      /* Footer */
      .footer {
        background: #017f82;
        color: white;
        text-align: center;
        padding: 2rem;
        margin-top: 5rem;
      }

      /* Responsive */
      @media (max-width: 48rem) {
        .header {
          flex-direction: column;
          gap: 1rem;
        }

        .nav-links {
          gap: 1rem;
          font-size: 0.9rem;
        }

        .page-hero {
          height: 40vh;
        }

        .cards-grid {
          grid-template-columns: 1fr;
          gap: 1.5rem;
        }

        .category-section {
          margin: 3rem auto;
        }

        .category-title {
          font-size: 2rem;
        }
        .nav-logo{
          font-size: 0.9rem;
        }
      }

      
