:root {
  --preto: #000000;
  --branco: #ffffff;
  --cinza-escuro: #585858;
  --cinza-medio: #b9b9b9;
  --cinza-claro: #d8d8d8;
}

* {
  box-sizing: border-box;
}

body {
  background-color: #f8f9fa;
  font-family: "Bahnschrift", sans-serif;
  margin: 0;
  padding: 0;
}

/* NAVBAR RESPONSIVA */
.navbar .container-fluid {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
}

.navbar-brand {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.logo-img {
  height: 40px;
  width: auto;
  max-width: 120px;
}

/* Logo responsiva - sempre visível */
@media (max-width: 768px) {
  .logo-img {
    height: 35px;
    max-width: 100px;
  }
}

@media (max-width: 576px) {
  .logo-img {
    height: 30px;
    max-width: 80px;
  }
}

.logo-login {
  padding-bottom: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}


/* Search container responsivo */
.search-container {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 250px;
  transition: all 0.3s ease;
}

.search-input {
  border-radius: 20px;
  border: none;
  padding: 8px 40px 8px 16px;
  width: 100%;
  font-size: 14px;
  transition: all 0.3s ease;
}

.search-input:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2);
}

.search-button {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
}

.search-button .iconify {
  color: #333 !important;
  font-size: 18px;
}

/* CARDS RESPONSIVOS E ALINHADOS */
.carrossel-container {
  padding: 40px 20px;
  background: var(--branco);
}

.categoria {
  font-size: 24px;
  font-weight: 600;
  color: var(--preto);
  margin-bottom: 16px;
  text-align: center;
}

.cards-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin: 0 auto;
  padding: 16px 0;
  max-width: 1400px;
}


.card {
  width: 360px;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  cursor: pointer;
  flex-shrink: 0;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card:hover img {
  opacity: 0.9;
}
/*
.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card:hover img {
  opacity: 0.9;
}

.card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}
*/
@media (max-width: 576px) {
  .card img {
    height: 350px;
  }
}

.info {
  padding-top: 12px;
}

.nome {
  font-size: 18px;
  color: var(--cinza-escuro);
  font-weight: 400;
  margin: 0;
  line-height: 1.4;
}

.preco {
  font-size: 22px;
  font-weight: 600;
  color: var(--preto);
  margin: 4px 0 0 0;
}

@media (max-width: 576px) {
  .nome {
    font-size: 16px;
  }

  .preco {
    font-size: 20px;
  }
}

/* CATEGORIAS RESPONSIVAS */
.category-section {
  position: relative;
}

.ver-catalogo {
  display: inline-block;
  position: absolute;
  right: 15px;
  top: 10px;
  color: var(--preto);
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
}

.ver-catalogo:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .ver-catalogo {
    position: static;
    display: block;
    text-align: center;
    margin-bottom: 20px;
  }
}

.category-card {
  margin-bottom: 20px;
}

.category-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.category-card:hover img {
  opacity: 0.9;
  transform: scale(1.2);
}

.category-title {
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
}

@media (max-width: 576px) {
  .category-img {
    height: 200px;
  }

  .category-title {
    font-size: 16px;
    left: 10px;
  }
}

/* MENU LATERAL RESPONSIVO */
#menu-dropdown {
  position: fixed;
  top: 0;
  left: -100%;
  width: 300px;
  height: 100vh;
  background-color: var(--branco);
  z-index: 1000;
  box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
  transition: left 0.3s ease;
}

#menu-dropdown.active {
  left: 0;
}

@media (max-width: 576px) {
  #menu-dropdown {
    width: 280px;
  }
}

.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 15px;
  border-bottom: 1px solid #eee;
}

.menu-header h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.menu-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

.menu-categories {
  padding: 0;
}

.menu-category {
  border-bottom: 1px solid #eee;
}

.menu-category-title {
  color: var(--preto);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 15px;
  margin: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.2s ease;
}

.menu-category-title:hover {
  background-color: #f5f5f5;
}

.menu-category-title .iconify {
  transition: transform 0.3s ease;
}

