/*estilo para o cookie-popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #333;
    color: #fff;
    padding: 15px 0;
    display: none;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: opacity 0.5s ease;
 }

 .cookie-popup p {
    margin: 0;
    flex: 1;
 }

 .cookie-popup a {
    color: var(--iq-primary);
    text-decoration: none;
 }

 .cookie-popup a:hover {
    text-decoration: underline;
 }

 .cookie-popup button {
    background: var(--iq-primary);
    color: white;
    border: none;
    padding: 8px 15px;
    cursor: pointer;
    border-radius: 4px;
    margin-left: 10px;
 }

 .cookie-popup button:hover {
    background: #45a049;
 }