/* Estilo inspirado na Shopee */
body
 {
    background-color: #fff3cd;
    font-family: 'Arial', sans-serif;
}
a {
  text-decoration: none;
}

.navbar {
  background: #FAA35C;
  background: linear-gradient(90deg, rgba(250, 163, 92, 1) 0%, rgba(253, 126, 20, 1) 57%, rgba(204, 106, 27, 1) 100%);
  box-shadow: 0 6px 12px rgba(0,0,0,0.4); /* sombra 3D */
  border-bottom: 3px solid #bf360c;
}

#footer {
  background: #FAA35C;
  background: linear-gradient(90deg, rgba(250, 163, 92, 1) 0%, rgba(253, 126, 20, 1) 57%, rgba(204, 106, 27, 1) 100%);
  position: relative;
}

.navbar-brand {
  font-weight: bold;
  font-size: 1.6rem;
  color: #fff !important;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.6); /* relevo */
}

.nav-link {
  color: #fff;
  font-weight: 500;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: #ffe0b2 !important;
  transform: translateY(-2px);
  text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

#login {
  height: 363px;
}

.card {
  border-radius: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0,0,0,0.3); /* efeito 3D */
}

.card-title {
  font-size: 1.1rem;
  font-weight: bold;
}

.btn-primary {
  background-color: #ff5722;
  border: none;
}

.btn-primary:hover {
  background-color: #e64a19;
}

.btn-danger {
  background-color: #d32f2f;
  border: none;
}

.btn-danger:hover {
  background-color: #b71c1c;
}

h1 {
  color: #ff5722;
  font-weight: bold;
  text-align: center;
}

/* Estilo do botão hamburguer */
.navbar-toggler {
  border: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30'
  xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255, 0.9)'
  stroke-width='2' stroke-linecap='round' stroke-miterlimit='10'
  d='M4 7h22M4 15h22M4 23h22'/ %3E%3C/svg%3E");
}

/* Menu mobile expandido */
@media (max-width: 991px) {
  .navbar-collapse {
    background-color: #ff5722; /* Laranja Shopee */
    padding: 1rem;
    border-radius: 0 0 8px 8px;
  }
  .navbar-nav .nav-link {
    color: #fff !important;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  .navbar-nav .nav-link:hover {
    color: #ffe0b2 !important;
    transform: translateY(-2px);
    text-shadow: 0 2px 5px rgba(0,0,0,0.3);
  }
}

/* Banner responsivo estilo Shopee */
#promoBanner img {
  border-radius: 8px;
  object-fit: cover;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);
}

