body {
      background-color: #000;
      color: #fff;
      font-family: 'Segoe UI', sans-serif;
    }

    nav {
      border-bottom: 1px solid rgba(255, 215, 0, 0.3);
      background-color: rgba(0, 0, 0, 0.85);
    }

    .navbar-brand img {
      height: 50px;
    }

    .whatsapp-float {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      width: 60px;
      height: 60px;
      background-color: #25d366;
      border-radius: 50%;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      display: flex;
      justify-content: center;
      align-items: center;
      transition: transform 0.3s;
    }

    .whatsapp-float:hover {
      transform: scale(1.1);
    }

    .whatsapp-float img {
      width: 35px;
      height: 35px;
    }

    @media (max-width: 600px) {
      .whatsapp-float {
        width: 50px;
        height: 50px;
      }

      .whatsapp-float img {
        width: 30px;
        height: 30px;
      }
    }

    .principal {
      height: 100vh;
      background-size: cover;
      background-position: center;
      animation: slide-imagens 15s infinite;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
      flex-direction: column;
    }
     #historia p {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.1rem;
    line-height: 1.8;
  }

    #galeria img {
  transition: transform 0.3s ease;
  cursor: pointer;
}
    #galeria img:hover {
  transform: scale(1.03);
}

    @keyframes slide-imagens {
      0% {
        background-image: url('img1.jpg');
      }

      33% {
        background-image: url('img2.jpg');
      }

      66% {
        background-image: url('img3.jpg');
      }

      100% {
        background-image: url('img1.jpg');
      }
    }

    .principal h1 {
      font-size: 3rem;
      color: #d4af37;
      font-family: Georgia;
    }

    .principal p {
      font-size: 1.2rem;
    }

    .botao-dourado {
      background-color: #d4af37;
      color: #000;
      border: none;
      border-radius: 20px;
      padding: 10px 20px;
    }

    section {
      padding: 60px 0;
    }

    .item-carrossel img {
      height: 300px;
      object-fit: cover;
      border-radius: 10px;
    }

    .texto-dourado {
      color: #d4af37;
    }

    footer {
      background-color: #000000;
      padding: 20px 0;
    }

    .divisor {
      height: 2px;
      background: #d4af37;
      margin: 40px 0;
    }