/* Estilo da área escura por trás do modal */
.modal {
    display: none; /* escondido por padrão */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    background-color: rgba(0, 0, 0, 0.6); /* fundo escuro translúcido */
  }
  
  /* Caixa do conteúdo do modal */
  .modal-content {
    background-color: #fff;
    margin: 60px auto;
    padding: 30px;
    border-radius: 16px;
    max-width: 1200px;
    width: 90%;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  }
  .modal-content h2 {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
  }
  .modal-oferta-semana {
    background-color: var(--cor-menu);
    margin: 90px auto;
    padding: 30px;
    border-radius: 16px;
    max-width: 1200px;
    width: 80%;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  }
  .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }
  
  /* Botão de fechar (X) */
  .close-btn {
    color: white;
    font-size: 58px;
    font-weight: bold;
    cursor: pointer;
  }
  .close-btn:hover {
    color: #000;
  }
  .close-btm-home {
    color: var(--cor-menu);
    font-size: 58px;
    font-weight: bold;
    cursor: pointer;
  }
  .close-btm-home:hover {
    color: #000;
  }
  
  /* Grid de produtos dentro do modal */
  .product-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
  }
  
  /* Cartão do produto no modal */
  .product-card-modal {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 12px #ec4401;
    padding: 20px;
    text-align: center;
  }
  
  .product-card-modal img {
    border-radius: 12px;
    margin-bottom: 15px;
    width: 100%;
    max-width: 200px;
  }
  
  .product-card-modal h4 {
    font-size: 20px;
    color: #111;
    margin-bottom: 10px;
  }
  
  .product-card-modal p {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
  }
  
  .product-card-modal .btn {
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    color: #fff;
    display: inline-block;
    margin: 5px;
  }
  
 
  
  .cta {
    margin-top: 16px;
    font-size: 13px;
    color: #333;
    font-weight: bold;
  }
  