/* 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: 16px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 26px 28px;
    text-align: center;
    box-shadow: 0 18px 40px rgba(2, 8, 23, 0.28);
    max-width: 760px;
    width: calc(100% - 32px);
    border-radius: 24px;
    border: 1px solid rgba(125, 211, 252, 0.35);
    z-index: 1000;
  }
  .cookie-banner h1 {
    margin: 0 0 10px;
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
  }
  
  .cookie-banner p {
    margin: 0 0 20px;
    line-height: 1.5em;
    color: #475569;
    font-size: 15px;
  }
  
  /* Botões */
  .cookie-banner button {
    background: linear-gradient(90deg, #0284c7, #06b6d4);
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    min-width: 220px;
    display: block;
    margin: 0 auto 10px;
    transition: transform 0.15s ease, filter 0.2s ease;
  }
  
  .cookie-banner button:hover {
    filter: brightness(1.05);
    transform: translateY(-1px);
  }
  
  .cookie-banner button.outline {
    background: #ffffff;
    color: #0369a1;
    border: 1px solid #bae6fd;
  }
  
  .cookie-banner button.outline:hover {
    background: #f0f9ff !important;
    opacity: 1;
  }
  
  /* ============================
     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: 22px 16px;
      width: calc(100% - 16px);
      border-radius: 18px;
      bottom: 8px;
    }
  
    .cookie-banner h1 {
      font-size: 20px;
    }
  
    .cookie-banner button {
      min-width: 100%;
      padding: 12px;
    }
  }
  