/* style.css */

/* ============================
   Estilos globais e background
   ============================ */
   body {
    background-color: #7a787d;
    background-image: url('./imgs/print_desk.png');
    font-family: Arial, sans-serif;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    margin: 0;
    padding: 0;
  }
  
  /* ============================
     Banner de Cookies
     ============================ */
  .cookie-banner {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #f1f1f1;
    padding: 30px;
    text-align: center;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    max-width: 700px;
    width: calc(100% - 40px);
    border-top-right-radius: 30px;
    border-top-left-radius: 30px;
    z-index: 1000;
  }
  
  .cookie-banner h1 {
    margin: 0 0 10px;
    font-size: 24px;
    color: #333;
  }
  
  .cookie-banner p {
    margin: 0 0 20px;
    line-height: 1.6em;
    color: #515151;
  }
  
  /* Botões */
  .cookie-banner button {
    background: #4CAF50;
    color: #fff;
    padding: 13px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    min-width: 200px;
    display: block;
    margin: 0 auto 10px;
    transition: background 0.2s;
  }
  
  .cookie-banner button:hover {
    background: #45a049;
  }
  
  .cookie-banner button.outline {
    background: transparent;
    color: #4caf50;
    border: 1px solid #4caf50;
  }
  
  .cookie-banner button.outline:hover {
    background: transparent !important;
    opacity: 0.8;
  }
  
  /* ============================
     Responsivo – Tablet
     ============================ */
  @media (max-width: 997px) {
    body {
      background-image: url('./imgs/print_tablet.png');
      background-position: top left;
      background-size: cover;
    }
  }
  
  /* ============================
     Responsivo – Mobile
     ============================ */
  @media (max-width: 676px) {
    body {
      background-image: url('./imgs/print_mobile.png');
      background-position: top left;
      background-size: cover;
    }
  
    .cookie-banner {
      padding: 24px;
      width: calc(100% - 20px);
      border-top-right-radius: 20px;
      border-top-left-radius: 20px;
    }
  
    .cookie-banner h1 {
      font-size: 20px;
    }
  
    .cookie-banner button {
      min-width: 100%;
      padding: 12px;
    }
  }
  