/* Estilo da janela modal */
body .modalAge {
      display: flex;
      justify-content: center;
      align-items: center;
}

.modalAge {
      display: flex !important;
      justify-content: center !important;
      align-items: center !important;
      position: fixed !important;
      top: 0 !important;
      left: 0 !important;
      width: 100% !important;
      height: 100% !important;
      background: rgba(0, 0, 0, 0.7) !important;
      z-index: 9999 !important;
    }
    
    .modalAge-content {
      background-color: #fff !important;
      padding: 25px !important;
      border-radius: 12px !important;
      width: 90% !important;
      max-width: 400px !important;
      text-align: center !important;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2) !important;
      position: relative !important;
    }
    
    /* Animação de zoom */
    @keyframes zoomIn {
      0% {
        transform: scale(0.8);
        opacity: 0;
      }
      100% {
        transform: scale(1);
        opacity: 1;
      }
    }
    
    /* Botões */
    .modalAge-buttons {
      display: flex;
      justify-content: center;
      gap: 15px;
      margin-top: 20px;
    }
    
    .btnAge {
      padding: 12px 25px;
      font-size: 14px;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.3s ease;
      width: 80px;
      font-weight: bold;
    }
    
    .btnAge-yes {
      background: linear-gradient(135deg, #81BFA8, #819F8F);
      color: white;
    }
    
    .btnAge-no {
      background: linear-gradient(135deg, #C4BEAC, #6B634C);
      color: white;
    }
    
    .btnAge:hover {
      transform: scale(1.05);
    }
    
    .btnAge-yes:hover {
      background: linear-gradient(135deg, #45a049, #1B5E20);
    }
    
    .btnAge-no:hover {
      background: linear-gradient(135deg, #e53935, #B71C1C);
    }

    /* Bottom POP UP wines */
    .modalWinesPopUp-buttons {
      display: flex;
      justify-content: center;
      gap: 15px;
      margin-top: 20px;
    }
      
    .btnWinesPopUpTR {
      padding: 12px 25px;
      font-size: 12px;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.3s ease;
      width: 160px;
      font-weight: bold;
    }
      
    .btnWineTR {
      background: linear-gradient(135deg, #54F4C6, #54F4C6);
      color: black;
    }
      
    .btnWineCatalog {
      background: linear-gradient(135deg, #B3B5BB, #B3B5BB);
      color: black;
    }
      
    .btnWinesPopUpTR:hover {
      transform: scale(1.05);
    }
      
    .btnWineTR:hover {
      background: linear-gradient(135deg, #54F4C6, #93A184);
    }
      
    .btnWineCatalog:hover {
      background: linear-gradient(135deg, #B3B5BB, #817F75);
    }