/* Responsive CSS - ESP */

/* Tablet e menores */
@media (max-width: 992px) {
    .container {
        padding: 0 15px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    /* Fontes menores */
    html {
        font-size: 14px;
    }
    
    /* Container mais estreito */
    .container {
        padding: 0 10px;
    }
    
    /* Botão acessibilidade menor */
    .accessibility-button {
        width: 50px;
        height: 50px;
        right: 15px;
        bottom: 15px;
        font-size: 1.5rem;
    }
}

/* Mobile pequeno */
@media (max-width: 480px) {
    html {
        font-size: 13px;
    }
}
