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

  body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
  }

  header {
    background: url('/imagens/lencois-983055_1280.jpg') no-repeat center center/cover;
    height: 1000px;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
  }  

  header h1 {
    font-size: 2rem;
  }

  section {
    padding: 40px 20px;
    max-width: 1000px;
    margin: 0 auto;
  }

  .valores {
    background-color: #e0e0e0;
  }

  footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
  }

  #passeios {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 40px;
  }
  
  .card {
    background-color: #f5f5f5;
    padding: 16px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  .card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 8px;
  }
  
  .card h3 {
    margin: 12px 0 8px;
    font-size: 1.2rem;
  }
  
  .card p {
    font-size: 0.95rem;
    color: #555;
  }
  
  .card .preco {
    display: block;
    margin-top: 10px;
    font-weight: bold;
    color: #008000;
  }
  
  @media (max-width: 768px) {
    #passeios {
      grid-template-columns: 1fr;
    }
  }

  #pacotes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 60px 40px;
    background-color: #fafafa;
  }
  
  .pacote-card {
    background-color: #ffffff;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    text-align: center;
  }
  
  .pacote-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }
  
  .pacote-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  .pacote-card h3 {
    font-size: 1.3rem;
    margin: 16px 0 8px;
    color: #222;
  }
  
  .pacote-card p {
    font-size: 1rem;
    color: #555;
    margin: 0 16px 16px;
  }
  
  .pacote-card .preco {
    font-size: 1.2rem;
    color: #008000;
    font-weight: bold;
    margin-bottom: 16px;
  }
  
  /* Responsivo */
  @media (max-width: 768px) {
    #pacotes {
      grid-template-columns: 1fr;
    }
  }  

  .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }

  #passeios {
    background-image: url('https://imgs.search.brave.com/A3IgmIwVhLvE8aZor8h8tOScvSbKhkKtmfwrgSPO9DQ/rs:fit:860:0:0:0/g:ce/aHR0cHM6Ly9pbWdt/ZC5uZXQvaW1hZ2Vz/L3YxL2d1aWEvMTYw/NDQ5MC9zb2JyZXZv/by1ub3MtbGVuY29p/cy1tYXJhbmhlbnNl/cy5qcGc');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 60px 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    min-height: 100vh; /* <-- Adicione isso */
  }
  
  
  #passeios .card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.2s ease;
  }
  
  #passeios .card:hover {
    transform: translateY(-5px);
  }
  
  #passeios .card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
  }
  
  #passeios .card h3 {
    margin: 12px 0 4px;
    font-size: 1.2rem;
    color: #222;
  }
  
  #passeios .card p {
    font-size: 0.95rem;
    margin: 0 16px 8px;
    color: #555;
  }
  
  #passeios .preco {
    display: block;
    font-weight: bold;
    color: #008000;
    font-size: 1.1rem;
    margin-bottom: 16px;
  }
  
  /* Responsivo: 1 card por linha abaixo de 768px */
  @media (max-width: 768px) {
    #passeios {
      grid-template-columns: 1fr;
    }
  }
  

  #tituloPasseios {
    text-align: center;
    margin-bottom: 20px;
    margin-top: 30px;
  }

  #tituloPacotes {
    text-align: center;
    margin-top: 30px;
  }