.menu-category.active .menu-category-title .iconify {
  transform: rotate(180deg);
}

.menu-category-items {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.menu-category.active .menu-category-items {
  max-height: 500px;
}

.menu-category-items li {
  padding: 0;
  margin: 0;
}

.menu-category-items a {
  color: var(--cinza-escuro);
  font-size: 14px;
  padding: 12px 15px 12px 30px;
  display: block;
  transition: all 0.2s ease;
  text-decoration: none;
}

.menu-category-items a:hover {
  color: var(--preto);
  background-color: #f9f9f9;
  transform: translateX(5px);
}

/* MODAL DO CARRINHO RESPONSIVO */
.cart-modal {
  position: fixed;
  top: 0;
  right: -100%;
  width: 400px;
  height: 100vh;
  background-color: white;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  z-index: 2000;
  transition: right 0.3s ease;
  overflow-y: auto;
  padding: 20px;
}

.cart-modal.active {
  right: 0;
}

@media (max-width: 576px) {
  .cart-modal {
    width: 100%;
    right: -100%;
  }
}

@media (max-width: 768px) {
  .cart-modal {
    width: 350px;
  }
}

.cart-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.cart-modal-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

.cart-modal-items {
  margin-bottom: 20px;
}

.cart-modal-item {
  display: flex;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  gap: 10px;
}

.cart-modal-item img {
  width: 60px;
  height: 80px;
  object-fit: cover;
  flex-shrink: 0;
}

.cart-modal-item-info {
  flex-grow: 1;
  min-width: 0;
}

.cart-modal-item-name {
  font-size: 14px;
  font-weight: 500;
  margin: 0 0 5px 0;
  line-height: 1.3;
}

.cart-modal-item-price {
  font-size: 12px;
  color: #666;
  margin: 0 0 5px 0;
}

.cart-modal-item-quantity {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.cart-modal-item-quantity button {
  width: 25px;
  height: 25px;
  background-color: #f0f0f0;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-modal-item-remove {
  color: #ff4d4d;
  background: none;
  border: none;
  cursor: pointer;
}

.cart-modal-footer {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid #eee;
}

.cart-modal-total {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
}

.cart-modal-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cart-modal-buttons button {
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

.cart-modal-checkout {
  background-color: var(--preto);
  color: white;
}

.cart-modal-continue {
  background-color: #f0f0f0;
  color: var(--preto);
}

/* OVERLAY */
.overlay,
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  display: none;
}

.overlay.active,
.menu-overlay.active {
  display: block;
}

/* FILTROS RESPONSIVOS */
.filter-btn {
  border-radius: 25px;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .filter-btn {
    font-size: 14px;
    width: 100%;
    margin-bottom: 8px;
  }
}

/* PAGINAÇÃO */
.page-box {
  width: 44px;
  height: 44px;
  border: 2px solid var(--preto);
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.page-box.active {
  background-color: var(--preto);
  color: var(--branco);
}

/* SELOS DE GARANTIA RESPONSIVOS */
.container .iconify.fs-1 {
  font-size: 2rem !important;
}

@media (max-width: 768px) {
  .container .iconify.fs-1 {
    font-size: 1.5rem !important;
  }
}

@media (max-width: 576px) {
  .container .iconify.fs-1 {
    font-size: 1.2rem !important;
  }

  .container .row .fw-bold.fs-5 {
    font-size: 0.9rem !important;
  }

  .container .row .fs-6 {
    font-size: 0.8rem !important;
  }
}

/* SOBRE NÓS RESPONSIVO */
.sobre-nos-img {
  max-width: 75%;
  border-radius: 12px;
  margin: 0 auto;
  display: block;
}

@media (max-width: 768px) {
  section.text-white.py-5 {
    display: none !important;
  }
}

/* FOOTER RESPONSIVO */
.footer-container {
  background-color: var(--preto);
  margin-top: 4rem;
  padding: 2rem 0 0.5rem 0;
  width: 100%;
}

.footer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 2rem 6%;
}

.footer-section {
  flex: 1;
  min-width: 200px;
  color: var(--branco);
}

.footer-section h2 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 500;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.footer-section ul li a,
.footer-bottom a {
  text-decoration: none;
  color: var(--branco);
  transition: color 0.3s ease-in-out;
}

.footer-section ul li a:hover,
.footer-bottom a:hover {
  color: var(--cinza-medio);
}

.footer-logo {
  max-width: 120px;
  height: auto;
}

.footer-bottom {
  color: var(--branco);
  text-align: center;
  margin-top: 1rem;
  padding: 0 15px;
}

.footer-bottom hr {
  margin-bottom: 0.5rem;
  border-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 4%;
  }

  .footer-section {
    width: 100%;
    margin-bottom: 20px;
  }
}

/* PRODUTO RESPONSIVO */
.img-principal {
  width: 100%;
  max-width: 630px;
  height: auto;
  object-fit: cover;
}

.img-miniatura {
  width: 80px;
  height: 80px;
  object-fit: cover;
  margin-bottom: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 4px;
}

.img-miniatura:hover {
  border-color: var(--preto);
}

.tamanho-btn {
  width: auto;
  min-width: 44px;
  height: 44px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: transparent;
  margin-right: 8px;
  margin-bottom: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tamanho-btn:hover {
  background-color: #f0f0f0;
  border-color: #999;
  transform: translateY(-2px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.tamanho-btn.selecionado {
  background-color: #000;
  color: #fff;
  border-color: #000;
}

.cor-opcao {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid transparent;
  margin-right: 8px;
  margin-bottom: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cor-opcao:hover {
  transform: scale(1.1);
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.2);
}

.cor-opcao.selecionada {
  border: 2px solid var(--preto);
}

.quantidade-input {
  width: 99px;
  height: 44px;
  border: 1px solid #ccc;
  border-radius: 8px;
  text-align: center;
}

.btn-adicionar {
  width: 272px;
  height: 44px;
  border-radius: 8px;
  background-color: var(--preto);
  color: var(--branco);
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-adicionar:hover {
  background-color: #333;
}

/*------ MODELO DE BOTTON -------------*/
.btn-modelo {
  width: 272px;
  height: 44px;
  border-radius: 8px;
  background-color: var(--preto);
  color: var(--branco);
  border: none;
  cursor: pointer;
  margin-right: 0.3rem;
  transition: background-color 0.3s ease;
}

.btn-modelo:hover {
  background-color: #333;
}

.btn-cancelar {
  width: 136px;
  height: 44px;
  border-radius: 8px;
  background-color: var(--cinza-claro);
  color: var(--preto);
  border: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-cancelar:hover {
  background-color: var(--cinza-medio);
}
/*-------------------------------------*/


@media (max-width: 768px) {
  .btn-adicionar {
    width: 100%;
  }

  .quantidade-input {
    width: 80px;
  }
}

/* CHECKOUT RESPONSIVO */
.checkout-title {
  font-size: 24px;
  font-weight: 600;
  color: #000;
}

.checkout-card {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 32px;
  width: 100%;
  max-width: 956px;
}

.checkout-card h4 {
  font-size: 24px;
  font-weight: 600;
  color: #000;
  margin-bottom: 24px;
}

.form {
  background: var(--branco);
}

.form-label {
  font-size: 18px;
  font-weight: 300;
  color: #000;
}

.form-control {
  border-radius: 8px;
  border: 2px solid #b0b0b0;
  font-size: 16px;
  color: #666;
}

.form-control::placeholder {
  color: #b0b0b0;
}

.pagamento-opcao {
  border: 2px solid #d3d3d3;
  border-radius: 8px;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  cursor: pointer;
  width: 100%;
  max-width: 624px;
}

.pagamento-opcao.selected {
  border-color: #666;
}

.pagamento-opcao input[type="radio"] {
  margin-top: 5px;
}

.pagamento-texto strong {
  font-size: 20px;
  font-weight: 600;
  color: #000;
}

.pagamento-texto p {
  font-size: 18px;
  font-weight: 300;
  margin: 0;
  color: #666;
}

/* CARRINHO RESPONSIVO */
.card-produto {
  width: 100%;
  max-width: 1020px;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.card-produto img {
  width: 131px;
  height: 175px;
  object-fit: cover;
  flex-shrink: 0;
}

.produto-info {
  flex-grow: 1;
  padding: 0 20px;
  min-width: 0;
}

.produto-info h5 {
  font-size: 20px;
  font-weight: 400;
  color: var(--preto);
  margin: 0 0 8px 0;
}

.produto-info p {
  margin: 0;
  font-size: 16px;
  font-weight: 300;
  color: #4b4b4b;
}

.produto-info .preco {
  font-size: 24px;
  font-weight: 400;
  color: var(--preto);
}

.resumo-compra {
  width: 100%;
  max-width: 501px;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 20px;
  background: var(--branco) ;
}

.resumo-compra h4 {
  font-size: 24px;
  font-weight: 600;
  color: var(--preto);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.resumo-item {
  display: flex;
  justify-content: space-between;
  font-size: 20px;
  margin-bottom: 10px;
}

.resumo-item span:first-child {
  color: #4b4b4b;
  font-weight: 400;
}

.resumo-item span:last-child {
  color: var(--preto);
}

.resumo-total {
  margin-top: 20px;
  border-top: 1px solid #ddd;
  padding-top: 10px;
}

.btn-avancar {
  width: 100%;
  height: 44px;
  border-radius: 8px;
  background-color: var(--preto);
  color: var(--branco);
  font-weight: 500;
  font-size: 16px;
  border: none;
  margin-top: 24px;
  cursor: pointer;
}

.link-comprar {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 12px;
  font-size: 16px;
  font-weight: 300;
  color: black;
  text-decoration: underline;
  cursor: pointer;
}

@media (max-width: 768px) {
  .card-produto {
    flex-direction: column;
    text-align: center;
  }

  .produto-info {
    padding: 15px 0;
    width: 100%;
  }

  .checkout-card {
    padding: 16px;
  }

  .form-label {
    font-size: 16px;
  }

  .pagamento-texto strong {
    font-size: 18px;
  }

  .pagamento-texto p {
    font-size: 16px;
  }
}

/* Logo sempre visível em modo responsivo */
@media (max-width: 992px) {
  .navbar .container-fluid > a[href="index.html"] img {
    height: 35px !important;
    display: block !important;
  }
}

@media (max-width: 576px) {
  .navbar .container-fluid > a[href="index.html"] img {
    height: 30px !important;
    display: block !important;
  }
}

/* Corrigir alinhamento dos cards */
.cards-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin: 0 auto;
  padding: 16px 0;
  max-width: 1400px;
}

/* Garantir que os cards tenham tamanho consistente */
.card {
  width: 360px;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  cursor: pointer;
  flex-shrink: 0;
}

/* Responsividade melhorada para cards */
@media (max-width: 1200px) {
  .cards-wrapper {
    justify-content: center;
  }

  .card {
    width: 320px;
  }
}

@media (max-width: 768px) {
  .card {
    width: 300px;
  }

  .cards-wrapper {
    gap: 15px;
  }
}

@media (max-width: 576px) {
  .card {
    width: 280px;
  }

  .cards-wrapper {
    gap: 10px;
    padding: 10px;
  }
}

/* ANIMAÇÕES */
@keyframes slideIn {
  from {
    transform: translateX(-20px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.menu-category-items li {
  animation: slideIn 0.3s ease forwards;
  opacity: 0;
}

.menu-category-items li:nth-child(1) {
  animation-delay: 0.05s;
}
.menu-category-items li:nth-child(2) {
  animation-delay: 0.1s;
}
.menu-category-items li:nth-child(3) {
  animation-delay: 0.15s;
}
.menu-category-items li:nth-child(4) {
  animation-delay: 0.2s;
}
.menu-category-items li:nth-child(5) {
  animation-delay: 0.25s;
}
.menu-category-items li:nth-child(6) {
  animation-delay: 0.3s;
}
.menu-category-items li:nth-child(7) {
  animation-delay: 0.35s;
}

/* DROPDOWN TOGGLE */
.dropdown-toggle::after {
  display: none !important;
}

/* LOGO CENTRALIZADA EM TODAS AS PÁGINAS */
.navbar-brand {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

/* BARRA DE BUSCA ANIMADA */
.search-container {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 250px;
  transition: all 0.3s ease;
}

.search-input {
  border-radius: 20px;
  border: none;
  padding: 8px 40px 8px 16px;
  width: 100%;
  font-size: 14px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.9);
}

.search-input:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 1);
  transform: scale(1.02);
}

.search-button {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  transition: all 0.3s ease;
}

.search-button:hover {
  transform: translateY(-50%) scale(1.1);
}

.search-button .iconify {
  color: #333 !important;
  font-size: 18px;
}

/* BOTÃO DE PESQUISA MOBILE */
.mobile-search-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .search-container {
    display: none !important;
  }

  .mobile-search-btn {
    display: block;
  }
}

/* MODAL DE PESQUISA MOBILE */
.search-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 3000;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding-top: 100px;
}

.search-modal.active {
  display: flex;
}

.search-modal-content {
  background: white;
  padding: 20px;
  border-radius: 12px;
  width: 90%;
  max-width: 400px;
  position: relative;
}

.search-modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

.search-modal-input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  margin-bottom: 15px;
}

.search-modal-btn {
  width: 100%;
  padding: 12px;
  background: #000;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
}

/* FOOTER RESPONSIVO MELHORADO */
@media (max-width: 768px) {
  .footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 4%;
    gap: 1.5rem;
  }

  .footer-section {
    width: 100%;
    margin-bottom: 15px;
  }

  .footer-section h2 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
  }

  .footer-section ul li {
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
  }

  .footer-logo {
    max-width: 100px;
  }

  .footer-bottom {
    padding: 0 10px;
    font-size: 0.8rem;
  }
}

@media (max-width: 576px) {
  .footer {
    padding: 1rem 3%;
    gap: 1rem;
  }

  .footer-section h2 {
    font-size: 1rem;
    margin-bottom: 0.6rem;
  }

  .footer-section ul li {
    font-size: 0.8rem;
    margin-bottom: 0.2rem;
  }

  .footer-logo {
    max-width: 80px;
  }

  .footer-bottom {
    font-size: 0.7rem;
  }
}

/* CHECKOUT/CARRINHO RESPONSIVO MELHORADO */
.produtos-checkout-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
  min-height: 200px; /* Altura mínima para evitar layout quebrado */
}

.produto-checkout-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: white;
  min-height: 120px; /* Altura mínima consistente */
}

.produto-checkout-img {
  width: 80px;
  height: 100px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}

.produto-checkout-placeholder {
  width: 80px;
  height: 100px;
  background: #f8f9fa;
  border: 1px solid #ddd;
  border-radius: 6px;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #999;
  text-align: center;
  flex-shrink: 0;
}

.produto-checkout-info {
  flex-grow: 1;
  min-width: 0;
}

.produto-checkout-nome {
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 5px 0;
  color: #333;
}

.produto-checkout-preco {
  font-size: 14px;
  color: #666;
  margin: 0 0 5px 0;
}

.produto-checkout-quantidade {
  font-size: 14px;
  color: #888;
  margin: 0;
}

@media (max-width: 768px) {
  .produto-checkout-item {
    flex-direction: column;
    text-align: center;
    padding: 12px;
  }

  .produto-checkout-img,
  .produto-checkout-placeholder {
    width: 60px;
    height: 80px;
    align-self: center;
  }

  .produto-checkout-info {
    width: 100%;
  }

  .produto-checkout-nome {
    font-size: 14px;
  }

  .produto-checkout-preco,
  .produto-checkout-quantidade {
    font-size: 12px;
  }
}

@media (max-width: 576px) {
  .produtos-checkout-container {
    gap: 15px;
  }

  .produto-checkout-item {
    padding: 10px;
  }

  .produto-checkout-img {
    width: 50px;
    height: 70px;
  }
}