.notification {
    background-color: #4caf50; 
    color: white;
    padding: 15px;
    margin-bottom: 15px;
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: center;
    height: 80px;
    font-size: 1.5em; /* Ajuste o valor conforme necessário */
}
.primeiro {
            font-family: 'Oswald', sans-serif;
            font-size: 3rem;
            text-align: center;
            color: #006400;
            margin-top: 20px;
        }
h1 {
            font-family: 'Oswald', sans-serif;
            font-size: 3rem;
            text-align: center;
            color: #006400;
            margin-top: 20px;
        }
        p.fst-italic {
    font-size:0.9;  /* ou experimenta 0.7rem ou 12px para ainda menor */
    text-align: center;
}
h2 {
            font-family: 'Oswald', sans-serif;
            font-size: 3rem;
            text-align: center;
            color: #006400;
            margin-top: 40px;
        }
    
        p {
            font-family: 'Oswald', sans-serif;
            color: #006400;
        }
    .contact-form button {
      background-color: #006400;

    }
    .surpresa {
            font-family: 'Oswald', sans-serif;
            font-size: 1.7rem;
            text-align: center;
            color: black;
            margin-top: 20PX;
            margin-bottom: 80px;
  
        }
        
.linha-verde {
  width: 100%;
  height: 4px;
  background-color: #006400;
  margin: 0 auto;
}
.subcategorias {
  padding-left: 0;
  margin-bottom: 30px;

}

.subcategorias h5 {
  color: #006400;
  margin-bottom: 15px;
  font-family: 'Oswald';
}
.subcategorias h5  {
  color: #006400;
  margin-bottom: 15px;
  font-family: 'Oswald';

}

.subcategorias ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.subcategorias li {
  margin-bottom: 0px;
  font-family: 'Oswald';

}

.subcategorias a {
  color: #006400;
  font-weight: 500;
  text-decoration: none;
  padding: 4px 0;
  display: inline-block;
  transition: color 0.2s ease-in-out;
  font-family: 'Oswald';

}

.subcategorias a:hover {
  color: #006400;
  text-decoration: underline;

  font-family: 'Oswald';

}
.bold{
    font-weight: bold;
}
.card {
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 20px rgba(0,0,0,0.2);
}

.card-img-top {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  object-fit: cover;
  height: 180px;
  width: 100%;
  cursor: pointer;
  display: block;
}

.card-body {
  padding: 1rem;
  text-align: center;
}

.card-title {
  font-weight: 600;
  font-size: 1rem;
  color: #333;
  margin-bottom: 0.5rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: 'Oswald';
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
  color: #006400;
}

button.add-to-cart {
  background-color: #006400;
  border: none;
  color: white;
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease;
  font-family: 'Oswald';
}

button.add-to-cart:hover {
  background-color: #006400;
}
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: #198754;
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  z-index: 9999;
  animation: fadeOut 5s forwards;
}

@keyframes fadeOut {
  0%   { opacity: 1; }
  90%  { opacity: 1; }
  100% { opacity: 0; display: none; }
}
@media (max-width: 768px) {
  h1, h2, .primeiro {
    font-size: 2rem;
  }

  .surpresa {
    font-size: 1.3rem;
    margin-bottom: 40px;
  }

  p.fst-italic {
    font-size: 0.8rem;
    padding: 0 10px;
  }

  .notification {
    width: 90%;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    font-size: 1rem;
    height: auto;
    padding: 10px;
  }

  .card-img-top {
    height: 150px;
  }

  .card-title {
    font-size: 0.9rem;
  }

  .price {
    font-size: 1rem;
  }

  button.add-to-cart {
    width: 100%;
    padding: 0.6rem;
    font-size: 0.95rem;
  }

  .subcategorias h5 {
    text-align: center;
  }

  .subcategorias ul {
    text-align: center;
  }
}