/* 📌 Banner */
.cookie-banner {
    position: fixed;
    bottom: 0; left: 0;
    width: 100%;
    background: #F2F7FC;
    border-top: 3px solid #1351B4;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 99999;
    font-family: "Segoe UI", sans-serif;
  }
  
  .cookie-text {
    font-size: 15px;
    max-width: 70%;
    color: #000;
    line-height: 1.4;
  }
  
  .cookie-link {
    color: #1351B4;
    font-weight: bold;
    margin-left: 6px;
    cursor: pointer;
  }
  
  /* 📌 Botões banner */
  .cookie-actions .btn-primary,
  .cookie-actions .btn-outline {
    padding: 10px 18px;
    border-radius: 6px;
    margin-left: 8px;
    cursor: pointer;
  }
  
  .cookie-actions .btn-primary {
    background: #1351B4;
    color: #fff;
    border: none;
  }
  
  .cookie-actions .btn-outline {
    background: #FFF;
    border: 2px solid #1351B4;
    color: #1351B4;
  }
  
  /* 📌 Modal GERAL */
  .cookie-modal {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    font-family: "Segoe UI", sans-serif;
  }
  
  .cookie-content {
    background: #fff;
    width: 520px;
    padding: 15px 0 0 0; 
    border-radius: 6px;
    max-width: 90%;
    position: relative;
  }
  
  /* 📌 Estilos de Cabeçalho do Modal */
  .modal-header {
    padding: 0 25px 5px 25px;
  }
  
  .modal-header h2 {
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 10px 0;
    color: #000;
  }
  
  .declaration-link {
    color: #1351B4;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    display: block;
    margin-bottom: 20px;
  }
  
  .close-icon {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #707070;
    line-height: 1;
  }
  
  .cookie-intro-text {
    padding: 0 25px 15px 25px;
    border-bottom: 1px solid #ccc;
    margin-bottom: 15px;
    font-size: 14px;
  }
  
  /* 📌 Seções de Configuração (Toggle Style) */
  .cookie-setting-group {
    padding: 0 25px 15px 25px;
    margin-bottom: 15px;
  }
  
  .cookie-setting-group h4 {
    font-size: 15px;
    font-weight: bold;
    margin: 0;
  }
  
  .setting-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 5px 0 10px 0;
  }
  
  .status-label {
    font-size: 13px;
    font-weight: 600;
  }
  
  .status-active {
    color: #1351B4;
  }
  
  .status-inactive {
    color: #707070;
  }
  
  .cookie-description {
    font-size: 13px;
    color: #333;
    line-height: 1.4;
  }
  
  .cookie-description .emphasis {
    font-weight: bold;
  }
  
  /* Estilos para o Toggle (Chave Seletora) */
  .toggle-switch {
    position: relative;
    display: inline-block;
    width: 42px;
    height: 24px;
  }
  
  .toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  .slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  }
  
  input:checked + .slider {
    background-color: #1351B4;
  }
  
  /* Estilo para simular o "X" quando desativado */
  .status-inactive + .toggle-switch .slider {
    background-color: #e0e0e0;
  }
  .status-inactive + .toggle-switch .slider:before {
    background-color: #707070;
    left: 21px;
  }
  
  .slider.round {
    border-radius: 34px;
  }
  
  .slider.round:before {
    border-radius: 50%;
  }
  
  /* 📌 Rodapé e Botões do Modal */
  .cookie-buttons-footer {
    padding: 15px 25px;
    border-top: 1px solid #ccc;
    text-align: right;
  }
  
  .cookie-buttons-footer button {
    margin-left: 10px;
    padding: 8px 16px;
    border-radius: 4px;
  }

  .btn-outline-footer {
    background: #FFF;
    border: 1px solid #1351B4;
    color: #1351B4;
    cursor: pointer;
    font-size: 14px;
  }
  
  .btn-primary-footer {
    background: #1351B4;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 14px;
  }