/* =================================================================
   0.1 ACESSIBILIDADE
   ================================================================= */
.skip-link {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
    z-index: 10000;
}

.skip-link:focus {
    position: fixed;
    top: 15px;
    left: 15px;
    width: auto;
    height: auto;
    padding: 10px 20px;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
    background: var(--brand-primary);
    color: white;
    font-weight: 600;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    text-decoration: none;
    outline: none;
    border: 2px solid rgba(255, 255, 255, 0.8);
}
