html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  background-color: #ffcc00;
  color: #fff;
  font-family: 'Roboto', sans-serif;
  overflow-x: hidden;
}

.container {
  flex: 1;
}

.logo {
  max-height: 60px;
}

.card-loja {
  background-color: #0f5f3f;
  border-radius: 15px;
  padding: 20px;
  color: white;
  flex: 1 1 100%;
  max-width: 100%;
  margin-bottom: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.loja-title {
  font-size: 1.2rem;
  font-weight: normal;
}

.loja-title .filial {
  font-weight: bold;
}

.btn-pedido {
  margin: 10px 0;
}

.card-loja a.bi {
  color: #000;
  text-decoration: none;
}


@media (min-width: 768px) {
  .card-loja {
    flex: 1 1 30%;
    max-width: 30%;
  }
}

.lojas-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.btn-pedido {
  display: inline-block;
  background-color: white;
  color: black;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  padding: 0.375rem 0.75rem;
  border-radius: 0.25rem;
  transition: background-color 0.3s ease;
}

.btn-pedido:hover {
  background-color: #128C7E;
  color: white;
}

.loja-title {
  font-size: 1.2rem;
}

.loja-title .filial {
  font-weight: bold;
}

.footer {
  background-color: #E64545;
  text-align: center;
  padding: 10px 0;
  font-size: 0.9rem;
  color: white;
}

.dev {
  display: block;
  font-size: 0.8rem;
  margin-top: 5px;
  color: #fff;
  text-decoration: none;
}

a {
  text-decoration: none !important;
  color: inherit;
}

a:focus, a:active {
  outline: none;
  box-shadow: none;
}

#carouselFlores {
  height: 75vh;
  overflow: hidden;
}

@media (max-width: 767px) {
  #carouselFlores {
    height: 40vh;
  }
}

body > footer {
  margin-top: auto;
}


.instagram-icon {
  color: #E64545;
  transition: color 0.3s ease;
}

.instagram-username {
  color: #E64545;
  transition: color 0.3s ease;
}

.instagram-container:hover .instagram-icon,
.instagram-container:hover .instagram-username {
  color: #ff0000;
  text-decoration: none; 
}

.instagram-container {
  cursor: pointer;
}

.bi-geo-alt-fill, .bi-whatsapp {
  transition: color 0.3s ease;
}

.bi-geo-alt-fill:hover, .bi-whatsapp:hover {
  color: #E64545 !important;
}

