<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* LGPD Modal Styles */
.lgpd-modal {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #f8f9fa;
    z-index: 1050;
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid #dee2e6;
    box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.1);
  }
  
  .lgpd-content {
    background-color: #fff;
    max-width: 70rem;
    width: 100%;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 0.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    gap: 1rem;
  }
  
  /* Responsividade para telas grandes */
  @media (min-width: 1024px) {
    .lgpd-content {
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
    }
  }
  
  /* SVG Icon */
  .lgpd-icon {
    color:#BE097A;
    width: 3rem;
    height: auto;
    flex-shrink: 0;
  }
  
  /* Texto */
  .lgpd-text {
    font-family: 'Roboto', sans-serif;
    font-size: 0.875rem;
    line-height: 1.5;
    text-align: center;
    color: #333;
  }
  
  @media (min-width: 1024px) {
    .lgpd-text {
      font-size: 1rem;
      text-align: left;
      margin: 0 2rem;
      flex-grow: 1;
    }
  }
  
  /* BotÃ£o */
  .lgpd-btn {
    padding: 0.75rem 1.5rem;
    background-color: #EF0197;
    color: white;
    border: none;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .lgpd-btn:hover {
    background-color: #BE097A;
  }
  
  @media (min-width: 1024px) {
    .lgpd-btn {
      margin-left: auto;
    }
  }
  </pre></body></html>