/* /insygma/cookie-banner/style.css */

/* Consent Banner */
#consent-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 450px; /* Ajustado para 700px conforme pedido */
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    padding: 20px;
    font-family: sans-serif;
    z-index: 99999;
    box-sizing: border-box;
}

#consent-banner h3 {
    margin-top: 0;
  margin-bottom: 5px;
    font-size: 19px;
}

#consent-banner p {
    font-size: 12px;
    margin-bottom: 20px;
}

#consent-banner button {
    background-color: black;
    color: white;
    border: none;
    padding: 10px 14px;
    margin: 6px 4px 0 0;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
}

#consent-banner .secondary {
    background-color: #eee;
    color: #333;
}

#consent-banner .preferences {
    display: none;
    margin-top: 10px;
}

.pref-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.pref-toggle label {
    font-size: 13px;
}

.pref-toggle input {
    width: 30px;
    height: 16px;
}

/* --- MOBILE (Max 600px) --- */
@media screen and (max-width: 600px) {
    #consent-banner {
        left: 0;
        transform: none;
        border-radius: 0;
        width: 100%;
        bottom: 0;
        padding-bottom: 30px; /* Pequeno ajuste de segurança para iPhones novos */
    }
}