@import url('https://fonts.googleapis.com/css2?family=Bitter:ital,wght@0,100..900;1,100..900&family=Oswald:wght@200..700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

header {
    background-color: black;
    color: white;
}

header h1 {
    color: white;
    font-family: "Oswald", sans-serif;
}

.navbar-toggler {
    color: white !important;
    border-color: white !important;
}

.navbar-toggler-icon {
    margin: 20px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='white' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.nav-link {
    color: white !important;
    font-family: "Roboto", sans-serif;
}

.link-hover {
    transition: 0.2s;
}

.link-hover:hover {
    color: #c1272c !important;
    margin-left: 5px;
    margin-right: 5px;
}

/* Estilo para o menu aberto */
.menu-aberto {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

/* Transição suave */
.navbar-collapse {
    transition: all 0.3s ease;
}

/* Estilo para links quando clicados */
#navbarCollapse .nav-link:active {
    transform: scale(0.98);
}

footer a {
    transition: color 0.3s;
}

footer a:hover {
    color: #c1272c !important;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: #c1272c;
    transform: translateY(-3px);
}

footer .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
}

footer .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.subtitulo {
    text-align: center;
    font-family: "Oswald", sans-serif;
    color: #403e3b;
    margin-top: 10px;
}



.produtos {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.produto {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 15px;
    width: 40%;
    max-width: 300px;
    text-align: center;
    transition: transform 0.2s ease;
}

.produto:hover {
    transform: scale(1.03);
}

.produto img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.produto h2 {
    font-size: 18px;
    margin: 10px 0 5px;
}

.produto p {
    font-size: 14px;
    margin: 5px 0;
}

.preco {
    color: green;
    font-weight: bold;
    font-size: 16px;
}

    .paginacao {
      text-align: center;
      margin-top: 30px;
    }

    .paginacao button {
      padding: 10px 15px;
      margin: 0 5px;
      font-size: 14px;
      border: none;
      border-radius: 5px;
      background-color: #007bff;
      color: white;
      cursor: pointer;
    }

    .paginacao button:disabled {
      background-color: #ccc;
      cursor: not-allowed;
    }

    .whatsapp-btn {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #25D366; /* Cor do WhatsApp */
      color: white;
      padding: 15px 20px;
      border-radius: 50px;
      font-size: 16px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.2);
      text-decoration: none;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 1000;
    }

    .whatsapp-btn img {
      width: 25px;
      margin-right: 10px;
    }

    .whatsapp-btn:hover {
      background-color: #128C7E; /* Cor de hover do WhatsApp */
    }

@media screen and (min-width: 768px) {
    .produto {
    width: 50%;
    max-width: 199px;
    margin: 0px 50px 0px 50px;
    }
}